AI 2024 Online Summer Internship¶

Name: Rasikh Ali¶

Email: rasikhali1234@gmail.com¶

Libraries

In [1]:
import re
import pandas as pd
from nltk.corpus import stopwords
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.model_selection import train_test_split
from sklearn.naive_bayes import MultinomialNB
from sklearn.metrics import accuracy_score, classification_report, confusion_matrix
from sklearn.multioutput import MultiOutputClassifier
from sklearn.linear_model import LogisticRegression
import nltk
import joblib
import seaborn as sns
import matplotlib.pyplot as plt
C:\Users\ABC\anaconda3\lib\site-packages\numpy\_distributor_init.py:30: UserWarning: loaded more than 1 DLL from .libs:
C:\Users\ABC\anaconda3\lib\site-packages\numpy\.libs\libopenblas.FB5AE2TYXYH2IJRDKGDGQ3XBKLKTF43H.gfortran-win_amd64.dll
C:\Users\ABC\anaconda3\lib\site-packages\numpy\.libs\libopenblas64__v0.3.21-gcc_10_3_0.dll
  warnings.warn("loaded more than 1 DLL from .libs:"

Loading Dataset

In [2]:
# Load the dataset for abstract classification
data = pd.read_csv('sampled_abstract_data.csv')

print("\n\nAbstract Classification Data:")
print("============\n")
pd.set_option("display.max_rows", None, "display.max_columns", None)
print(f'Sample data count = {len(data)}\n')
print(data.head())
print(data.tail())

Abstract Classification Data:
============

Sample data count = 20972

   ID                                              TITLE  \
0   1        Reconstructing Subject-Specific Effect Maps   
1   2                 Rotation Invariance Neural Network   
2   3  Spherical polyharmonics and Poisson kernels fo...   
3   4  A finite element approximation for the stochas...   
4   5  Comparative study of Discrete Wavelet Transfor...   

                                            ABSTRACT  Computer Science  \
0    Predictive models allow subject-specific inf...                 1   
1    Rotation invariance and translation invarian...                 1   
2    We introduce and develop the notion of spher...                 0   
3    The stochastic Landau--Lifshitz--Gilbert (LL...                 0   
4    Fourier-transform infra-red (FTIR) spectra o...                 1   

   Physics  Mathematics  Statistics  Quantitative Biology  \
0        0            0           0                     0   
1        0            0           0                     0   
2        0            1           0                     0   
3        0            1           0                     0   
4        0            0           1                     0   

   Quantitative Finance  
0                     0  
1                     0  
2                     0  
3                     0  
4                     0  
          ID                                              TITLE  \
20967  20968  Contemporary machine learning: a guide for pra...   
20968  20969  Uniform diamond coatings on WC-Co hard alloy c...   
20969  20970  Analysing Soccer Games with Clustering and Con...   
20970  20971  On the Efficient Simulation of the Left-Tail o...   
20971  20972   Why optional stopping is a problem for Bayesians   

                                                ABSTRACT  Computer Science  \
20967    Machine learning is finding increasingly bro...                 1   
20968    Polycrystalline diamond coatings have been g...                 0   
20969    We present a new approach for identifying si...                 1   
20970    The sum of Log-normal variates is encountere...                 0   
20971    Recently, optional stopping has been a subje...                 0   

       Physics  Mathematics  Statistics  Quantitative Biology  \
20967        1            0           0                     0   
20968        1            0           0                     0   
20969        0            0           0                     0   
20970        0            1           1                     0   
20971        0            1           1                     0   

       Quantitative Finance  
20967                     0  
20968                     0  
20969                     0  
20970                     0  
20971                     0  

Display columns

In [3]:
data.columns
Out[3]:
Index(['ID', 'TITLE', 'ABSTRACT', 'Computer Science', 'Physics', 'Mathematics',
       'Statistics', 'Quantitative Biology', 'Quantitative Finance'],
      dtype='object')

Keeping required columns in dataset

In [4]:
data = data.drop(columns=['ID'])
In [5]:
data.columns
Out[5]:
Index(['TITLE', 'ABSTRACT', 'Computer Science', 'Physics', 'Mathematics',
       'Statistics', 'Quantitative Biology', 'Quantitative Finance'],
      dtype='object')

Understand and Pre-process Sample Data

Download and set stopwords

# Ensure you have downloaded the stopwords
import nltk
nltk.download('stopwords')
from nltk.corpus import stopwords

Set the stopwords for English¶

stop_words = set(stopwords.words('english'))

In [6]:
nltk.download('stopwords')
stop_words = set(stopwords.words('english'))
[nltk_data] Downloading package stopwords to
[nltk_data]     C:\Users\ABC\AppData\Roaming\nltk_data...
[nltk_data]   Package stopwords is already up-to-date!

Define function to clean the text

In [7]:
# Function to clean the text
def clean_text(text):
    # Remove symbols and numbers
    text = re.sub(r'[^a-zA-Z\s]', '', text)
    # Convert text to lowercase
    text = text.lower()
    # Remove stop words
    text = ' '.join(word for word in text.split() if word not in stop_words)
    return text

# Clean the 'ABSTRACT' column
data['ABSTRACT'] = data['ABSTRACT'].apply(clean_text)
In [8]:
data.ABSTRACT
Out[8]:
0        predictive models allow subjectspecific infere...
1        rotation invariance translation invariance gre...
2        introduce develop notion spherical polyharmoni...
3        stochastic landaulifshitzgilbert llg equation ...
4        fouriertransform infrared ftir spectra samples...
5        let omega subset mathbbrn bounded domain satis...
6        observed newly discovered hyperbolic minor pla...
7        ability metallic nanoparticles supply heat liq...
8        model largescale approxkm impacts marslike pla...
9        time varying susceptibility host individual le...
10       present systematic global sensitivity analysis...
11       three crowd old proverb applies much social in...
12       study exciton magnetic polaron emp formation c...
13       classical eilenberg correspondence based conce...
14       using lowtemperature magnetic force microscopy...
15       recent discovery exponent matrix multiplicatio...
16       process leads formation bright star forming si...
17       describe variant construction unstable adams s...
18       investigators seek estimate causal effects oft...
19       assigning homogeneous boundary conditions acou...
20       impact random fluctuations dynamical behavior ...
21       rare regions weak disorder griffiths regions p...
22       fault detection isolation tools fditools colle...
23       detectability discrete event systems dess ques...
24       let x partially ordered set property family or...
25       efficient methods proposed computing integrals...
26       present novel sound localization algorithm non...
27       paper introduce notion zetacrossbreeding set z...
28       consider problem estimating l distance two dis...
29       investigate density large deviation function m...
30       large deep neural networks powerful exhibit un...
31       brakke introduced mean curvature flow setting ...
32       recent advancements drone technology researche...
33       electronic health records ehr contain large va...
34       artificial neural network computation relies i...
35       work establish full singleletter characterizat...
36       work discusses numerical approximation nonline...
37       many webbased visualization systems available ...
38       present investigation supernova remnant snr g ...
39       previous approaches training syntaxbased senti...
40       meanfield variational bayes mfvb approximate b...
41       paper empirically study models pricing italian...
42       ballistic point contact bpc zigzag edges graph...
43       sparse superposition ss codes originally propo...
44       developing general purpose robots overarching ...
45       propose approach estimate human pose real worl...
46       extend work fouvry kowalski michel correlation...
47       nonclassical states quantized light described ...
48       following recent progress image classification...
49       real time large scale streaming data pose majo...
50       machine learning algorithms linear regression ...
51       consider multitime correlators output signals ...
52       constraint handling rules effective concurrent...
53       many people suffering voice disorders adversel...
54       computing basis exponent lattice algebraic num...
55       investigating emergence particular cell type r...
56       stimuliresponsive materials modify shape respo...
57       todays landscape robotics dominated vertical i...
58       machine learning models especially based deep ...
59       study query complexity cake cutting give lower...
60       paper studies emotion recognition musical trac...
61       consider previous models timed probabilistic s...
62       present muon spin rotation measurements superc...
63       reveal details interaction human lysozyme prot...
64       report experimentally measured light shifts su...
65       describe novel weakly supervised deep learning...
66       establish c regularity quasipsh envelopes kahl...
67       let complex manifold dimension n smooth connec...
68       reinforcement learning methods require careful...
69       paper interested class nary operations arbitra...
70       propose new multivariate dependency measure ob...
71       pyrochlore metal cdreo recently investigated s...
72       evolutionary biology speciation history living...
73       subject research complex networks network syst...
74       study effect domain growth orientation striped...
75       paper discusses minimum distance estimation me...
76       mobile edge clouds mecs bring benefits cloud c...
77       analog blackwhite hole pairs consisting region...
78       let k function field finite field k characteri...
79       study evolution spinorbital correlations inhom...
80       autonomous agents successfully operate real wo...
81       endtoend approaches drawn much attention recen...
82       elasticity cloud property enables applications...
83       exposition homotopical results geometric reali...
84       answer set programming asp wellestablished dec...
85       advances geometric approaches optical devices ...
86       investigate crack propagation simple twodimens...
87       fundamental group pi kodaira fibration definit...
88       transistors incorporating singlewall carbon na...
89       paper derives two new optimizationdriven monte...
90       yes parameter value makes almost coincide stan...
91       interest extracellular vesicles evs rapidly gr...
92       processes averaged regression quantiles modifi...
93       study primordial perturbations hyperinflation ...
94       vanadium pentoxide vo stable member vanadium o...
95       paper presented novel convolutional neural net...
96       variety representation learning approaches inv...
97       motivated perelmans pseudo locality theorem ri...
98       bound exponential sum appears study irregulari...
99       investigate effect dimensional crossover groun...
100      humans learn continuous manner old rarely util...
101      paper study generalized polynomial chaos gpc b...
102      last decade wireless networks experienced impr...
103      report combined study de haasvan alphen effect...
104      atar chowdhary dupuis recently exhibited varia...
105      bilayer van der waals vdw heterostructures mos...
106      construct algebraic cobordism theory bundles d...
107      people profound motor deficits could perform u...
108      object detection wide area motion imagery wami...
109      monte carlo tree search mcts famously used gam...
110      study fermiedge singularity describing respons...
111      retrosynthesis technique plan chemical synthes...
112      class stochastically selfsimilar sets contains...
113      report influence spinorbit coupling soc febase...
114      work examine updates addressing meltdown spect...
115      gene regulatory networks powerful abstractions...
116      glaucoma second leading cause blindness world ...
117      life modern world essentially depends work lar...
118      paper considers actorcritic contextual bandit ...
119      kolmogorov constructed general theory defines ...
120      recently new fault tolerant simple mechanism d...
121      work presents new method quantify connectivity...
122      first transiting planetesimal orbiting white d...
123      review article discuss recent studies drops bu...
124      stackingbased deep neural network sdnn general...
125      spite andersons theorem disorder known affect ...
126      investigate beam loading emittance preservatio...
127      paper propose practical receiver multicarrier ...
128      according astrophysical observations value rec...
129      dynamic languages often employ reflection prim...
130      reductions transition systems recently introdu...
131      poyntings theorem used obtain expression turbu...
132      let compact riemannian manifold let mud associ...
133      examine representation numbers sum two squares...
134      regression spatially dependent outcomes poses ...
135      one important parameters ionospheric plasma re...
136      particles undergoing anomalous diffusion diffe...
137      stabilizing magnetic signal single adatoms cru...
138      study minimal model growth phenotypically hete...
139      electronic health records ehr data generated r...
140      mission critical data dissemination massive in...
141      develope twospecies exclusion process distinct...
142      introduce large class random young diagrams re...
143      explicitly compute critical exponents associat...
144      obtain bernsteintype inequality sums banachval...
145      temperaturedependent evolution kondo lattice l...
146      hegarty conjectured nneq mathbbznmathbbz permu...
147      immersion f mathcal rightarrow mathcal c cell ...
148      resolving relationship biodiversity ecosystem ...
149      principle democracy people govern elected repr...
150      increasing commoditization computer vision spe...
151      rework generalize equivariant infinite loop sp...
152      prove open subset u semisimple simply connecte...
153      show nonlocal minimal cones nonsingular subgra...
154      let fldotsfk mathbbn rightarrow mathbbc multip...
155      apparent gas permeability porous medium import...
156      previous papers threshold probabilities proper...
157      runtime enforcement effectively used improve r...
158      atomic norm provides generalization ellnorm co...
159      study problem causal structure learning set ra...
160      present novel datadriven nested optimization f...
161      explore topological properties quantum spin ch...
162      codes algebraic decoding algorithm derived ree...
163      motivated study nishinounoharaueda floer thoer...
164      ensemble data assimilation methods ensemble ka...
165      paper consider tensor robust principal compone...
166      galaxies local universe known follow bimodal d...
167      introduce minimal model evolution functional p...
168      handwritten string recognition still challenge...
169      note necessary sufficient conditions establish...
170      lectures notes written summer school mathemati...
171      shown recently changing fluidic properties dru...
172      identify estimand missing data problems observ...
173      paper provide analysis selforganized network m...
174      understanding smart grid cyber attacks key dev...
175      propose family nearmetrics based local graph d...
176      recommender system important component many we...
177      paper describes stockholm universityuniversity...
178      neuroscientists classify neurons different typ...
179      extremely low efficiency regarded bottleneck w...
180      numerical method particleladen fluids interact...
181      construct schwingerkeldysh effective field the...
182      observables dual nature classical quantum kine...
183      let mg smooth compact riemannian manifold dime...
184      random feature maps ubiquitous modern statisti...
185      calculation minimum energy paths transitions a...
186      social media changed ways communication everyo...
187      let enfalphabetagamma denote error best approx...
188      due increasing dependency critical infrastruct...
189      implement efficient numerical method calculate...
190      bulk surface electronic structures calculated ...
191      often recommended identifiers ontology terms s...
192      deep learning methods achieved high performanc...
193      propose lineartime singlepass topdown algorith...
194      paper consider hamiltonian system combining no...
195      relate concepts used decentralized ledger tech...
196      timevarying network topologies deeply influenc...
197      longstanding obstacle progress deep learning p...
198      study band structure topology engineering inte...
199      boundary value problems sturmliouville operato...
200      topological morphologyorder zeros positions el...
201      purpose paper formulate study common refinemen...
202      paper considers problem autonomous multiagent ...
203      study explores validity chain effects clean wa...
204      developing neural network image classification...
205      propose new multiframe method efficiently comp...
206      let k algebraically closed field positive char...
207      present mixed galerkin discretization distribu...
208      regularity earthquakes destructive power nuisa...
209      paper prove difference analogue second main th...
210      largescale datasets played significant role pr...
211      observational data collected experiments plann...
212      knot k homology sphere sigma let result qsurge...
213      sparse feature selection necessary fit statist...
214      letter consider joint power admission control ...
215      rosat survey alpha per open cluster detected b...
216      realistic music generation challenging task bu...
217      young asteroid families unique sources informa...
218      provide graph formula describes arbitrary mono...
219      tomography made radical impact diverse fields ...
220      generative adversarial networks gans excel cre...
221      based optical highresolution spectra obtained ...
222      inferring directional connectivity point proce...
223      support vector machines svms important tool mo...
224      estimating vaccination uptake integral part en...
225      show every invertible strong mixing transforma...
226      development mesoscale neural circuitry map com...
227      system study paper contains set users observe ...
228      paper present novel methodology identifying sc...
229      measure centrality point set multivariate data...
230      twodimensional electron gas exposed perpendicu...
231      many applications involving large dataset onli...
232      work peng et al new measure proposed fault dia...
233      categories polymorphic lenses computer science...
234      present efficient algorithm compute euler char...
235      give new example automata group intermediate g...
236      crossover bardeencooperschrieffer bcs supercon...
237      model compression essential serving large deep...
238      nm thick sio layers grown si substrates ge ion...
239      corrosion indian rafms reduced activation ferr...
240      paper presents overview discussion magnetocapi...
241      problem nonparametric detection signal gaussia...
242      metabolic flux balance analyses standard tool ...
243      introduce robust estimator location parameter ...
244      glass forming liquids close glass transition p...
245      propose new pareto local search algorithm many...
246      identify components bioinspired artificial cam...
247      present work study bayesian nonparametric infe...
248      show qqdots qm polynomial q coefficients iff e...
249      paper develop position estimation system unman...
250      study decomposition multivariate hankel matrix...
251      linear timeperiodic ltp dynamical systems freq...
252      broad efforts underway capture metadata resear...
253      recently digital music libraries developed pla...
254      one key requirement effective supply chain man...
255      propose deformable generator model disentangle...
256      gaussian kernel popular kernel function used m...
257      security privacy fairness become critical era ...
258      difficulty modeling energy consumption communi...
259      paper studies recently proposed continuoustime...
260      brain receives input multiple sensory systems ...
261      common problem largescale data analysis approx...
262      unusually high surface tension room temperatur...
263      hamiltonian monte carlo hmc powerful markov ch...
264      present new method automated synthesis digital...
265      present paper consider numerical methods solve...
266      paper reinvestigates estimation multiple facto...
267      experimentally confirmed threshold behavior sc...
268      paper proposes expanded version local variance...
269      processing human produced text using natural l...
270      asymptotic variance maximum likelihood estimat...
271      fully automating machine learning pipelines on...
272      provide comprehensive study convergence forwar...
273      magnetic particle imaging mpi novel imaging mo...
274      draft textbook chapter neural machine translat...
275      let bounded domain mathbb rn infinitely smooth...
276      novel unseen classes formulated extreme values...
277      paper study performance two crosslayer optimiz...
278      recent years proliferation online resumes need...
279      deep convolutional neural networks cnns recent...
280      task calibration retrospectively adjust output...
281      cyclotron resonant scattering features crsfs f...
282      paper devoted study construction new quantum m...
283      present unified categorical treatment complete...
284      recent advances stochastic gradient techniques...
285      study problems related estimation gini index p...
286      training neural network using backpropagation ...
287      study diagrammatic categorification antispheri...
288      recently predicted modulation instability opti...
289      threedimensional spin current solver based gen...
290      paper aims explore models based extreme gradie...
291      immiscible fluids flowing high capillary numbe...
292      quantum charge pumping phenomenon connects ban...
293      heart disease leading cause death experts esti...
294      theory integral quadratic constraints iqcs all...
295      foreshock transients upstream earths bow shock...
296      quantum speed limit qsl energytime uncertainty...
297      paper mainly discusses diffusion complex netwo...
298      paper proposes nonparallel manytomany voice co...
299      informed les data resolvent analysis mean flow...
300      one popular approaches lowrank tensor completi...
301      nous tentons dans cet article de proposer une ...
302      xray computed tomography ct using sparse proje...
303      singular hermann foliation smooth manifold see...
304      weyl semimetal phase recently discovered topol...
305      sequence pathological changes takes place alzh...
306      work bridges technical concepts underlying dis...
307      fragility curves commonly used civil engineeri...
308      consider continuoustime markov chains display ...
309      construct embedded minimal surfaces nperiodic ...
310      report discovery three small transiting planet...
311      define family quantum invariants closed orient...
312      propose sparse neural network architectures ba...
313      computer vision made remarkable progress recen...
314      numerical analysis heat conduction cover plate...
315      paper provides short proofs two fundamental th...
316      nefarious actors social media platforms often ...
317      recent advances adversarial deep learning dl o...
318      users form information trails browse web check...
319      analyze two novel randomized variants frankwol...
320      paper prove mean value formula bounded subharm...
321      work investigate value uncertainty modeling su...
322      superconductorferromagnet sf heterostructures ...
323      present first general purpose framework margin...
324      longterm load forecasting plays vital role uti...
325      many empirical studies document power law beha...
326      topological quantum computing information enco...
327      defveccboldsymbol design polynomial time algor...
328      selfsupervised learning ssl reliable learning ...
329      deep reinforcement learning atari games maps p...
330      consider problem isotonic regression underlyin...
331      heating ventilation cooling hvac systems often...
332      paper consider problem identifying type local ...
333      identification patients high risk readmission ...
334      tropical recurrent sequences introduced satisf...
335      interesting approach analyzing neural networks...
336      explore whether useful temporal neural generat...
337      kitaev quantum spin liquid topological magneti...
338      identifying mechanism high energy lyman contin...
339      dependently typed languages coq used specify v...
340      generic closed curve plane transformed simple ...
341      consider channel given input distribution aim ...
342      let l l two distinct rays emanating origin let...
343      habitable exoplanet world maintain stable liqu...
344      paper evaluate accuracy deep learning approach...
345      distance standard deviation arises distance co...
346      one basic skills robot possess predicting effe...
347      paper give complete characterization leavitt p...
348      derive mean squared error convergence rates ke...
349      widespread use social media led generation sub...
350      vortex method common numerical theoretical app...
351      let r associative ring unit denote krm r mboxp...
352      arbitrary finite family semialgebraicdefinable...
353      riemannian geometry particular case hamiltonia...
354      investigate neural network learn perception ac...
355      paper present combinatorial approach opposite ...
356      many giant exoplanets found near roche limit m...
357      new shortorbit spectrometer sos constructed in...
358      capacitive deionization cdi fastemerging water...
359      present bilateral teleoperation system task le...
360      propose two multimodal deep learning architect...
361      educational research shown narratives useful t...
362      hospital acquired infections hai infections ac...
363      advocate use curated comprehensive benchmark s...
364      article study orbifold constructions associate...
365      deconstruction theme fqxi essay contest alread...
366      atacama large millimetresubmillimetre array al...
367      paper study muordinary locus shimura variety p...
368      charts excellent way convey patterns trends da...
369      consider modification standard cosmological hi...
370      describe configuration space mathbfs polygons ...
371      paper discusses metropolishastings algorithm d...
372      luke p lee tan chin tuan centennial professor ...
373      topology appeared different physical contexts ...
374      study scale tidy subgroups endomorphism totall...
375      coupled excitonvibrational dynamics threesite ...
376      first part work show convergence respect asymp...
377      study nonparametric maximum likelihood estimat...
378      parametric resonance among efficient phenomena...
379      rempi spectrum sio nm range recorded observed ...
380      robots automated systems increasingly introduc...
381      use ontologies several domains semantic web in...
382      short note present novel method computing exac...
383      visualizing complex network computationally in...
384      prove every trianglefree graph maximum degree ...
385      study twodimensional topology galactic distrib...
386      new index authors popularity estimation repres...
387      compute genus belyi map sporadic janko group j...
388      goal find classes convolution semigroups lie g...
389      cmo council reports internet users us influenc...
390      prove lefschetz duality intersection cohomolog...
391      possible removals n nodes networks size n perf...
392      paper study stochastic nonconvex optimization ...
393      lower bounds smallest eigenvalue symmetric pos...
394      paper describes development magnetic attitude ...
395      one advantage decision tree based methods like...
396      decades conventional computers based von neuma...
397      generalise wellknown graph parameters operator...
398      ionization atoms irradiated linearly polarized...
399      interested extending operators defined positiv...
400      convolutional neural networks cnns learn effec...
401      present efficient secondorder algorithm tildeo...
402      swarm systems constitute challenging problem r...
403      describe design implementation extremely scala...
404      controlling embodied agents many actuated degr...
405      let n k fracn integers paper investigate algeb...
406      recently software development companies starte...
407      generative adversarial networks gans produce s...
408      study phase space dynamics cosmological models...
409      work propose endtoend deep architecture jointl...
410      paper prove exists dimensional constant delta ...
411      probe starformation sf processes present resul...
412      present novel oblivious routing algorithms spl...
413      study functional graphs generated quadratic po...
414      helmholtz decomposition theorem vector fields ...
415      use richters primary proof grays conjecture gi...
416      show certain orderable groups admit isolated l...
417      machine learning classifiers known vulnerable ...
418      tidal streams disrupting dwarf galaxies orbiti...
419      response electron system electromagnetic field...
420      new generation solar instruments provides impr...
421      past decade information security threat landsc...
422      permutation polynomials finite fields wide app...
423      bendavid shelah proved lambda singular strongl...
424      real scarf ii potential discussed radial probl...
425      paper presents novel model multimodal learning...
426      single winner election several candidates rank...
427      framework einsteinmaxwellaether theory study b...
428      pset simple analytic form well distributed uni...
429      paper presents design implementation human int...
430      work proposes new algorithm training reweighte...
431      learningbased approaches robotic manipulation ...
432      ended finitely presented group semistable fund...
433      developing testing algorithms autonomous vehic...
434      let g finitely generated prop group equipped p...
435      brainmachine interaction bmi system motivates ...
436      road networks cities massive critical componen...
437      letter study motion wakepatterns freely rising...
438      theory mind ability attribute mental states be...
439      study families varieties endowed polarized can...
440      largescale extragalactic magnetic fields may i...
441      predicting future state system always natural ...
442      show elliptic curve e defined number field k g...
443      wireless backhaul communication recently reali...
444      feature engineering key success many predictio...
445      investigate spin structure uniaxial chiral mag...
446      several natural satellites giant planets shown...
447      number fundamental quantities statistical sign...
448      let emathbbq elliptic curve level n rank equal...
449      tudeng conjecture concerned sum digits wn n ba...
450      paper made extension convergence analysis dyna...
451      progress along line ref phys rev bf functional...
452      markerbased markerless optical skeletal motion...
453      diffusion maps emerging datadriven technique n...
454      present set effective outflowopen boundary con...
455      recent detection two faint extended star clust...
456      fundamental relations information estimation e...
457      galaxy cluster centring key issue precision co...
458      goal article provide useful criterion positivi...
459      ongoing progress quantum theory emphasizes cru...
460      nonconding rnas play key role posttranscriptio...
461      show graysons model higher algebraic ktheory u...
462      study mincost seed selection problem online so...
463      propose new splitting criterion metalearning a...
464      variational approaches calculation vibrational...
465      work present methodology enables agent make ef...
466      recent studies diffusionbased sampling methods...
467      use automatic speech recognition assess spoken...
468      consider bilinear optimal control problems who...
469      carry comprehensive analysis letter frequencie...
470      hybrid mobilefixed device cloud harnesses sens...
471      despite numerous studies exact nature order pa...
472      study sun quantum chromodynamics qcd dimension...
473      investigation autoignition delay butanol isome...
474      choi et al introduced minimum spanning tree ms...
475      variational bayesian neural nets combine flexi...
476      define rules cellular automata played quasiper...
477      present work explore existence stability dynam...
478      class partially observed diffusions sufficient...
479      study motion electron bubble zero temperature ...
480      present new jvla multifrequency measurements s...
481      develop online monitoring procedure detect cha...
482      susceptibility propagation constructed combini...
483      paper analyzes downlink performance ultradense...
484      demonstrate first application deep reinforceme...
485      strongcoupling monolayer metal dichalcogenide ...
486      positioning data offer remarkable source infor...
487      bihomlie colour algebra generalized homlie col...
488      consider problem related clustering gammaray b...
489      baker harman pintz showed weak form prime numb...
490      improved phantom cell new scenario introduced ...
491      address problem localisation objects bounding ...
492      people make risky decisions everyday life know...
493      modeling interior exoplanets essential go conc...
494      paper discuss characteristics operation astro ...
495      schoofs classic algorithm allows pointcounting...
496      let lk tame galois extension number fields gro...
497      transformative ai technologies potential resha...
498      let gh groups phi g rightarrow h group morphis...
499      matrix said possess restricted isometry proper...
500      present compact design velocitymap imaging spe...
501      batch codes first introduced ishai kushilevitz...
502      energy efficiency power threeterminal thermoel...
503      recent years number methods verifying dnns dev...
504      exploratory testing sessions tester simultaneo...
505      demonstrate parallel nondestructive readout hy...
506      work apply amplitude modulation spectrum ams f...
507      propose novel class dynamic shrinkage processe...
508      monitoring lifestyles may performed based syst...
509      extreme value index fundamental parameter univ...
510      spread opinions memes diseases alternative fac...
511      study problem testing identity given distribut...
512      componentbased design different way constructi...
513      dust devils likely dominant source dust martia...
514      help first principles calculation method based...
515      lowpass envelope approximation smooth continuo...
516      study spectral properties curl linear differen...
517      paper presents topology optimization framework...
518      pointed generalized lambert series displaystyl...
519      motivated applications cancer genomics followi...
520      smart cities growing trend many cities argenti...
521      bayesian estimation increasingly popular perfo...
522      reactiondiffusion equations appear biology che...
523      drivable free space information vital autonomo...
524      paper fundamental problem distribution proacti...
525      highmass stars expected form dense prestellar ...
526      lennardjones lj potential cornerstone molecula...
527      thompson sampling emerged effective heuristic ...
528      recent years deep learning become goto solutio...
529      proxima centauri known closest star sun recent...
530      paper propose optimizationbased sparse learnin...
531      using densityfunctional theory calculations an...
532      micrornas play important roles many biological...
533      present simultaneous localization mapping slam...
534      survey old new results modular representation ...
535      high redundant nonholonomic humanoid mobile du...
536      article discusses framework support design end...
537      amount ultraviolet irradiation ablation experi...
538      online video services messaging systems games ...
539      prove homotopy algebraic ktheory tame quasidm ...
540      screened modified gravity smg kind scalartenso...
541      selective weed treatment critical step autonom...
542      let gwidehatsl denote affine kacmoody group as...
543      existing measurement theory interprets varianc...
544      researchers often interested analyzing conditi...
545      paper deals simple results spherical functions...
546      study determine modular curves xn admit infini...
547      framework multibody dynamics successive encoun...
548      capsule networks envision innovative point vie...
549      effects mhd boundary layer flow nonlinear ther...
550      restingstate functional arterial spin labeling...
551      propose novel endtoend neural network architec...
552      collective magnetic excitations spinorbit mott...
553      report proximity induced anomalous transport b...
554      networked control systems ncs attracted consid...
555      given property representations satisfying basi...
556      novel adaptive local surface refinement techni...
557      paper introduces general method approximate co...
558      largescale computational experiments often run...
559      provide overview several nonlinear activation ...
560      advancements deep learning years attracted res...
561      desire fascination intelligent machines dates ...
562      conventional crystalline magnets characterized...
563      introduce new version simprop monte carlo code...
564      given collection data points nonnegative matri...
565      muon reconstruction daya bay water pools would...
566      present method improve accuracy footmounted ze...
567      primary function memory allocators allocate de...
568      extend databased modelfree multifractal method...
569      formulate analyze novel hypothesis testing pro...
570      work motivated particular problem modern paper...
571      telescopes based imaging atmospheric cherenkov...
572      transition metal dichalcogenides tmds emerging...
573      classical regression model usually assumed exp...
574      present clusteringbased language model using w...
575      study special circle bundles two elementary mo...
576      report method control positions ellipsoidal ma...
577      let f primitive cusp form weight k level n let...
578      hierarchical graph clustering common technique...
579      twodimensional bidisperse granular fluid shown...
580      study emphproximal alternating predictorcorrec...
581      chemical enzymatic crosslinking casein micelle...
582      investigate construction integral residuated l...
583      nowadays online video platforms mostly recomme...
584      exploration asteroids smallbodies provide valu...
585      automatic speech processing systems speaker di...
586      predicting rupture occurs cracks progress majo...
587      paper investigates multiplicative spread spect...
588      present representation learning algorithm lear...
589      consider social network nodes agents meaningfu...
590      paper present novel structure semiautoencoder ...
591      show characteristic length scale imprinted gal...
592      starting isentropic compressible navierstokes ...
593      study stochastic primaldual method constrained...
594      investigate new sampling scheme aimed improvin...
595      report measurements de haasvan alphen dhva osc...
596      statistical inference computationally prohibit...
597      mitochondrial oxidative phosphorylation moxpho...
598      using representation theorem erik alfsen frede...
599      highpressure neutron powder diffraction muonsp...
600      paper presents fixturing strategy regrasping r...
601      labeled latent dirichlet allocation llda exten...
602      multimedia forensics allows determine whether ...
603      present informal review recent work asymptotic...
604      consider problem learning sparse polymatrix ga...
605      kdv equation derived shallow water limit euler...
606      paper proposes new actorcriticstyle algorithm ...
607      counting dominating sets graph g closely relat...
608      high signal noise ratio snr consistency model ...
609      reduction communication efficient partitioning...
610      paper focus fully automatic traffic surveillan...
611      success autonomous systems depend upon ability...
612      paper presents distancebased discriminative fr...
613      molecular reflections usual wall surfaces stat...
614      let fabcdsqrtabsqrtcdsqrtacbd let abcd stand a...
615      consider task generating draws markov jump pro...
616      using holography model experiments strange met...
617      paper study random subsampling gaussian proces...
618      hybrid automata action languages formalisms de...
619      paper enthalpybased multiplerelaxationtime mrt...
620      barchan dunes crescentic shape dunes horns poi...
621      isotonic regression standard problem shapecons...
622      paper considers timeinconsistent stopping prob...
623      internet things iot demands authentication sys...
624      increasing number proteinbased metamaterials d...
625      recent advances field network representation l...
626      numerous studies carried measure wind pressure...
627      study problem constructing near uniform random...
628      begin introducing main ideas paper discussion ...
629      time series shapelets discriminative subsequen...
630      work present experimental study spin mediated ...
631      recent work representation functions sets cons...
632      measurement error observational datasets lead ...
633      extremely simple description karmarkars algori...
634      consider wireless sensor network uses inductiv...
635      transfer operators perronfrobenius koopman ope...
636      paper consider threedimensional schrdinger ope...
637      paper comparative study conducted complex netw...
638      tensionnetwork tensegrity robots encounter man...
639      statistical behaviour smallest eigenvalue impo...
640      dam breach models commonly used predict outflo...
641      study nearinfrared properties mira candidates ...
642      inherent need autonomous cars drones robots no...
643      consider problem dynamic spectrum access netwo...
644      design new myopic strategy wide class sequenti...
645      deep convolutional neural networks liberated e...
646      numerical simulations go roberts dynamo presen...
647      using projectionbased decoupling fokkerplanck ...
648      offer generalization formula popov involving v...
649      paper show compact manifold carries slnrfoliat...
650      given importance crystal symmetry emergence to...
651      several social medical engineering biological ...
652      paper concerned online estimation nonlinear dy...
653      computed tomography ct examinations commonly u...
654      turbulent rayleightaylor system rotating refer...
655      animal world competition individuals belonging...
656      approximately half worlds population risk cont...
657      best summary long video differs among differen...
658      recently heavily doped semiconductors emerging...
659      shown using beam splitters nonequal wave vecto...
660      paper consider partial information twoperson z...
661      recent years research done applying recurrent ...
662      shock wave interactions defects pores known pl...
663      propose factor models crosssection daily crypt...
664      many signals cartesian product graphs appear r...
665      double exponential formula introduced calculat...
666      strain engineering attracted great attention p...
667      complex system represented analyzed network no...
668      neural network based generative models discrim...
669      detection interactions treatment effects patie...
670      limitations performance present rich system lh...
671      given klt singularity xin x show quasimonomial...
672      condensedmatter analogs higgs boson particle p...
673      wellknown simplicity effectiveness classificat...
674      study problem sparsity constrained mestimation...
675      present communication datasensitive formulatio...
676      paper outlines methodology bayesian multimodel...
677      failing distinguish sheepdog skyscraper worse ...
678      achieving goals title others relies cardinalit...
679      present scalable black box perceptionintheloop...
680      paper presents novel generative model synthesi...
681      twostage leastsquares sls estimator known bias...
682      unsupervised learning classification model des...
683      investigate predictability several rangebased ...
684      correlated random walks crw used long time nul...
685      paper presents novel contextbased approach ped...
686      present e nergy n et new framework analyzing b...
687      finding dense regions graph relations among fu...
688      propose robust gesturebased communication pipe...
689      unique among alkalidoped textit ac fullerene c...
690      improving performance superconducting qubits r...
691      paper detail changes operational paradigm ferm...
692      consider withdrawal ball fluid reservoir under...
693      disentangle individual degrees freedom quantum...
694      motivated recently proposed parallel orbitalup...
695      particular type fourkink multisolitons quadron...
696      estimates hubble constant h distance ladder co...
697      multiuser multiarmed bandit mab framework used...
698      paper analyze effects contact models contactim...
699      challenge assigning importance individual neur...
700      elementary rheory concatenation introduced use...
701      javabip allows coordination software component...
702      rapid release development processes patches fi...
703      examining games fresh perspective present idea...
704      establish convergence rates asymptotic distrib...
705      study relays scope energyharvesting eh looks i...
706      generative adversarial networks gans intuitive...
707      paper concerned computation representation mat...
708      present possible explanations pulsations early...
709      recently introduced composition operator creda...
710      internetofthings endnodes demand low power pro...
711      last two decades genetic programming gp largel...
712      control dynamical networked systems continues ...
713      construct constant mean curvature surfaces euc...
714      discuss various universality aspects numerical...
715      relativistic jets created active galactic nucl...
716      new synthesis scheme proposed effectively gene...
717      present machine learning based information ret...
718      todays databases previous query answers rarely...
719      beam search desirable choice testtime decoding...
720      b weiss introduced notion measurably entire fu...
721      paper show construct graph theoretical models ...
722      let fxyaxbxycy binary quadratic form integer c...
723      numerical availability statistical inference m...
724      phaseless superresolution problem recovering u...
725      paper first chapter three authors undergraduat...
726      photoelectron yields extruded scintillation co...
727      report precise measurement hyperfine structure...
728      study dynamical system induced artin reciproci...
729      introduce new invariant real logarithmickodair...
730      effective communication required teams robots ...
731      discovery u oumuamua provided first glimpse pl...
732      context orientable circuits subcomplexes repre...
733      purpose basic surgical skills suturing knot ty...
734      many complex systems share two characteristics...
735      even oddfrequency superconductivity coexist du...
736      let x irreducible smooth projective curve genu...
737      fq finite field q elements investigate followi...
738      paper exhibit morse geodesics often called hyp...
739      study ultimate bounds estimation temperature i...
740      show publishing results using statistical sign...
741      centerofmass motion single optically levitated...
742      introduce new techniques analysis neural spati...
743      describe year survey carried lickcarnegie exop...
744      artificial intelligence methods often applied ...
745      let b algebraic numbers exactly one b algebrai...
746      note establishes inputtostate stability iss pr...
747      problem reliable communication multipleaccess ...
748      present new paradigm understanding optical abs...
749      propose probabilistic model interpreting gene ...
750      macronovae kilonovae arise binary neutron star...
751      calculation caloric properties heat capacity j...
752      study wellposedness velocityvorticity formulat...
753      generative adversarial networks gans represent...
754      database minima transition states corresponds ...
755      asynchronous distributed machine learning solu...
756      paper describes english audio textual dataset ...
757      deep learning demonstrated achieve excellent r...
758      develop theoretical foundations network distan...
759      using panama papers show beginning media repor...
760      mammography screening early detection breast l...
761      small depth networks arise variety network rel...
762      knowledgeintensive companies adopt agile softw...
763      recent fe results suggested estimated distance...
764      surface tension flowing soap films measured re...
765      indoor localization based visible light commun...
766      show output residual convolutional neural netw...
767      detecting attacks control systems important as...
768      people visual impairments tactile graphics imp...
769      often features come vectorial descriptions pro...
770      give short proof l criterion beurling generali...
771      social media users often make explicit predict...
772      applications involving autonomous navigation p...
773      apply method combines tightbinding approximati...
774      lecture note describe high dynamic range hdr i...
775      classify prop poincar duality pairs dimension ...
776      sports data analysis becoming increasingly lar...
777      kernel methods temporal information data commo...
778      consider problem sequential learning categoric...
779      develop new approach learn parameters regressi...
780      intricate interplay optically dark bright exci...
781      article develop notion quillen bifibration com...
782      paper define canonical sine cosine transform c...
783      compressed sensing cs sampling theory allows r...
784      predictive models music studied researchers al...
785      many realworld data sets especially biology pr...
786      research propose deep learning based approach ...
787      present evaluate technique computing pathsensi...
788      next generation cosmological surveys operate u...
789      playing game heads tails zero gravity demonstr...
790      variational autoencoder vae popular model dens...
791      synchronization multiplex networks attracted i...
792      continue investigate binary sequence fu define...
793      central question science science concerns time...
794      excited states single donor bulk silicon previ...
795      present statistical study c rm p rightarrow rm...
796      study largescale kernel methods acoustic model...
797      determine composition factors tensor product s...
798      current understanding contractility emerges di...
799      work encompasses ratesplitting rs providing si...
800      prove general width duality theorem combinator...
801      network pruning aimed imposing sparsity neural...
802      graph models widely used analyse diffusion pro...
803      training neural networks involves finding mini...
804      study homogenization process families strongly...
805      polynomial pinmathbbrzdotszn real stable roots...
806      volume contains proceedings fifth internationa...
807      chapter presents hinfinity filtering framework...
808      work introduce time memoryefficient method str...
809      paper introduces new approach largeeddy simula...
810      consider problem inference causal generative m...
811      weighted maximum satisfiability problem weight...
812      show presence magnetic field two superconducti...
813      recently established integral inequalities con...
814      support vector machine svm powerful widely use...
815      data analytics data science play significant r...
816      paper present new task investigates people int...
817      recent progress applying complex network theor...
818      suitable conditions substitution tiling gives ...
819      prove tutte embeddings aka harmonicembeddings ...
820      muroga showed express shannon channel capacity...
821      let r twosided noetherian ring nilpotent rbimo...
822      regression based methods performing well detec...
823      consider systems memory represented stochastic...
824      discuss concept inner function reproducing ker...
825      data center networks important infrastructure ...
826      setting highdimensional linear regression mode...
827      finding patterns data able retrieve informatio...
828      natural extension compressive sensing requirem...
829      present exhaustive census lyman alpha lyalpha ...
830      building insights jovanovic subsequent authors...
831      osirisrex return pristine samples carbonaceous...
832      consider ddimensional linear stochastic approx...
833      study fundamental tradeoffs statistical accura...
834      audiovisual speech recognition avsr system tho...
835      goal survey article explain elucidate affine s...
836      white dwarf stars used flux standards decades ...
837      existing approaches address multiview subspace...
838      p eventrelated potential erp evoked scalprecor...
839      purpose paper study stable representations par...
840      segmentation dynamic outdoor environments diff...
841      stochastic bandit algorithms used challenging ...
842      dynamic security analysis important problem po...
843      second order conic programming socp used model...
844      present multihop extensions recently proposed ...
845      instructional labs widely seen unique albeit e...
846      formation pattern biological systems may model...
847      namedentity recognition ner aims identifying e...
848      blocking objects blockages transmitter receive...
849      present introduction novel model individual gr...
850      convolutional neural networks cnns commonly th...
851      paper obtain formulae harmonic sums alternatin...
852      paper develop cyclic proof systems problem inc...
853      paper introduce new model leveraging unlabeled...
854      describe neural network model jointly learns d...
855      nge well known moduli space mathfrakmn unorder...
856      radio interferometric positioning system rips ...
857      present affine analog evaluation map quantum g...
858      paper present framework risksensitive model pr...
859      groundbased astronomical observations may limi...
860      gossip protocols aim arriving means pointtopoi...
861      examine discrete vortex dynamics twodimensiona...
862      paper study nonlinear partial differential equ...
863      important yet largely unstudied problem studen...
864      schottky structure handlebody genus g provided...
865      paper propose new method speaker diarization e...
866      paper describes implementation lbfgs method de...
867      networks vertically coriented prism shaped inn...
868      machine learning focuses construction study sy...
869      paper presents simple agentbased model economi...
870      variability response function vrf generalized ...
871      show training deep network using batch normali...
872      paper consider singlecell downlink scenario mu...
873      block bootstrap approximates sampling distribu...
874      given polynomial system f associated simple mu...
875      difficult tell whether trained generative mode...
876      refraction represents one fundamental operatio...
877      reconsider classic problem estimating accurate...
878      landau collision integral accurate model small...
879      paper combine survey important topological pro...
880      butlerportugal algorithm obtaining canonical f...
881      masspreconditioning mp technique become standa...
882      model threedimensional elastic medium represen...
883      analyze response type ii superconducting wire ...
884      classical principal component analysis pca rob...
885      antiferromagnets dzyaloshinskiimoriya interact...
886      disordered elastic systems driven displacing p...
887      search superconductor nonswave pairing importa...
888      extension complexity mathsfxcp polytope p mini...
889      work provides comprehensive scaling law based ...
890      view resurgence concern measurement problem po...
891      explore response ir orbitals pressure betamath...
892      infinite convergent sum independent identicall...
893      consider problem estimating sample paths absol...
894      stateoftheart sota mixed precision training do...
895      foreseen implementations small size telescopes...
896      obtain bounded solutions ordinary differential...
897      waveforms gravitational waves provide informat...
898      simple dnabased data storage scheme demonstrat...
899      paper presents vecnbt variation unsupervised g...
900      used soft xray photoemission electron microsco...
901      set function f finite set v submodular fx fy g...
902      quick shift popular modeseeking clustering alg...
903      recent years deep neural networks dnns rapidly...
904      convolutional neural networks cnns recently in...
905      present terahertz spectroscopic study polar fe...
906      compare social character networks biographical...
907      motivated recent experimental realization hald...
908      exoplanet host star activity form unocculted s...
909      developers molecular dynamics md codes face si...
910      obtain nonlinear generalization sachswolfe int...
911      prove sharp decoupling inequalities class two ...
912      paper introduce simple yet powerful pipeline m...
913      purpose focus attention new criterion quantum ...
914      stochastic variance reduction algorithms recen...
915      algorithmic markov condition states likely cau...
916      recently proposed temporal ensembling achieved...
917      present new code astrophysical magnetohydrodyn...
918      virtual network functions service vnfaas curre...
919      zika virus found individual cases confirmed ca...
920      paper considers problem decentralized optimiza...
921      recent studies demonstrated neardata processin...
922      historically machine learning computer securit...
923      deep learning demonstrated tremendous potentia...
924      paper introduces method based deep reinforceme...
925      one challenging problems correlated topologica...
926      cosmological parameter constraints observation...
927      characterize response quiet time substorms sto...
928      let r local ring dimension buchweitz asks rank...
929      learning make decisions observed data dynamic ...
930      based kp hierarchy reduction method general br...
931      deep learning successfully applied various tas...
932      modular gromovhausdorff propinquity distance c...
933      present prototype software tool exploration mu...
934      word sense disambiguation wsd improves many na...
935      develop theory nondegenerate parametric resona...
936      generic generation manipulation text challengi...
937      eyes sample disproportionately large amount in...
938      molecular dynamics simulates themovements atom...
939      developers increasingly rely text matching too...
940      prove existence optimal feedback controller st...
941      enable novice users create effective task plan...
942      torsion complexity finite edgeweighted graph d...
943      neutronic performance investigated potential a...
944      prove entrywise transforms rectangular matrice...
945      popular widely used subtractwithborrow generat...
946      consider refined topological vertex iqbal et a...
947      investigate bias voltage effects spindependent...
948      extensive efforts devoted recognizing facial a...
949      found easy quick postlearning method named ici...
950      traditional neural network consumes significan...
951      mobile robots increasingly used assist active ...
952      mixed effects models widely used describe hete...
953      show positive borel measure positive finite to...
954      large european array pulsars combines europes ...
955      paper discuss suitable family tensor kernels u...
956      deep learning models vulnerable adversarial ex...
957      recent discovery planetary system hosted ultra...
958      show mathbbqfano varieties fixed dimension ant...
959      consider quantum nondterministic probabilistic...
960      study relation microscopic properties manybody...
961      study generic onedimensional model intracellul...
962      report experiments agarose gel tablet loaded c...
963      artificial intelligence revolutionizing lives ...
964      letter define homodyne qdeformed quadrature op...
965      graph edit distance ged important similarity m...
966      introduce canonical measures locally finite si...
967      reusing passwords across multiple websites com...
968      affordability pressures tight rental markets g...
969      interbank markets often characterised terms co...
970      present novel algorithm uses exact learning ab...
971      everything world connected things becoming int...
972      recently atacama large millimetersubmillimeter...
973      existence weak solutions stationary navierstok...
974      new results baire product problem presented sh...
975      ultimatum game ug one player named proposer de...
976      work study tradeoffs error probabilities class...
977      constructing tests confidence regions control ...
978      generalized bcklunddarboux transformations gbd...
979      describe procedure called panel collapse repla...
980      recently proposed selfensembling methods achie...
981      efficient algorithms techniques detect identif...
982      tremendous increase internet traffic achieving...
983      consider fundamental integer programming ip mo...
984      wireless communication heterogeneous technolog...
985      derived background corrected intensities mev g...
986      beta one key quantities capital asset pricing ...
987      partially observed environments useful human p...
988      open problems abound theory complex networks f...
989      highenergy nonthermal universe dominated power...
990      develop estimates solutions derive existence u...
991      modern election campaigns political parties ut...
992      jacob steiner christian rudolfs request proved...
993      anomaly detecting important technical cloud co...
994      survey dimension theory selfaffine sets genera...
995      buoyancythermocapillary convection layer volat...
996      paper consider graph model message passing pro...
997      article derive bayesian model learning sparse ...
998      introduce new family thermostat flows unit tan...
999      introduce shifted quantum affine algebras map ...
1000     analysis mixed data raising challenges statist...
1001     development spintronic technology increasingly...
1002     motivation p values derived null hypothesis si...
1003     develop high temperature series expansions the...
1004     baran metric deltae finsler metric interior es...
1005     consider condensate excitonpolaritons diluted ...
1006     consider statistical problem recovering hidden...
1007     consider problem estimating expected outcome s...
1008     generalized cross validation gcv one important...
1009     biochemical oscillations prevalent living orga...
1010     algorithms often used produce decisionmaking r...
1011     work present technique use natural language he...
1012     light classic impossibility results arrow gibb...
1013     paper investigate coverage extension scheme ba...
1014     introduce new paradigm important community det...
1015     reevaluate zemach recoil polarizability correc...
1016     ising models describe joint probability distri...
1017     direct experimental investigations lowenergy e...
1018     establish fundamental property bivariate paret...
1019     work compares several node network criticality...
1020     consider programming language based lamplighte...
1021     propose extended variant reformulation decompo...
1022     continuing study preduals spaces mathcallhy bo...
1023     epg graphs introduced golumbic et al edgeinter...
1024     web important resource understanding diagnosin...
1025     effect algebra examine category morphisms fini...
1026     previous work detailed requirements obtain max...
1027     study magnetic taylorcouette flow system nondi...
1028     compared twocomponent camassaholm system modif...
1029     two dimensional incompressible navierstokes eq...
1030     training model generate data increasingly attr...
1031     introduce pliable lasso method estimation inte...
1032     report experimental realization statedependent...
1033     prove versions khintchines theorem approximati...
1034     neural networks random hidden nodes gained inc...
1035     artificial neural networks successfully applie...
1036     suppose data consist set points xj leq j leq j...
1037     let k fixed integer determine complexity findi...
1038     notes intended provide brief primer plasma phy...
1039     paper extend atiyahguilleminsternberg convexit...
1040     paper concerned learning mixture regression mo...
1041     certain macroscopic perturbations condensed ma...
1042     light traveling vacuum interacts virtual parti...
1043     many asteroid databases lightcurve brightness ...
1044     present calibratedprojection matlab package im...
1045     use atomic fountain clock measure quantum scat...
1046     quantitative understanding sensory signals tra...
1047     argued epl bf entitled essential discreteness ...
1048     estimate spin distribution primordial black ho...
1049     deep convolutional neural networks cnn based s...
1050     objective establish algorithmic framework benc...
1051     convolutional neural networks recently demonst...
1052     compute coarsest simulation preorder included ...
1053     principle macroscopic motion systems thermodyn...
1054     cafeas exhibits collapsed tetragonal ct struct...
1055     study mathematical model cell populations dyna...
1056     extraction system csns mainly consists two kin...
1057     many realworld analytics problems involve two ...
1058     novel data acquisition schemes emerging need s...
1059     consider registrationbased approach localizing...
1060     might smooth probability distribution estimate...
1061     context commutative differential graded algebr...
1062     human brain artificial learning agents operati...
1063     fifth generation g telecommunication system go...
1064     consider reconstructing signal x minimizing we...
1065     document response report university melbourne ...
1066     stochastic grosspitaevskii equation used model...
1067     let theta theta irrational numbers b matrices ...
1068     paper proposes new convex model predictive con...
1069     unveil geometric nature multiplet fundamental ...
1070     present selective review statistical modeling ...
1071     pipelines combining sqlstyle business intellig...
1072     paper propose simple effective method training...
1073     paper investigate umbral representation fubini...
1074     paper brief review delay population models app...
1075     show propositional intuitionistic logic comple...
1076     present newly discovered correlation wind outf...
1077     plumbene similar silicene buckled honeycomb st...
1078     providing background discrimination tool cruci...
1079     obtain upper bounds composition length finite ...
1080     article present bernstein inequality sums rand...
1081     explore different approaches integrating simpl...
1082     study two dispersive regimes dynamics n twolev...
1083     design implement first private anonymous decen...
1084     paper show unprecedented method accelerate tra...
1085     background software development organizations ...
1086     paper aim present completely monotonicity conv...
1087     despite effectiveness convolutional neural net...
1088     real complex clifford bundles dirac operators ...
1089     next generation transit survey ngts operating ...
1090     present evolution cosmic spectral energy distr...
1091     let f hecke cusp form weight k full modular gr...
1092     recent studies highlighted vulnerability deep ...
1093     maximizing product use central goal many busin...
1094     paper enumerate newton polygons asymptotically...
1095     applying invariantbased inverse engineering sm...
1096     paper authors consider leaf spaces singular ri...
1097     discuss backward montecarlo technique muon tra...
1098     noise inherent part neuronal dynamics thus bra...
1099     policy evaluation crucial step many reinforcem...
1100     develope selfconsistent description broad line...
1101     internal states atoms manipulated using cohere...
1102     modern processors highly optimized systems eve...
1103     semantic segmentation object detection researc...
1104     matrix factorization key tool data analysis ap...
1105     mild cognitive impairment mci mental disorder ...
1106     slaters condition existence strictly feasible ...
1107     extend homotopy theories based point reduction...
1108     characterizing brownian motion bounded domain ...
1109     since inception bohmian mechanics generally re...
1110     conventional lasers based gain media three fou...
1111     evaluation possible climate change consequence...
1112     study problem finding cycle minimum costtotime...
1113     polarized extinction emission dust interstella...
1114     gaussian processes gps powerful nonparametric ...
1115     bandit based optimisation remarkable advantage...
1116     intel software guard extension sgx offers soft...
1117     sensor setups consisting combination range sca...
1118     paper study representation theory super w alge...
1119     software developers frequently issue generic n...
1120     ethereum blockchain network decentralized plat...
1121     conjunctivochalasis common cause tear dysfunct...
1122     report preparation superconductivity type crba...
1123     numerical method free boundary problems equati...
1124     neuralnetwork quantum states recently introduc...
1125     reported usage gratingbased xray phasecontrast...
1126     stateoftheart information extraction approache...
1127     prove lipschitz continuity viscosity solutions...
1128     hardware acceleration enabler ubiquitous effic...
1129     propose new localized inference algorithm answ...
1130     study simultaneous collisions two three four k...
1131     introduce inversefacenet deep convolutional in...
1132     partial information decomposition pid arxiv pr...
1133     present convolutional neural network cnn based...
1134     fluctuating currents nonequilibrium steady sta...
1135     proliferation mobile devices internet things d...
1136     understanding origin nature functional signifi...
1137     main challenge online multiobject tracking rel...
1138     classical plasma arbitrary degree degeneration...
1139     paper studies pde model growth tree stem vine ...
1140     discovery multiple stellar populations milky w...
1141     establish large deviation theorem empirical sp...
1142     reinforcement learning agent needs pursue diff...
1143     photoionized nebulae comprising hii regions pl...
1144     prediction cancer prognosis metastatic potenti...
1145     propose novel estimation procedure scalebyscal...
1146     consider general branching population lifetime...
1147     distribution grid moves toward tightlymonitore...
1148     investigation electronphonon interaction epi l...
1149     magnetic phases triangularlattice antiferromag...
1150     remarkable development deep learning medicine ...
1151     show sufficient condition weak limit sequence ...
1152     consider classical erdosrenyi random graph pro...
1153     least significant bit lsb substitution old sim...
1154     work outline mechanisms contributing oxygen re...
1155     machine learning shown much promise helping im...
1156     lenses crucial lightenabled technologies conve...
1157     present extension variational monte carlo vmc ...
1158     paper studies power allocation distributed est...
1159     using algebraic methods motivated one variable...
1160     motivated recent experiments alpharucl investi...
1161     aim study investigate magnetospheric disturban...
1162     new approach study optical response periodic s...
1163     overfitting happens number parameters model la...
1164     russell logical framework specification implem...
1165     let us call novel quantities addition vectors ...
1166     distances sequences based kmer frequency count...
1167     excitonpolariton system linear dispersive phot...
1168     present results search faint galaxies near end...
1169     recent paper x guo mandelis j tolev k tang j a...
1170     fundamental question systems biology combinati...
1171     address problem temporal action localization v...
1172     cassava third largest source carbohydrates hum...
1173     ability continuously learn adapt limited exper...
1174     investigate use alternative divergences kullba...
1175     curvature properties robinsontrautman metric i...
1176     prove dehn invariant flexible polyhedron eucli...
1177     skillful mobile operation threedimensional env...
1178     utilize variational method investigate kondo s...
1179     human action recognition videos one challengin...
1180     reconstruction population histories central pr...
1181     source localization ocean acoustics posed mach...
1182     illegal insider trading stocks based releasing...
1183     using deep multiwavelength photometry galaxies...
1184     boron subphthalocyanine chloride electron dono...
1185     recent machine learning models shown including...
1186     present paper consider problem estimating thre...
1187     given manyelectron molecule possible define co...
1188     using formalism classical nucleation theory de...
1189     machine learning classifiers give predictions ...
1190     deep reinforcement learning multiagent coopera...
1191     study data reliability problem community devic...
1192     paper studies meanvariance portfolio selection...
1193     obtain estimation error rates estimators obtai...
1194     paper interested neumanntype series modified b...
1195     paper investigate integral xnlogmsinx natural ...
1196     past three years conducting survey wr stars la...
1197     propose new mathematical model spread zika vir...
1198     given problem bayesian statistical paradigm re...
1199     network noisy leaky integrate fire nnlif model...
1200     distinguishing index simple graph g denoted dg...
1201     pseudo healthy synthesis ie creation subjectsp...
1202     given poset p standard closure operator gammaw...
1203     work devoted constructing wide class different...
1204     modeling agent behavior central understanding ...
1205     design jammingresistant receiver scheme enhanc...
1206     behavior many complex systems determined core ...
1207     clause learning one important components confl...
1208     consider squared singular values product stand...
1209     paper consider primitive equations oceanic atm...
1210     eisenhart geometric formalism transforms eucli...
1211     paper formulates timevarying socialwelfare max...
1212     object present paper study types ricci pseudos...
1213     paper gives drastically faster gossip algorith...
1214     magnesium alloys ideal biodegradable implants ...
1215     publishing reproducible analyses longstanding ...
1216     google uses continuous streams data industry p...
1217     obtain better understanding tradeoffs various ...
1218     adaptive zeroerror capacity discrete memoryles...
1219     increasing complexity heterogeneity computing ...
1220     focus nonconvex nonsmooth minimization problem...
1221     online discussion communities users interact s...
1222     bayesian optimization recently attracted atten...
1223     propose mapaided vehicle localization method g...
1224     present adaptive grasping method finds stable ...
1225     algorithmdependent generalization error bounds...
1226     deep impact spacecraft flyby comet phartley oc...
1227     paper suggest macroscopic toy system potential...
1228     consider class measurable functions defined ma...
1229     carried bayesian homogeneous determination orb...
1230     paper first one series three dealing concept i...
1231     eigenvector centrality standard network analys...
1232     neural networks allow qlearning reinforcement ...
1233     perform detailed analytical study recent fluid...
1234     study heavy path decomposition conditional gal...
1235     consider firm sells large number products cust...
1236     present new algorithm detects maximal possible...
1237     perform detailed comparison dirac composite fe...
1238     ability recognize objects essential skill robo...
1239     convert standard brownian motion z positive pr...
1240     general relativitys nohair theorem states isol...
1241     drawing analogy superfluid vortices suggest da...
1242     clouds play significant role fluctuation solar...
1243     predicting response system perturbations key c...
1244     electronic health record ehr designed store di...
1245     leastsquares support vector machine frequently...
1246     propose simple subsampling scheme fast randomi...
1247     bernoulli mixture model bmm finite mixture ran...
1248     paper prove pointwise convergence heat kernels...
1249     many societies alcohol legal common recreation...
1250     motion viscous deformable droplet suspended un...
1251     study principal component analysis pca setting...
1252     spot pricing scheme considered resourceefficie...
1253     consider free rotation body whose parts move s...
1254     recent progress deep learning audio synthesis ...
1255     prove pathbypath regularization noise result s...
1256     present novel endtoend trainable neural networ...
1257     recently neural models information retrieval b...
1258     diamond light source uks national synchrotron ...
1259     let bf mmldots mk tuple real dtimes matrices c...
1260     main goal paper full proof cardinal inequality...
1261     analyzing energyefficient management data cent...
1262     analyze rich dataset including subarusuprimeca...
1263     adaptive designs multiarmed clinical trials be...
1264     mixedinteger secondorder cone programs misocps...
1265     discriminative deep forest disdf metric learni...
1266     simple robust genuinely multidimensional conve...
1267     prove optimal strong convergence rate fully di...
1268     boolean network finite state discrete time dyn...
1269     gammaray fastneutron imaging performed novel l...
1270     task board essential artifact many agile devel...
1271     hydrogeologic models commonly oversmoothed rel...
1272     suszkos problem problem finding minimal number...
1273     paper introduce new classification algorithm c...
1274     study galois descent semiaffinoid nonarchimede...
1275     synthesized new layered oxychalcogenide laobia...
1276     perfect matching nc deterministic fast paralle...
1277     paper investigate common scenario every candid...
1278     using deep reinforcement learning train contro...
1279     study following generalization singularity cat...
1280     undeniable worldwide computer industrys center...
1281     using contiguous relations construct infinite ...
1282     paper gives upper lower bounds minimum error p...
1283     bells inequalities one formal expression show ...
1284     improving endurance crucial extending spatial ...
1285     surjective hcolouring problem test given graph...
1286     paper proposes modal typing system enables us ...
1287     recommender system research suffers currently ...
1288     paper considers problem implementing previousl...
1289     stacking general approach combining multiple m...
1290     twodimensional discrete wavelet transform huge...
1291     apply minsum messagepassing protocol solve con...
1292     last years seen transformative impact deep lea...
1293     aim galactic archaeology recover evolutionary ...
1294     propose general framework entropyregularized a...
1295     present basic integer arithmetic quantum circu...
1296     analyzed longitudinal activity nearly editors ...
1297     beyond worstcase synthesis problem introduced ...
1298     vaes variational autoencoders proved powerful ...
1299     rotating radio transients rrats loosely define...
1300     lowdimensional plasmonic materials function hi...
1301     paper analyse interaction centralised carbon e...
1302     first author introduced relative symplectic ca...
1303     report design sensitivity new torsion pendulum...
1304     invoking maxwells classical equations conjunct...
1305     work perform outlier detection using ensembles...
1306     local electronic magnetic properties supercond...
1307     prove unique assembly unique shape verificatio...
1308     one defining characteristics human creativity ...
1309     paper addresses problem large scale image retr...
1310     scientific collaborations shape ideas well inn...
1311     complex interactions entities often represente...
1312     drone racing becoming popular sport human pilo...
1313     combustion characteristics ethanoljet fuel dro...
1314     graph laplacian plays key roles information pr...
1315     manipulating topological disclination networks...
1316     generative adversarial networks gan received w...
1317     revisit classification problem focus nonlinear...
1318     development chemical reaction models aids unde...
1319     consider cauchy problem incompressible naviers...
1320     inspired success deep learning techniques phys...
1321     introduce twoparameter family birational maps ...
1322     integrable nonlocal nonlinear schrodinger nnls...
1323     bigger deeper neural network architectures con...
1324     novel approach towards spectral analysis stati...
1325     propose method ttgp approximate inference gaus...
1326     second edition congruence lattice book problem...
1327     vasculature known key biological significance ...
1328     report results sensitive search ghz j transiti...
1329     paper propose probabilistic parsing model defi...
1330     modularity designed measure strength division ...
1331     vision science particularly machine vision rev...
1332     next generation radio telescopes namely fivehu...
1333     letter propose new identification criterion gu...
1334     supervisory control synthesis encounters compu...
1335     agents vote choose fair mixture public outcome...
1336     give criteria inverse system finite groups ens...
1337     recent advances learning deep neural network d...
1338     article issues discussed bayesian approach lea...
1339     spite decades research much remains discovered...
1340     consider generalizations familiar fifteenpiece...
1341     establish iwasawa main conjecture semistable a...
1342     consider induced emission ultrarelativistic el...
1343     measuring gases air quality monitoring challen...
1344     paper problem maximizing blackbox function fma...
1345     present method conditional time series forecas...
1346     bias common problem todays media appearing fre...
1347     many astronomical sources produce transient ph...
1348     method developed generating pseudopotentials u...
1349     offer general bayes theoretic framework tackle...
1350     following presentation proof hypothesis image ...
1351     detecting evaluating regions brain various cir...
1352     global sensitivity analysis numerical model ai...
1353     ridesourcing platforms like uber didi getting ...
1354     managing dynamic information large multisite m...
1355     describe fully data driven model learns perfor...
1356     present results spectroscopic photometric foll...
1357     given projective hyperkahler manifold holomorp...
1358     calcium imaging permits optical measurement ne...
1359     investigate multiparticle excitation effect co...
1360     present article describe one define hausdorff ...
1361     popular alternating least squares als algorith...
1362     domain generalization problem assigning class ...
1363     study two colored operads configurations littl...
1364     paper proposes datadriven approach means artif...
1365     tunneling electrons twodimensional electron sy...
1366     consider problem diagnosis set simple observat...
1367     work explores feasibility steering drone recur...
1368     localitysensitive hashing lsh fundamental tech...
1369     commonly cited inefficiency neural network tra...
1370     establish pontryagin maximum principle discret...
1371     system n particles chemical medium mathbbrd st...
1372     well established neural networks deep architec...
1373     stream timestamped edges form dynamic network ...
1374     revisit generation balanced octrees adaptive m...
1375     advent era artificial intelligenceai deep neur...
1376     artificial intelligence field learning often c...
1377     involution stanley symmetric functions hatfy s...
1378     paper focus subspace learning problems grassma...
1379     topologists sometimes interested spacevalued d...
1380     ancient repertoire uv absorbing pigments survi...
1381     output impedances inherent elements power sour...
1382     quest observe gravitational waves challenges a...
1383     finite gaussian mixture models widely used mod...
1384     document data transfer workflow data transfer ...
1385     datasets often reused perform multiple statist...
1386     regression classification perhaps basic questi...
1387     anthropogenic climate change increased probabi...
1388     paper boundary regularity pharmonic functions ...
1389     paper propose construct confidence bands boots...
1390     finding actions satisfy constraints imposed ex...
1391     major challenge brain tumor treatment planning...
1392     localization network lineofsight anchors trans...
1393     investigate relation kinematic morphology intr...
1394     paper introduce bmt distribution unimodal alte...
1395     learning visuomotor skills endtoend manner app...
1396     searched high resolution spectra nearby stars ...
1397     learning large scale nonlinear ordinary differ...
1398     clustering mixtures gaussian distributions fun...
1399     study developed method estimate relationship s...
1400     detect facial keypoints critical element face ...
1401     one initial essential question magnetism wheth...
1402     paper exhibit tradeoffs training sample comput...
1403     estimates population size hidden hardtoreach i...
1404     single ion solvation free energies one importa...
1405     consider estimation worker skills workertask i...
1406     recent deep learning based denoisers often out...
1407     consider wellknown facts syntax physics perspe...
1408     study moduli space stable sheaves euler charac...
1409     development efficient heuristic algorithms pra...
1410     study demand response problem utility also ref...
1411     paper presents triangular lattice photonic cry...
1412     epicurean philosophy commonly thought simplist...
1413     use lowprecision fixedpoint arithmetic along s...
1414     person reidentification task greatly boosted d...
1415     consider task unsupervised extraction meaningf...
1416     manybody localization mbl commonly related str...
1417     verifying statistically significant result sci...
1418     paper adopt new noisy wireless network model i...
1419     study problem constructing synthetic graphs re...
1420     recognition handwritten mathematical expressio...
1421     expository article properties actions lie grou...
1422     paper theoretically study xray multiphoton ion...
1423     magnetic materials hosting correlated electron...
1424     large amount image denoising literature focuse...
1425     paper analyze depth simplicial decomposition l...
1426     blockchains distributed data structures used a...
1427     prove mathematically rigorous way asymptotic f...
1428     give simple optimistic algorithm easy derive r...
1429     study superradiant evolution set n twolevel sy...
1430     introduce selfconsistent multispecies kinetic ...
1431     recent paper claimed homogeneous finsler space...
1432     observational theoretical arguments support id...
1433     provide lpversus linftybounds eigenfunctions r...
1434     consider strongly interacting quantum dot conn...
1435     cherenkov telescope array cta next generation ...
1436     increase customer expectation terms cost servi...
1437     although cuspcore controversy dwarf galaxies s...
1438     bestfirst search algorithm finding optimalcost...
1439     integrated waveguides exhibiting efficient sec...
1440     paper revisit largescale constrained linear re...
1441     study key domain wall properties segmented nan...
1442     article improves existing proven rates regret ...
1443     investigate magnetic properties multiferroic q...
1444     friendship paradox states social network egos ...
1445     many stochastic optimization algorithms work e...
1446     robust reinforcement learning aims produce pol...
1447     central theme work stable levitation denser no...
1448     present nmr spectra remotemagnetized deuterate...
1449     large datasets often unreliable labelssuch obt...
1450     modern networks huge sizes well high dynamics ...
1451     continuous latent time series models prevalent...
1452     prove upper bounds lp norms eigenfunctions dis...
1453     key resource distributed quantumenhanced proto...
1454     end devices equipped multiple network interfac...
1455     paper show defense relation among abstract arg...
1456     optimizing convex objective loss functions pow...
1457     photodetector may characterized various figure...
1458     living systems function far away equilibrium r...
1459     numerically study jamming transitions pedestri...
1460     survival analysis developed applied number are...
1461     study timevarying dynamic networks graphs fund...
1462     consider multilabel ranking approach multilabe...
1463     waveparticle duality quantum mechanics allows ...
1464     prove quantitative fourth moment theorem wigne...
1465     generative adversarial networks gans shown abl...
1466     show ladic realization functor conservative re...
1467     software startups face multiple technical busi...
1468     show generalized dirac structure survives beyo...
1469     generative model based training deep architect...
1470     single magnetic skyrmions localized whirls mag...
1471     complement theory developed preinerstorfer pts...
1472     effect modification means magnitude stability ...
1473     many internet ventures rely advertising revenu...
1474     calculating value ckininfty class smoothness r...
1475     let p q two convex polytopes contained interio...
1476     existence steady states elastic media small st...
1477     field plasmabased particle accelerators seen t...
1478     paper propose novel application generative adv...
1479     clustering algorithm applied cassini imaging s...
1480     reexamine notion stress peridynamics based ide...
1481     successful humanrobot cooperation hinges agent...
1482     present prototype news search engine presents ...
1483     models complex systems widely used physical so...
1484     color names based image representation success...
1485     phd thesis devoted lowenergy structure nucleon...
1486     phase transitions isotropic quantum antiferrom...
1487     philosophers ancient times modern economists b...
1488     deep neural networks increasingly used variety...
1489     paper develop new firstorder method composite ...
1490     recent progress variational inference paid muc...
1491     adr algebra ra finitedimensional algebra quasi...
1492     study structure mathfrakgkmodules principal se...
1493     study theoretically experimentally influence t...
1494     shown nonrelativistic ground state energy heli...
1495     traditional data cleaning identifies dirty dat...
1496     three complementary methods implemented code d...
1497     thermoregulation system animals removes body h...
1498     introduce notion koszul ainfinity algebra gene...
1499     exploiting property rbm loglikelihood function...
1500     consider theory twocomponent dirac fermion loc...
1501     pair hidden markov models phmms probabilistic ...
1502     study focuses formation two molecules astrobio...
1503     paper prediction linear systems missing inform...
1504     study ionic liquids composed alkylmethylimidaz...
1505     tick statistical learning library python parti...
1506     present wellposedness stability result class n...
1507     paper consider graphical lasso gl popular opti...
1508     prove orthogonal free quantum group factors ma...
1509     studied temperature dependence diagonal double...
1510     paper use interior functions hierarchical basi...
1511     imagine malicious hacker trying attack server ...
1512     consider global consensus problem multiagent s...
1513     let h subseteq k two subgroups finite group g ...
1514     work proposes variable exponent lebesgue modul...
1515     present radio observations ghz local objects s...
1516     deep neural networks dnns emerged key enablers...
1517     r gompf defined homotopy invariant thetag orie...
1518     enumerate circulant good matrices odd orders d...
1519     spectral mapping uses deep neural network dnn ...
1520     gravitational wave astronomy set motion scient...
1521     present stochastic ca modelling approach corro...
1522     give bordered extension involutive hfhat use g...
1523     comprehensive study comet c focuses first inve...
1524     paper investigate property testing whether deg...
1525     cauchyrayleigh cr distribution successfully us...
1526     paris basin evaluate htem data complement usua...
1527     methods access large relational databases dist...
1528     paper proposes novel adaptive algorithm automa...
1529     multiindexed orthogonal polynomials meixner li...
1530     describe approach understand peculiar counteri...
1531     locationbased augmented reality games entered ...
1532     interesting proofs mathematics contain inducti...
1533     near pristine atomic cooling halo close star f...
1534     graphs commonly used encode relationships amon...
1535     due economic globalization countrys economic l...
1536     work compare different batch construction meth...
1537     druryarveson space consider subspace functions...
1538     paper present results sim hour airborne gammar...
1539     new search strategy detection elusive dark mat...
1540     present algorithm computes product two nbit in...
1541     study stochastic multiarmed bandit mab problem...
1542     goal unbounded program verification discover i...
1543     present simple proof fact base independence po...
1544     modern multiscale type segmentation methods kn...
1545     architecture community reasonable simulation t...
1546     neighborhood regression successful approach gr...
1547     pseudorandom sequences good statistical proper...
1548     bilevel hierarchical clustering model commonly...
1549     generalized lambdasemiflows abstraction semifl...
1550     consider variants trustregion cubic regulariza...
1551     analyze space differentiable functions quadmes...
1552     bangla handwriting recognition becoming import...
1553     article continue study problem lpboundedness m...
1554     recent years mems inertial sensors acceleromet...
1555     classical mechanics nonrelativistic particle c...
1556     new bayesian framework presented constrain pro...
1557     molecular interactions widely modelled network...
1558     accreting white dwarfs wd binary systems produ...
1559     facecycles vertices map surface type map calle...
1560     consider dynamics porous icy dust aggregates t...
1561     urbach tails semiconductors often associated e...
1562     recent work provided ample evidence global cli...
1563     shrinkage estimation usually reduces variance ...
1564     continuous integration ci tools integrate code...
1565     amyloid precursor amino acids dimerizes aggreg...
1566     everimportant issue protecting infrastructure ...
1567     paper introduce method adapting stepsizes temp...
1568     threshold carbonloadings initial tiohosts post...
1569     several theorems volume computing polyhedron s...
1570     organic material anoxic sediment represents gl...
1571     recent development highend lidars systems able...
1572     motivated proposal topological quantum paramag...
1573     graph said welldominated minimal dominating se...
1574     describe latest results calculations flexpde c...
1575     affiliation network one kind twomode social ne...
1576     analyze running time saukassong algorithm sele...
1577     agentbased internet things iot applications re...
1578     study introduce new approach combine multiclas...
1579     paper concerned inbody system gathering data m...
1580     present flash textbffast textbflsh textbfalgor...
1581     propose new neural sequence model training met...
1582     deep neural networks nn extensively used machi...
1583     projection theorems divergences enable us find...
1584     advanced persistent threats apts stealthy atta...
1585     influential recent paper harvey et al derive u...
1586     analyzing available fao data countries years o...
1587     debate deliberation play essential roles polit...
1588     modelling gene regulatory networks requires th...
1589     david berlinski writes existence nature mathem...
1590     technology extremely potent tool leveraged hum...
1591     central aim paper address variable selection q...
1592     assessment motor activity grouphoused sows com...
1593     origin ultrahighenergy cosmic rays uhecrs half...
1594     widely recognized citation counts papers diffe...
1595     since inception regression trees one widely us...
1596     oral disintegrating tablets odts novel dosage ...
1597     calcium imaging emerged workhorse method neuro...
1598     fieldaligned currents earths magnetotail tradi...
1599     theoretical predictions pressureinduced phase ...
1600     derive uniqueness weak solutions shigesadakawa...
1601     main task oil gas exploration gain understandi...
1602     tackle problem template estimation data random...
1603     highindex dielectric nanoparticles become powe...
1604     propose bioinspired agentbased approach descri...
1605     consider linear congruence equation xldotsxk e...
1606     bismuth substituted lutetium iron garnet blig ...
1607     present new variable selection method based mo...
1608     semicalssical method based surfacehopping tech...
1609     random tensor networks provide useful models i...
1610     persistent spread measurement count number dis...
1611     last years extensive literature focused ell pe...
1612     optical emission ingan quantum dots embedded g...
1613     propose novel computational method extract inf...
1614     membership inference attack mia determines pre...
1615     identify se iii micron planetary nebula pn ngc...
1616     paper locally lipschitz regular functions util...
1617     thesis investigates unsupervised time series r...
1618     work aim building bridge poor behavioral data ...
1619     purpose article try understand mysterious coin...
1620     article concerns class elliptic equations carn...
1621     paper represent raptor codes multiedge type lo...
1622     package cleannlp provides set fast tools conve...
1623     propose modified expectationmaximization algor...
1624     report point contact andreev reflection pcar m...
1625     doubly occupied configuration interaction doci...
1626     first investigate evolution opening closing au...
1627     present measurements hyperfine splitting yb sp...
1628     address issue limit cycling behavior training ...
1629     field cold atom inertial sensors present analy...
1630     study statistical models onedimensional diffus...
1631     meaningful topological invariants mixed quantu...
1632     deep learning dl advances stateoftheart reinfo...
1633     space gm varphi infinitely differentiable func...
1634     accurate description spatial variations energy...
1635     study influence degree correlations network mi...
1636     multisource transfer learning proven effective...
1637     show blackhole highmass xray binaries hmxbs bt...
1638     study syzygies maximal cohenmacaulay modules o...
1639     chirality shape motility evolve rapidly microb...
1640     propose simple algorithm train stochastic neur...
1641     note proposes simple general framework dynamic...
1642     investigate emergence cal n supersymmetry long...
1643     adaptive gradient methods become recently popu...
1644     study connections dykstras algorithm projectin...
1645     techniques higher categories higherdimensional...
1646     introduce dynamic nested sampling generalisati...
1647     multistage design used wide range scientific f...
1648     investigate powerspace constructions topologic...
1649     numerical method presented conveniently comput...
1650     prove neartight concentration measure polynomi...
1651     paper proposes exploration method deep reinfor...
1652     paper based framework traditional spectrophoto...
1653     propose method solve initial value problem ult...
1654     quantum confinement interference often generat...
1655     gamma distribution arises frequently bayesian ...
1656     paper present two algorithms based froidurepin...
1657     address problem lightly doped spinliquid large...
1658     nonconvex optimization problems arise differen...
1659     paper considers problem phase retrieval goal r...
1660     inverse problems statistical physics motivated...
1661     propose novel mechanism explains cored dark ma...
1662     recommender systems successfully applied assis...
1663     prove lower bound omeganlog n size syntactical...
1664     introduce concept saturated absorption competi...
1665     work investigate combined influence nontrivial...
1666     report observation magnetic domains exotic ant...
1667     phylogenetic networks becoming increasing inte...
1668     paper prove shorttime existence hyperbolic inv...
1669     identify tradeoff robustness accuracy serves g...
1670     dark matter particle explorer dampe one four s...
1671     representation learning fundamental challengin...
1672     address paper problem modifying profits costs ...
1673     marginbased classifiers popular machine learni...
1674     let k nonperfect separably closed field let g ...
1675     general linear model paper derives necessary s...
1676     article construct three explicit natural subgr...
1677     demonstrate use semantic object detections rob...
1678     numerous breakthroughs reinforcement learning ...
1679     one primary questions characterizing earthsize...
1680     everincreasing productivity targets mining ope...
1681     laman graphs model planar frameworks rigid gen...
1682     demonstrate inalnganonsi hemt based uv detecto...
1683     paper first attempt learn policy inquiry dialo...
1684     problem times arrow rigorously solved certain ...
1685     phone sensors could useful assessing changes g...
1686     view recent intense experimental theoretical i...
1687     measuring quadratic values representative rand...
1688     motor system solve problem anticipatory contro...
1689     oeljeklaustoma ot manifolds complex nonkhler m...
1690     investigate different strategies active learni...
1691     study possible connection different nonthermal...
1692     show partial transposes complex wishart random...
1693     technique constructing conformally invariant t...
1694     wellknown result says euclidean unit ball uniq...
1695     multiple imputation mi inference handles missi...
1696     given samples distribution many new elements e...
1697     construct new continued fraction expansions ja...
1698     convolution galaxy images pointspread function...
1699     given traveling salesman problem tsp tour h gr...
1700     many modern machine learning applications outc...
1701     kuniba okado takagi yamada found timeevolution...
1702     scientists engineers commonly use simulation m...
1703     reinforcement learning gaining attention wirel...
1704     nonreversible markov chain monte carlo schemes...
1705     lecture notes course mats analysis xray tomogr...
1706     recent studies show widely used deep neural ne...
1707     prove arrow category monoidal model category e...
1708     given suitable ordering positive root system a...
1709     paper consists two parts first provides review...
1710     online fraudsters invest resources including p...
1711     provide new approximation guarantees greedy lo...
1712     topology power grid affects dynamic operation ...
1713     present wasserstein introspective neural netwo...
1714     let omega unbounded domain mathbbrtimesmathbbr...
1715     introduce new skein invariants links based pro...
1716     big data streaming applications require utiliz...
1717     interest higher derivatives field theories ori...
1718     work study spin hall effect rashbaedelstein ef...
1719     paper explores application koopman operator th...
1720     turbulence challenging feature common wide ran...
1721     setting nonparametric regression propose study...
1722     work present theoretical results convergence n...
1723     certain sufficient homological ringtheoretical...
1724     let g undirected graph edge g dominates edges ...
1725     heckehopf algebras defined berenstein kazhdan ...
1726     lengthmatching important technique bal ance de...
1727     yeast saccharomyces cerevisiae one best charac...
1728     advances deep generative networks led impressi...
1729     number recent papers provided evidence practic...
1730     examine nature possible orbits physical proper...
1731     present note study certain arrangements codime...
1732     investigate problem inferring causal predictor...
1733     state space models smoothing refers task estim...
1734     nonlinear dynamics free surface ideal incompre...
1735     given n vectors mathbfxiin mathbbrd want fit l...
1736     persistent interest integration latticematched...
1737     define outliers set observations contradicts p...
1738     propose dc proximal newton algorithm solving n...
1739     reinforcement learning agents learn performing...
1740     network integration studies try assess impact ...
1741     report alma cycle observations ghz mm dust con...
1742     astonishing success alphago zerocitesilveralph...
1743     electrondoped euferhas systematically studied ...
1744     chapter highluminosity large hadron collider h...
1745     shown relativistic quantum mechanics single fe...
1746     new type absorbing boundary conditions molecul...
1747     paper deals homotopy theory differential grade...
1748     consider nonlinear kalman filtering problem us...
1749     prove x x threefold terminal flip cxcxleq cxcx...
1750     helioseismic magnetic imager hmi provides cont...
1751     contact superconductor normal metal modifies p...
1752     functional data analysis typically conducted w...
1753     work explore straightforward variational bayes...
1754     galaxy crosscorrelations highfidelity redshift...
1755     initiate study completely bounded multipliers ...
1756     blackbox risk scoring models permeate lives ye...
1757     improve efficiency elderly assessments influen...
1758     present gpuaccelerated version highorder disco...
1759     auger engineering radio array aera aims detect...
1760     painting art form long functioned major channe...
1761     glassy dynamics intermittent particles suddenl...
1762     hidden markov model based various phoneme reco...
1763     paper prove arithmetic automorphic periods gln...
1764     chapter analyze multiple ionization impact z p...
1765     paper reconsider circular cylinder horizontall...
1766     paper considers problem switching two periodic...
1767     aspects social interaction digitally recorded ...
1768     report application femtosecond fourwave mixing...
1769     introduce computable actions computable groups...
1770     programming valuable skill labor market making...
1771     express two cr invariant surface area elements...
1772     article address general approach calculating d...
1773     show every hminorfree graph light epsilonspann...
1774     generative adversarial networks gans gathered ...
1775     present first good evidence exocomet transits ...
1776     analyze charge spin response functions rareear...
1777     introduce study notion canonical set theoretic...
1778     number internet things iot devices keeps incre...
1779     parafac demonstrated success modeling irregula...
1780     model intracluster medium weakly collisional p...
1781     event structure mathematical abstraction model...
1782     many realworld networks known exhibit facts co...
1783     study interacting majorana fermions two dimens...
1784     present new class polynomialtime algorithms su...
1785     ptsymmetry optics condition whereby real imagi...
1786     single phase uniform size nm cobalt ferrite cf...
1787     midinfrared instrument miri em james webb spac...
1788     paper describes open source software oss proje...
1789     paper concerned qualitative properties bounded...
1790     developed electron tracking compton camera etc...
1791     using largescale simulations based matrix prod...
1792     ellsberg thought experiments empirical confirm...
1793     event learning one important problems ai howev...
1794     review third edition interferometry synthesis ...
1795     data augmentation technique training set expan...
1796     transition metal oxides well known complex mag...
1797     important problem training deep networks high ...
1798     recent large cancer studies measured somatic a...
1799     paper introduces laplacetype operators functio...
1800     private record linkage prl problem identifying...
1801     despite recent popularity deep generative stat...
1802     consider optimal coverage problem multiagent n...
1803     novel scalable geometric multilevel algorithm ...
1804     recently kinduction algorithm proven successfu...
1805     gaussian process gp regression widely used sup...
1806     using movement primitive libraries effective m...
1807     radio astronomy observational facilities const...
1808     data quality phasor measurement unit pmu recei...
1809     provide detailed fully rigorous derivation sev...
1810     address controversy proximity effect topologic...
1811     paper presents novel method structural data re...
1812     propose introduce concept exceptional points i...
1813     paper consider location model form mx varepsil...
1814     show poisson centre truncated maximal paraboli...
1815     motivated question whether recently introduced...
1816     recent years seen growing interest streaming i...
1817     metaltometal clearances steam turbine full par...
1818     summary statistics genomewide association stud...
1819     biological networks convenient modelling visua...
1820     bytewise approximate matching algorithms recen...
1821     gandalf new hydrodynamics nbody dynamics code ...
1822     consider boltzmanngibbs measures associated lo...
1823     design good heuristics approximation algorithm...
1824     paper studies optimal extraction policy oil fi...
1825     scattering masscritical fractional schrdinger ...
1826     developer preferences language capabilities pe...
1827     demand single photon sources lambdamum follows...
1828     enjoying closed form solution least squares su...
1829     consider networked multiagent reinforcement le...
1830     noninteractive local differential privacy ldp ...
1831     statistical learning relies upon data sampled ...
1832     work technical approach modeling false informa...
1833     despite intense interest realizing topological...
1834     examine topological solitons minimal variation...
1835     plasma wakefield acceleration one main technol...
1836     obtain rigorous upper bound resistivity rho el...
1837     paper introduces addresses wide class stochast...
1838     modern day web applications aim create impact ...
1839     discuss relative merits optimistic randomized ...
1840     size weight power constrained platforms impose...
1841     consider fourdimensional gravity coupled nonli...
1842     show hardness geodetic hull number chordal graphs
1843     using etale cohomology define birational invar...
1844     propose novel semisupervised active learning a...
1845     consider problem recovering function input dif...
1846     automatic conflict detection grown relevance a...
1847     assuming conjecture factorization homology adj...
1848     discover population shortperiod neptunesize pl...
1849     describing dimension reduction dr techniques m...
1850     many practical problems characterized preferen...
1851     summarization long sequences concise statement...
1852     first order theory said tight two deductively ...
1853     investigate accuracy robustness one common met...
1854     software maintenance developers usually deal s...
1855     use computers statistical physics common sheer...
1856     consider helical system fermions generic spin ...
1857     study correlations fermionic lattice systems l...
1858     present integrated microsimulation framework e...
1859     stochastic optimization naturally arises machi...
1860     consider variation problem prediction expert a...
1861     subsequence clustering multivariate time serie...
1862     paper consider nonlocal energy ialpha whose ke...
1863     recently advancement industrial automation hig...
1864     present approach testing gravitational redshif...
1865     present novel approach fast onthefly low order...
1866     consider potential positioning system antenna ...
1867     expository work discuss asymptotic behaviour s...
1868     artificial spin ice asi consisting two dimensi...
1869     since events arab spring increased interest us...
1870     initiate algorithmic study following structure...
1871     derive semianalytic formula transition probabi...
1872     recurrent neural networks rnns used stateofthe...
1873     necessarily proper edge kcolouring gammaeglong...
1874     celebrated nadarayawatson kernel estimator amo...
1875     consider problem bandit optimization inspired ...
1876     theoretically study scheme develop atomic base...
1877     kalman filter called one greatest inventions s...
1878     present new method separation superimposed ind...
1879     gc gc two globular clusters gcs remote halo gr...
1880     present method generate renewable scenarios us...
1881     many social economic systems naturally represe...
1882     article hopf parametric adjunctions defined an...
1883     solving symmetric positive definite linear pro...
1884     despite remarkable achievements practical trac...
1885     notes aim presenting overview bayesian statist...
1886     extracting useful entities attribute values il...
1887     tutorial provides gentle introduction kernel d...
1888     statelevel minimum bayes risk smbr training be...
1889     increasing illegal parking become serious nowa...
1890     discuss extensions results recent paper cherno...
1891     tightly analyze sample complexity cca provide ...
1892     propose novel approach address simultaneous de...
1893     paper introduces combinatorial boolean model c...
1894     september hurricane irma made landfall florida...
1895     human behavioural patterns exhibit selfish com...
1896     study special central configurations curved nb...
1897     following selection gravitational universe esa...
1898     empirical bayes versatile approach learn lot t...
1899     techniques reducing variance gradient estimate...
1900     binary mixtures dry grains avalanching slope e...
1901     given set n points p plane first layer l p for...
1902     paper mainly focus frontlike entire solution c...
1903     paper classify fundamental solutions class sch...
1904     predict final result athlete marathon run thor...
1905     nowadays multiprocessing mainstream exponentia...
1906     study dynamics isotropic spin heisenberg chain...
1907     erasure codes play important role storage syst...
1908     machine learning libraries tensorflow pytorch ...
1909     devise new high order local absorbing boundary...
1910     describe necessary conditions existence hamilt...
1911     introduce two new bootstraps exchangeable rand...
1912     paper shall prove subset overlinemathbb qcap b...
1913     present textttbhm tool restoring smooth functi...
1914     develop general polynomial chaos gpc based sto...
1915     study seasonal evolution titans lower stratosp...
1916     multiagent approach become popular computer sc...
1917     present introductory survey first order logic ...
1918     percusyevick theory monodisperse hard spheres ...
1919     test mathbbcpn sigma models painlev property c...
1920     framework matrix valued observables low rank m...
1921     evaluating generative adversarial networks gan...
1922     intersecting pedestrian flow lattice random up...
1923     lioso first example new class material called ...
1924     convolutional neural networks cnns core stateo...
1925     retrieving similar objects largescale database...
1926     let finite dimensional real algebra division g...
1927     paper first discuss relation vbcourant algebro...
1928     consider josephson junction consisting superco...
1929     rashba spin orbit coupling topological insulat...
1930     floquet systems periodically driven quantum sy...
1931     paper maps relation different approaches handl...
1932     work consider diffusionbased molecular communi...
1933     define variable parameter analogues affine arc...
1934     study problem estimating finite sample confide...
1935     extremescale computational science increasingl...
1936     uranium beryllium heavy fermion system whose a...
1937     article study behavior p nearrowinfty fucik sp...
1938     show finite unitary group orbits spanning whol...
1939     multivariate time series mts become increasing...
1940     parabolic equations form fracpartial upartial ...
1941     many radiological studies reveal presence seve...
1942     provide complete classification algebras gener...
1943     revisit study phenomenology associated burst p...
1944     consider following asynchronous opportunistic ...
1945     give fully polynomialtime randomized approxima...
1946     sparse coding crucial subroutine algorithms va...
1947     reducedrank regression dimensionality reductio...
1948     find asymptotic formulas error probabilities t...
1949     visual focus attention vfoa recognized promine...
1950     introduce fullydynamic conflictfree coloring p...
1951     systematic experimental study gilbert damping ...
1952     learning detect fraud largescale accounting da...
1953     consider problem learning binary classifier po...
1954     show case special dipolar source electromagnet...
1955     propose novel randomized linear programming al...
1956     report summarizes discussions open issues take...
1957     statisticians increasingly face problem recons...
1958     locally repairable code availability property ...
1959     present general form renormalization operator ...
1960     study duality spectral sequences weierstrass f...
1961     short communication study fluid queue finite b...
1962     introduce class affine forward variance afv mo...
1963     free loops space lambda x space x become impor...
1964     cosmic ray muons average energy gev neutrons p...
1965     number microorganisms leave persistent trails ...
1966     present paper study existence solutions nonloc...
1967     show exist complete minimal systems timefreque...
1968     paper describe new las vegas algorithm solve e...
1969     lecture notes short course spectral sequences ...
1970     two identical coherent beams injected semiinfi...
1971     prove structure identity principle theories de...
1972     recent years constrained optimization become i...
1973     study small local set continuum gaussian free ...
1974     prediction market individuals sequentially pla...
1975     several dihedral angles prediction methods dev...
1976     simple recurrence relation even order moments ...
1977     long range corrected range separated hybrid fu...
1978     deep networks often perform well data distribu...
1979     spite close connection evaluation quantified b...
1980     sagnac effect shown inertial frames well rotat...
1981     anisotropic displacement parameters adps commo...
1982     robotic motion planning problems typically sol...
1983     article consider hook removal operators odd pa...
1984     present paper consider modal propositional log...
1985     neural network nn model chemistries mcs promis...
1986     automated service classification plays crucial...
1987     study photoinduced breakdown twoorbital mott i...
1988     draw formal connection using synthetic trainin...
1989     learning memory intertwined brain relationship...
1990     nonlinear response entangled polymers shear fl...
1991     demonstrate generation higherorder modulation ...
1992     magnetic trilayers large perpendicular magneti...
1993     grain boundary diffusion severely deformed alb...
1994     quantum schrodingernewton equation solved self...
1995     consider learning predictor nondiscriminatory ...
1996     many brown dwarfs exhibit photometric variabil...
1997     traveling fronts describe transition two alter...
1998     propose original concept compressive sensing c...
1999     advantages electric vehicles ev include reduct...
2000     interactive music systems ims introduced new w...
2001     study relationship information estimationtheor...
2002     regions acquire knowledge need diversify econo...
2003     analyze problem learning single users preferen...
2004     widely observed deep learning models learned p...
2005     artifical neural networks particular class lea...
2006     macquarie universitys contribution bioasq chal...
2007     internetofthings iot architectures connecting ...
2008     report diffusion monte carlo results groundsta...
2009     prove number p positive eigenvalues connection...
2010     motivated study collapsing calabiyau threefold...
2011     comes searches extensions general relativity l...
2012     paper presents design nonlinear control law ty...
2013     probabilistic representations movement primiti...
2014     access transverse spin light unlocked new regi...
2015     survival studies classical inferences lefttrun...
2016     present strongly interacting quadruple system ...
2017     develop notion higher cheeger constants measur...
2018     petri nets established graphical formalism mod...
2019     consider problem low canonical polyadic cp ran...
2020     introduce statistical method investigate impac...
2021     study new model interactive particle systems c...
2022     present pricing mechanisms several online reso...
2023     casebased reasoning cbr widely used generate g...
2024     paper present new method determining optimal d...
2025     calice collaboration developing highly granula...
2026     hamiltonian monte carlo emerged standard tool ...
2027     paper derive pointwise upper bounds lower boun...
2028     simulating large networks neurons hines propos...
2029     paper describes submission bioasq challenge pa...
2030     recently decentralised onblockchain platforms ...
2031     demonstrate electromechanical control onchip g...
2032     people speak different levels specificity diff...
2033     prove meet level trotterweil mathsfvm local ge...
2034     aboria powerful flexible c library implementat...
2035     classical mechanics wellknown cryptographic al...
2036     autoencoders successful learning meaningful re...
2037     consider large market model defaultable assets...
2038     lifeexpectancy complex outcome driven genetic ...
2039     recent several years witnessed surge asynchron...
2040     define new invariants manifolds using space ta...
2041     paper propose image encryption algorithm based...
2042     recently developed bagofpaths framework consis...
2043     recent advances analysis subband amplitude env...
2044     study vladimirov fractional differentiation op...
2045     propose positionvelocity encoders pves learnwi...
2046     convolutional neural networks cnns one driving...
2047     linear regression models contaminated gaussian...
2048     paper addresses problem depth estimation singl...
2049     one fundamental results computability existenc...
2050     research mobile collocated interactions explor...
2051     instrumental variable iv methods widely used e...
2052     prove length function perverse sheaves algebra...
2053     deep neural networks commonly developed traine...
2054     show expected size maximum agreement subtree t...
2055     systematic firstprinciples study performed und...
2056     answering question second listed author show t...
2057     statistical relational ai starai aims reasonin...
2058     gravitinos fundamental prediction supergravity...
2059     study networks human decisionmakers independen...
2060     membrane proteins constitute large portion hum...
2061     present spectroscopic redshifts smjy submillim...
2062     paper treats several aspects truncated matrici...
2063     let omega pseudoconvex domain mathbb cn satisf...
2064     observational studies sample surveys regressio...
2065     recent studies shown framelevel deep speaker f...
2066     collective urban mobility embodies residents l...
2067     investigate macroeconomic consequences narrow ...
2068     convolutional neural networks cnns widely used...
2069     neurofeedback form brain training subjects fed...
2070     image video analysis often crucial step study ...
2071     give survey recent results weakstrong uniquene...
2072     accurate diagnosis alzheimers disease ad entai...
2073     introduce novel approach training adversarial ...
2074     potential machine learning ml systems amplify ...
2075     prospect pileup induced backgrounds high lumin...
2076     report first result ge neutrinoless double bet...
2077     keywords important information retrieval used ...
2078     free space optical communication techniques su...
2079     work focuses question identifiability mathemat...
2080     develop theory nonlinear dimensionality reduct...
2081     hashing widely used largescale approximate nea...
2082     based upon idea network functionality impaired...
2083     paper use gaussian process gp regression propo...
2084     propose new method evaluate gans namely evalga...
2085     use superconducting rings asymmetric linkup cu...
2086     human societies around world interact developi...
2087     paper presents proposal story statically detec...
2088     define symmetric monoidal category duals whose...
2089     permutation codes form rank modulation shown p...
2090     dembowska large bright mainbelt asteroid fast ...
2091     propose cm new deep reinforcement learning met...
2092     work addresses problem robust attitude control...
2093     origin sociology social network analysis sna q...
2094     accounting fraud global concern representing s...
2095     gaussian processes gps good choice function ap...
2096     complex electric modulus ac conductivity carbo...
2097     uniform convergence rates provided asymptotic ...
2098     predicting arctic sea ice extent notoriously d...
2099     plasmids autonomously replicating genetic elem...
2100     distributional approximations bi linear functi...
2101     introduce criterion resilience allows properti...
2102     space topological defect abrikosovnielsenolese...
2103     accurate assessment risk extreme environmental...
2104     answer question extent homotopy colimits categ...
2105     formulate part rigorous theory ground states c...
2106     promising research area recently emerged use i...
2107     use monte carlo simulations explore statistica...
2108     recent developments remote sensing technologie...
2109     consider reproducing kernel function theta bar...
2110     paper consider concentration measure problem r...
2111     jpeg one widely used image formats ways remain...
2112     study problems clustering outliers high dimens...
2113     realvalued word representations transformed nl...
2114     contemporary software documentation complicate...
2115     mathsflembedding graph vertex represented math...
2116     develop novel family algorithms online learnin...
2117     objective investigate whether deep learning te...
2118     paper concerned finite sample approximations s...
2119     previous experiments open turbulent flows eg d...
2120     propose method inspired discrete light cone qu...
2121     phylogenetic networks generalise phylogenetic ...
2122     bibliometric indicators citation counts andor ...
2123     unprecedented human mobility driven rapid urba...
2124     flexibility shape scale burr xii distribution ...
2125     argo floats measure seawater temperature salin...
2126     theories knowledge reuse posit two distinct pr...
2127     consider problem matching applicants posts app...
2128     one challenging problems technological forecas...
2129     paper study ideal variable bandwidth kernel de...
2130     increase vehicle highways may cause traffic co...
2131     vslam visual simultaneous localization mapping...
2132     dielectronic recombination dr dominant mode re...
2133     structural nested mean models snmms among fund...
2134     develop reinforcement learning based search as...
2135     nonparametric fuel consumption model developed...
2136     vast majority computation brain performed spik...
2137     winds northwest quadrant lack precipitation kn...
2138     study randomly initialized residual networks u...
2139     obtain structure theorem group holomorphic aut...
2140     vision systems eagle snake outperform everythi...
2141     present web service querying embedding entitie...
2142     describe melee metalearning algorithm learning...
2143     present manybody theory explains reproduces re...
2144     potential efficient ridesharing scheme signifi...
2145     pillared graphene frameworks novel class micro...
2146     recent progress computer vision dominated deep...
2147     prove every n mathbbn delta exists word wn f l...
2148     theoretically address spin chain analogs kitae...
2149     motivated applications biological science prop...
2150     motivated applications arise online social med...
2151     pbw degenerations particularly nice family fla...
2152     paper concerned problem exact map inference ge...
2153     weyl semimetals wsms recently attracted great ...
2154     analyze performance class timedelay firstorder...
2155     explore problem intersection classification us...
2156     study liouville heat kernel l phase associated...
2157     isoperimetric inequalities form intuitive yet ...
2158     chapter revisits concept excitability basic sy...
2159     give first examples closed laplacian solitons ...
2160     markoff group transformations group gamma affi...
2161     consider spin manifold equipped line bundle l ...
2162     participatory budgeting one exciting developme...
2163     paper presents first estimate seasonal cycle o...
2164     give simple proof standard zerofree region tas...
2165     binary stars interact via mass transfer one me...
2166     paper deals skew ruled surfaces euclidean spac...
2167     ultrafast xray imaging provides high resolutio...
2168     decompose returns portfolios bottomranked lowe...
2169     nearly autonomous robotic systems use form mot...
2170     years recursive neural networks rvnns shown su...
2171     consider navierstokes flow dimensional exterio...
2172     metabolic fluxes cells governed physical bioch...
2173     archetypal analysis type factor analysis data ...
2174     function baire space natural numbers called fo...
2175     consider problem universal joint clustering re...
2176     consider general relation fixed point stabilit...
2177     redundancy universal lossless compression disc...
2178     deep learning performance strongly affected ch...
2179     propose ultranarrow dynamical control populati...
2180     bryant horsley maenhaut smith recently gave ne...
2181     modern statistical inference tasks often requi...
2182     passive kerr cavities driven coherent laser fi...
2183     present framework connects three interesting c...
2184     previous studies demonstrated empirical succes...
2185     bound factor large integers dominated computat...
2186     increasing uptake residential batteries led su...
2187     evolution cellular technologies toward g progr...
2188     training deep neural networks stochastic gradi...
2189     report design fabrication characterization ult...
2190     investigate spatial evolutionary games deathbi...
2191     provide first analysis nontrivial quantization...
2192     paper proposes detailed optimal scheduling mod...
2193     justification awareness models jams proposed s...
2194     splendid success convolutional neural networks...
2195     thomassen conjectured trianglefree planar grap...
2196     paper presents continuoustime equilibrium mode...
2197     brain display selfsustained activity ssa persi...
2198     several important applications streaming pca s...
2199     heavytailed errors impair accuracy least squar...
2200     paper analyse benefits incorporating intervalv...
2201     neutron beam monitors high efficiency low gamm...
2202     previous studies shown filamentary structures ...
2203     pandeia exposure time calculator etc system de...
2204     basic combinatorial invariant convex polytope ...
2205     recently integration geographical coordinates ...
2206     fitchstyle modal deduction modalities eliminat...
2207     recently first installment data esas gaia astr...
2208     consider randomly distributed mixtures bonds f...
2209     paper propose general framework modeling insur...
2210     paper cover several studies design changes eve...
2211     consider multidimensional optimization problem...
2212     graph powerful concept representation relation...
2213     paper considers assignment multiple mobile rob...
2214     cyclic codes efficient encoding decoding algor...
2215     prove indecomposable sigmapureinjective module...
2216     present novel continuous optimization method d...
2217     provide microeconomic framework decision trees...
2218     recent years deep reinforcement learning made ...
2219     consider problem identifying k best arms narme...
2220     recommender systems rs help users navigate lar...
2221     develop new technique based steins method comp...
2222     paper propose novel elegant solution multisour...
2223     literature inverse reinforcement learning irl ...
2224     recent work shown recursive factorisation cert...
2225     paper seeks combine differential game theory a...
2226     introduce notion depth finite group g defined ...
2227     cosmic rays originating extraterrestrial sourc...
2228     aim paper establish strong stability propertie...
2229     paper develops theory feasible estimators fini...
2230     generating realistic artificial preference dis...
2231     let momega closed dimensional manifold equippe...
2232     deep learning methods recently achieved great ...
2233     point clouds provide flexible natural represen...
2234     new challenge learning algorithms cyberphysica...
2235     study restricted isometry property rip corrupt...
2236     propose new positive definite kernels permutat...
2237     study connection synchronizing automata set mi...
2238     quest performant networks significant force dr...
2239     analyze loss landscape expressiveness practica...
2240     formulated implemented procedure generate alia...
2241     let g quasisimple algebraic group defined alge...
2242     let fn rightarrow boolean function certificate...
2243     oshimas lemma describes orbits parabolic subgr...
2244     humanintheloop machine learning user provides ...
2245     employ exponentially improved asymptotic expan...
2246     data summarization want choose k prototypes or...
2247     brms package allows r users easily specify wid...
2248     paper prove characterization k inftysuper pere...
2249     anomalies abundance measurements short lived r...
2250     establish geometric condition guaranteeing exa...
2251     paper proposes family weighted batch means var...
2252     gradientbased optimization foundation deep lea...
2253     dirichlet process mixture models dpmm cornerst...
2254     study existence uniqueness minimal right deter...
2255     study stationary photon output statistics smal...
2256     many applied settings empirical economics invo...
2257     periodograms used key significance assessment ...
2258     work consider problem predicting course progre...
2259     paper present state art quarks group su lie al...
2260     link discovery active field research support d...
2261     minimum kenclosing ball problem seeks ball sma...
2262     dependency parses effective way inject linguis...
2263     motion mechanical system defined path configur...
2264     give polynomialtime algorithm learning neural ...
2265     machine learning techniques used past using mo...
2266     main properties climate waves seasonally iceco...
2267     estimating covariances financial assets plays ...
2268     present thorough analysis interplay magnetic m...
2269     android popular smartphone system multiple pla...
2270     paper presents framework implementation online...
2271     motivated intriguing behavior displayed dynami...
2272     present software tool employs stateoftheart na...
2273     knowledge graph embedding aims translating kno...
2274     present simple phenomenological model observed...
2275     convolutional neural networks cnns become domi...
2276     positive impacts platooning travel time reliab...
2277     paper studies role dglie algebroids derived de...
2278     paper presents novel method reduce scale drift...
2279     artificial ice systems unique physical propert...
2280     nodeperturbation learning type statistical gra...
2281     recently sbmetric spaces introduced generaliza...
2282     designing decentralized policies wireless comm...
2283     paper propose analyze finite element method ha...
2284     paper investigates power control relay selecti...
2285     introduce study ternary fdistributive structur...
2286     important unsolved problem theory integrable s...
2287     work study impact chromatic focusing fewcycle ...
2288     anisotropy describes directional dependence ma...
2289     logistic linear mixed model widely used experi...
2290     prove nonadaptive algorithm tests whether unkn...
2291     language understanding key component spoken di...
2292     novel delaybased spacing policy control vehicl...
2293     reidemeister number endomorphism group number ...
2294     paper propose framework crosslayer optimizatio...
2295     many important problems modeled system interco...
2296     functional version kato oneparametric regulari...
2297     recent breakthroughs computer vision natural l...
2298     objective evaluate unsupervised clustering met...
2299     report structural optical temperature frequenc...
2300     let xrightarrow mathbb p elliptically fibered ...
2301     paper propose use quantum genetic algorithm op...
2302     present visiononly model gaming ai uses late i...
2303     several kinds differential relations polynomia...
2304     paper studies holomorphic semicocycles semigro...
2305     work plan develop system compare virtual machi...
2306     emergence intellectual property academic issue...
2307     paper consider cubic fourthorder nonlinear sch...
2308     thesis study problem feature learning heteroge...
2309     introduce new boundary integral operators exac...
2310     granular materials complex multiparticle ensem...
2311     stochastic matching problem given general nece...
2312     prevention domestic violence dv aroused seriou...
2313     paper show attain capacity discrete symmetric ...
2314     avionics one kind domain prevention prevails n...
2315     recent research revealed output deep neural ne...
2316     investigate special dam optimal location volga...
2317     protondriven plasma wakefield acceleration dem...
2318     convolutional neural networks subject great im...
2319     paper first work perform spatiotemporal mappin...
2320     paper studies structure parabolic partial diff...
2321     paper generally formulate dynamics prediction ...
2322     graphs important tool model data different dom...
2323     context past decade sensitive resolved sunyaev...
2324     disjointset forests consisting unionfind trees...
2325     paper study problem exploring translating plum...
2326     present paper shows warped riemannian metrics ...
2327     look stochastic optimization problems lens sta...
2328     study single machine scheduling problem object...
2329     rural building mapping paramount support demog...
2330     problem suppressing scattering conductive obje...
2331     accurate robust simulation transcritical realf...
2332     given substitution tiling plane subdivision op...
2333     detection molecular species atmospheres earthl...
2334     discuss several issues related classical space...
2335     study convergence parameter family series valp...
2336     stationary homogeneous markov processes viz lv...
2337     consider smooth complex quasiprojective variet...
2338     describe list open problems random matrix theo...
2339     proposed semiparametric estimation procedure o...
2340     spectra starforming hii regions ngc observed u...
2341     problem outputonly parameter identification no...
2342     half million individuals diagnosed head neck c...
2343     consider problem detecting targets among large...
2344     number imageprocessing problems formulated opt...
2345     adversarial example example adjusted produce w...
2346     propose homotopy continuation method called fl...
2347     user participation considered effective way co...
2348     article consider equivariant schrdinger map bb...
2349     collection arbitrarilyshaped solid objects mov...
2350     reinforcement learning agent tries maximize cu...
2351     structure composition electrophysical characte...
2352     work describes development highresolution tact...
2353     upcoming fermilab e experiment measure muon an...
2354     previous work koenig ovsienko second author sh...
2355     telecom companies severely damaged bypass frau...
2356     observed many thin superconducting films high ...
2357     goal scenario reduction approximate given disc...
2358     relationship scientific knowledge development ...
2359     learning mixture models viewed clustering prob...
2360     resolving abstract anaphora important difficul...
2361     present effective harmonic density interpolati...
2362     many problems computer vision recommender syst...
2363     classical novae show rapid rise optical bright...
2364     work compare thermophysical properties particl...
2365     recovering lowrank structures via eigenvector ...
2366     present use fitted q iteration algorithmic tra...
2367     finite rank median spaces simultaneous general...
2368     explaining underlying causes effects events ch...
2369     propose type system reasoning protocol conform...
2370     homomorphism graph g graph h function vertices...
2371     consider spatially homogeneous boltzmann equat...
2372     materials science adopted term auxetic behavio...
2373     asymptotics maximum likelihood estimation alph...
2374     deep neural networks dnns emerged core tool ma...
2375     marshall olkin biometrika introduced powerful ...
2376     rapid improvements machine learning past decad...
2377     paper studies dynamics networkbased sirs epide...
2378     every qin mathbb n let textrmfoq denote class ...
2379     community analysis important way ascertain whe...
2380     composite adaptive control schemes use system ...
2381     introduce new critical value cinftyl tonelli l...
2382     analyze decentralized random walkbased algorit...
2383     fan region one dominant features polarized rad...
2384     determining redshift distribution nz galaxy sa...
2385     paper develop novel computational sensing fram...
2386     nowadays construction complex robotic system r...
2387     joint sparse recovery problem generalization s...
2388     dynamics infectious diseases spread crucial de...
2389     investigate dynamical complexity cournot oligo...
2390     mathematical modelers long known rule thumb re...
2391     egbert brieskorn died july days th birthday im...
2392     exploiting fullduplex fd technology base stati...
2393     consider task motion planning complex dynamic ...
2394     recently deep neural networks dnns regarded st...
2395     sequential monte carlo smc methods class monte...
2396     incoming electron reflected back hole normalme...
2397     examine dynamics entanglement entropy parts op...
2398     aggressive incentive schemes allow individuals...
2399     nearby space surrounding earth densely populat...
2400     characterize photonic transport boundary drive...
2401     show empirically optimal strategy parameter av...
2402     compare longterm fractional frequency variatio...
2403     bootstrap current flow velocity lowcollisional...
2404     use hubble space telescope obtain wfcfw imagin...
2405     society faces fundamental global problem under...
2406     paper establishes convergence rate bounds vari...
2407     paper address basic problem recognizing moving...
2408     klavs f jensen warren k lewis professor chemic...
2409     complexity size stateoftheart cell models sign...
2410     introduce new method building models ch togeth...
2411     paper propose hamiltonian approach gapped topo...
2412     paper considers nonhermitian zakharovshabat zs...
2413     central goal thesis develop methods experiment...
2414     given matrix mathbfainmathbbrntimes vector b i...
2415     autonomous robots increasingly depend thirdpar...
2416     silicon photomultipliers sipms potential solid...
2417     experiments may reveal full import time perfor...
2418     study statistical computational aspects kernel...
2419     consider population n agents communicate decen...
2420     note show mutation theory species potential de...
2421     use generalized hierarchical equation motion p...
2422     consider groundstate properties rashba spinorb...
2423     solving global method weighted least squares w...
2424     work builds earlier results define universal e...
2425     residual network resnet stateoftheart architec...
2426     second generation gravitational wave detectors...
2427     surprising diversity different products hyperg...
2428     simple scaling consideration nrg solution one ...
2429     paper proposes deep convolutional neural netwo...
2430     recurrent neural networks rnns attention mecha...
2431     paper describes faraday room shields cuore exp...
2432     describe benchmark study collective nonlinear ...
2433     correlated random fields common way model depe...
2434     deep learning approaches convolutional neural ...
2435     spat signal phase timing message describes lan...
2436     paper propose novel method estimate characteri...
2437     work novel approach presented solve problem tr...
2438     flexibility key enabler smart grid required fa...
2439     paper describes duluth system participated sem...
2440     work presents innovative application wellknown...
2441     stellar evolution models uncertain evolved mas...
2442     study complexity short sentences presburger ar...
2443     mean square error mse preferred choice loss fu...
2444     introduce new application measuring symplectic...
2445     consider problem undirected graphical model in...
2446     highdoserate brachytherapy tumor treatment met...
2447     use scattering network generic fixed initializ...
2448     studied lagged linear regression used detect p...
2449     develop complexity measure largescale economic...
2450     net contribution strange quark spins proton sp...
2451     carmesin federici georgakopoulos arxiv constru...
2452     consider machine learning comparisonbased sett...
2453     predicting completion time business process in...
2454     quantum annealing qa generic method solving op...
2455     unwanted variation highly problematic detectio...
2456     present alma co detections gasrich cluster gal...
2457     anatomical biophysical modeling left atrium la...
2458     data assimilation widely used improve flood fo...
2459     presence ubiquitous magnetic fields universe s...
2460     study model two species onedimensional linearl...
2461     positive semidefinite rank convex body c size ...
2462     investigate holonomy group singular khlereinst...
2463     selective classification techniques also known...
2464     cognitive computing systems require human labe...
2465     demonstrate random bit streaming system uses c...
2466     investigated electronic states spin polarizati...
2467     quality assurance performance qualification la...
2468     search signature universal properties extreme ...
2469     present search metal absorption line systems h...
2470     year number smartphone users globally reach bi...
2471     motivated model independent pricing derivative...
2472     paper aims provide better understanding symmet...
2473     ease integration coupled large secondorder non...
2474     prove cyclic quadrilateral inscribed closed co...
2475     prove free noncyclic group f hhat fmathbb q ma...
2476     intentional unintentional contacts bound occur...
2477     number published findings biomedicine increase...
2478     consider classical problem control inverted pe...
2479     refactoring maintenance activity aims improve ...
2480     second series papers construct invariant fourd...
2481     bayesian inference via standard markov chain m...
2482     kernel trick concept formulated inner product ...
2483     seminal paper caponnetto de vito provides mini...
2484     propose supervised algorithm generating type e...
2485     network embedding aims find way encode network...
2486     automated program repair apr attracted widespr...
2487     study tries explain connection communication m...
2488     introduce model anonymous games player depende...
2489     work study problem minimizing sum strongly con...
2490     show forming connected sum homotopy sphere jco...
2491     introduce technique automatically tune paramet...
2492     paper introduce two new nonsingular kernel fra...
2493     several domains obtaining class annotations ex...
2494     number studies analysis remote sensing images ...
2495     multiarmed restless bandit problem studied cas...
2496     iteratively reweighted ell algorithm popular a...
2497     object oriented software development analysis ...
2498     perspective provides examples current future a...
2499     explicit description virtualization map modifi...
2500     mechanisms underlying cardiac fibrillation inv...
2501     paper propose informationtheoretic exploration...
2502     introduce probabilistic generative adversarial...
2503     reversible jump markov chain monte carlo rjmcm...
2504     define compactifications vector spaces functor...
2505     show mfold connected sum mmathbbcmathbbpn admi...
2506     present microscopic theory raman scattering tw...
2507     work study robust subspace tracking rst proble...
2508     paper argue adoption normative definition fair...
2509     understanding tie strength social networks fac...
2510     paper considers nonstationary responses reduce...
2511     investigation social influence dynamics requir...
2512     weighted knearest neighbors algorithm one fund...
2513     important novelty g role transforming industri...
2514     consider reinforcement learning rl setting age...
2515     study threewave truncation recently proposed d...
2516     future likely see even pervasive computation c...
2517     skodas result ideal generation crucial ingredi...
2518     one defining properties deep learning models c...
2519     dielectric microstructures generated much inte...
2520     given zerodimensional ideal polynomial ring ma...
2521     paper introduce concept virtual machine grapho...
2522     present selfcontained proof uhlenbecks decompo...
2523     consider problem making distributed computatio...
2524     present straightforward sourcetosource transfo...
2525     investigate open dynamics atomic impurity embe...
2526     composition lattice join transitive closure un...
2527     propose simple risklimiting audit elections cl...
2528     paper study category lca certain nonlocally co...
2529     study sample paths random walk first time cros...
2530     cell migration fundamental process involved ph...
2531     recent work proposed various adversarial losse...
2532     detection thousands extrasolar planets transit...
2533     define nearestneighbour point processes graphs...
2534     one challenges modelbased control stochastic d...
2535     health care one exciting frontiers data mining...
2536     let x normal connected projective variety alge...
2537     pressure driven flow contact interface elastic...
2538     species tree reconstruction genomic data incre...
2539     paper establish characterization weighted bmo ...
2540     represent matrn functions terms schoenbergs in...
2541     hassewitt matrix hypersurface mathbb pn finite...
2542     propose study problem fewshot learning prism i...
2543     report precise measurement atomic mass single ...
2544     distribution cold gas postreionization era pro...
2545     assume selfadjoint operator hilbert space math...
2546     formulate propose algorithm multirank ranking ...
2547     given combinatorial design mathcald block set ...
2548     growing literature affect among software devel...
2549     propose typesafe abstraction tensors ie multid...
2550     exploiting sparsity enables hardware systems r...
2551     densitybased clustering techniques used wide r...
2552     propose fast proximal newtontype algorithm min...
2553     use grey forecast model predict future energy ...
2554     text password long dominant user authenticatio...
2555     randomized experiments critical tools decision...
2556     planets solar system divide neatly atmospheres...
2557     plated onto substrates cell morphology even st...
2558     agentbased computing diverse research domain c...
2559     novel topological phases correlated electron s...
2560     motivated current interest understanding mott ...
2561     opinion mining sentiment analysis social media...
2562     developing dialogue agent capable making auton...
2563     weakstrong uniqueness result proved measureval...
2564     gradient descent coordinate descent well under...
2565     inverse reinforcement learning irl aims explai...
2566     one hand consider problem finding global solut...
2567     step expert taxa recognition currently slows r...
2568     thermoelectric te materials achieve localised ...
2569     million scholarly articles published constitut...
2570     bayesian optimization sampleefficient approach...
2571     present muse kmos dynamical study starforming ...
2572     aim finegrained recognition identify subordina...
2573     many hard conjectures graph theory like tuttes...
2574     modern theories galaxy formation predict galax...
2575     deep learning involves difficult nonconvex opt...
2576     attention personalized mental health care thri...
2577     robust estimation much challenging high dimens...
2578     graphenemos heterojunction formed joining two ...
2579     let p prime pgroup g defined semiextraspecial ...
2580     lack diversity genetic algorithms population m...
2581     work analyze problem adoption mobile money pak...
2582     prove cherlins conjecture concerning binary pr...
2583     article concerns expressive power depth neural...
2584     ji matouek many breakthrough contributions mat...
2585     modern neural networks often augmented attenti...
2586     intrinsically motivated spontaneous exploratio...
2587     previous research traditionally analyzed emoji...
2588     concept cclass differential equations goes bac...
2589     interval estimation quantiles treated many lit...
2590     recent years large body research demonstrated ...
2591     texture characterization key problem image und...
2592     images spectra open cluster ngc obtained gmos ...
2593     present exact ground state solution quantum di...
2594     study instability standing wave solutions nonl...
2595     paper proposes matrixweighted consensus algori...
2596     study strategic version multiarmed bandit prob...
2597     recent focus accessibility field researchers a...
2598     machine learning quantum computing two technol...
2599     using password based authentication technique ...
2600     paper study analytical approach selecting expa...
2601     paper study behavior fractions factorial desig...
2602     biomedical events describe complex interaction...
2603     nowadays quite evident knowledgebased society ...
2604     bilinear matrix inequality bmi problems system...
2605     carried transient nonlinear transport measurem...
2606     compression computational efficiency deep lear...
2607     discrete modeling approach hybrid control syst...
2608     paper proposes privacypreserving distributed r...
2609     study methods estimate drivers posture vehicle...
2610     propose new smoothed median wilcoxons rank sum...
2611     study neverworse relation nwr markov decision ...
2612     network tunnel part path protocol encapsulated...
2613     paper summarizes development lvcsr system buil...
2614     understand narrative humans draw inferences un...
2615     define notion hombatalinvilkovisky algebras st...
2616     paper viewed complement earlier result paper m...
2617     establish four supercongruences truncated f hy...
2618     multiple classifiers fusion localization techn...
2619     embedding graph nodes vector space allow use m...
2620     introduce kernel lasso klasso optimization sim...
2621     consider problem reconstructing signals images...
2622     identify multirole logic new form logic conjun...
2623     work present novel astrid method investigating...
2624     paper propose modified levy jump diffusion mod...
2625     present test quantify well approximate methods...
2626     advances wireless sensor network wsn provided ...
2627     samples common mean possibly different ordered...
2628     report discovery constrain physical conditions...
2629     article proposes numerical scheme computing ev...
2630     reproducibility scientific research become poi...
2631     prove tate beilinson parshin conjectures invar...
2632     dueling bandits problem online learning framew...
2633     presence dusty debris around main sequence sta...
2634     based quasionedimensional limit quantum hall s...
2635     onboard operating systems becoming increasingl...
2636     obtain spectral gap characterization strongly ...
2637     dynamic neural network toolkits pytorch dynet ...
2638     clustering process finding analyzing underlyin...
2639     deep learning models require extensive archite...
2640     actions autonomous vehicle road affect affecte...
2641     paper introduces method efficiently inferring ...
2642     understanding structure zno surface reconstruc...
2643     paper consider problem determining two tensor ...
2644     quantile ratio index introduced prendergast st...
2645     paper considers practical scenario classical e...
2646     persistence diagram cohensteiner edelsbrunner ...
2647     firstorder optimization algorithms often prefe...
2648     datacenterbased cloud computing services provi...
2649     prove q power every complex irreducible repres...
2650     paper discuss application extreme value theory...
2651     help transfer entropy analyze information flow...
2652     many problems machine learning related applica...
2653     previous article derived detailed asymptotic e...
2654     work propose novel robot learning framework ca...
2655     scientific publishing conveys outputs academic...
2656     present multiquery recovery policy hybrid syst...
2657     tdistributed stochastic neighborhood embedding...
2658     winds arising galaxies star clusters active ga...
2659     neural models enjoy widespread use across vari...
2660     paper propose novel ranking framework collabor...
2661     paper introduces consensusbased primaldual met...
2662     proportional odds model gives method generatin...
2663     describe global embeddings fractional branes o...
2664     consider nilpotent element e simple complex li...
2665     consider problem proving point given set state...
2666     estimation logconcave density mathbbr canonica...
2667     metric graphs special types metric spaces used...
2668     critcal exponent omega evaluated ddimensions g...
2669     article presents framework develops formulatio...
2670     active learning relevant challenging highdimen...
2671     last decades psychologists developed sophistic...
2672     comprehensive two dimensional gas chromatograp...
2673     panel data analysis important topic statistics...
2674     order understand origin observed molecular clo...
2675     theoretically investigate dispersion polarizat...
2676     paper develop new approach discriminant comple...
2677     digraph corresponding every square matrix math...
2678     study loschmidt echo quenches open onedimensio...
2679     new prior proposed representation learning com...
2680     propose multiscale edgedetection algorithm sea...
2681     inspired recent work baoulina give simultaneou...
2682     paper study fractional poisson process fpp tim...
2683     adaptive fourier decomposition afd precisely a...
2684     due growth geotagged images recent web mobile ...
2685     electron cryotomography ect enables visualizat...
2686     use kotliarruckenstein slaveboson formalism st...
2687     schmerl beklemishevs work iterated reflection ...
2688     internet things iot next big evolutionary step...
2689     paper propose new approach cwikel estimates eu...
2690     uncertainty analysis form probabilistic foreca...
2691     asynchronousparallel algorithms potential vast...
2692     groundstate magnetic response fullerene molecu...
2693     show discrete distributions ddimensional nonne...
2694     incorporation macroactions temporally extended...
2695     current dominant visual processing paradigm hu...
2696     describe algorithms symbolic reasoning executa...
2697     timedomain global similarity tdgs method trans...
2698     dark matter interactions standard model partic...
2699     develop strong diagnostic bubbles crashes bitc...
2700     formaldehyde megamaser emission mapped three h...
2701     inference prediction control complex dynamical...
2702     paper presents new framework analysing forensi...
2703     ferromagnetic semiconductors fmss properties f...
2704     efficient extraction useful knowledge data sti...
2705     accretion planetary material onto host stars m...
2706     use cotrapped ion mathrmsr sympathetically coo...
2707     infraredir astronomical databases namely iras ...
2708     decisions machine learning ml models become ub...
2709     activity developed resource eu space awareness...
2710     work propose fit sparse logistic regression mo...
2711     study complexity approximating independent set...
2712     paper considers use machine learning ml medici...
2713     present nearinfrared direct imaging search acc...
2714     prove contact manifold admits open book decomp...
2715     usual condition volume geodesic ball close euc...
2716     uncertainty computation deep learning essentia...
2717     availability research datasets keystone health...
2718     deep learning models graphs achieved strong pe...
2719     energymomentum tensors electromagnetic field m...
2720     control electric currents solids origin modern...
2721     present results first measurements timecorrela...
2722     paper provides mathematical approach study met...
2723     ccs naveed et al presented first attacks effic...
2724     condensate spin atoms frozen unique spatial mo...
2725     empirically neural networks attempt learn prog...
2726     conducting large scale inference genomewide as...
2727     objects moving fluids experience patterns stre...
2728     recent studies show fast growing expansion win...
2729     shortcircuit evaluation denotes semantics prop...
2730     describe communication game conjecture game wh...
2731     finite field odd cardinality q show sequence i...
2732     present second cadence observations ngc chimer...
2733     bipartite networks manifest stream edges repre...
2734     background performance bugs lead severe issues...
2735     classical coupling constructions arrange copie...
2736     primary motivation much software analytics dec...
2737     increasing richness volume especially types da...
2738     taxi demand prediction important building bloc...
2739     explored optimal frequency interstellar photon...
2740     present asymptotic criterion determine optimal...
2741     note study seifert rational homology spheres t...
2742     investigate impact resonant gravitational wave...
2743     present detection longperiod rv variations hd ...
2744     personalized learning system needs large pool ...
2745     paper contribution study universal horn fragme...
2746     supermassive black hole smbh binaries residing...
2747     web applications require access filesystem man...
2748     fully realizing potential acceleration deep ne...
2749     physical layer security uplink wireless commun...
2750     develop new modeling framework intersubject an...
2751     nanoscale quantum probes nitrogenvacancy centr...
2752     optimization plays key role machine learning r...
2753     centrality metrics among main tools social net...
2754     removal noise typically correlated time wavele...
2755     understanding variations genome sequences assi...
2756     design reinforcement learning agents avoid cau...
2757     introduce state classification problem scp hyb...
2758     tree ensemble models random forests boosted tr...
2759     formalism augment classical models equation st...
2760     knowledge distillation kd consists transferrin...
2761     annual cost cybercrime global economy estimate...
2762     surface plasmon waves carry intrinsic transver...
2763     work introduce declarative statistics suite de...
2764     phase cresstii detector modules operated two y...
2765     problem construction ladder operators rational...
2766     classical principle probability theory suffici...
2767     synthesized new iron oxyarsenides klnfeaso ln ...
2768     present paper introduces initial implementatio...
2769     time projection chamber tpc chosen main tracki...
2770     classify invariants functor powers fundamental...
2771     paper first present adaptive distributed obser...
2772     recent results laca raeburn ramagge whittaker ...
2773     manufacture steel metals mainly cut shaped fab...
2774     recently shown architectural regularization re...
2775     define secondorder neural network stochastic g...
2776     word embeddings powerful approach unsupervised...
2777     analyse homotopy types gauge groups principal ...
2778     define integral form deformed walgebra type gl...
2779     aim paper present new logicbased understanding...
2780     plasmons collective excitations electrons bulk...
2781     describe procedure naturally associating relat...
2782     study challenges applying deep learning gene e...
2783     novel lowbandgap copolymer oligomers proposed ...
2784     propose efficient accurate measure ranking spr...
2785     paper study learn stochastic multimodal transi...
2786     publication trend physics education employing ...
2787     selforganization natural phenomenon emerges sy...
2788     finite abstract simplicial complex g defines t...
2789     chaos ergodicity cornerstones statistical phys...
2790     years many different indexing techniques searc...
2791     contour integration crucial technique many num...
2792     goal study develop efficient numerical algorit...
2793     goldstone modes massless particles resulting s...
2794     paper provides link causal inference machine l...
2795     traditional medicine typically applies onesize...
2796     leakage polarized galactic diffuse emission to...
2797     paper proposes joint framework wherein lifting...
2798     present working framework establish finite abe...
2799     investigate problem testing equivalence two di...
2800     physicallayer group secretkey gsk generation e...
2801     interactive reinforcement learning irl extends...
2802     south central american countries prepare incre...
2803     study systematically investigate impact class ...
2804     let gamma leq mathrmauttd times mathrmauttd gr...
2805     present paper algorithms solving stiff pdes un...
2806     machine learning algorithms prediction increas...
2807     introduction zwanzigmorigtzewlfle memory funct...
2808     multilabel learning problem large number label...
2809     correct one erroneous statement made recent pa...
2810     nextgeneration ax wlans make extensive use mul...
2811     belief three dimensional space infinite flat a...
2812     twinning important deformation mode hexagonal ...
2813     femtosecond optical pulses midinfrared frequen...
2814     optical diffraction tomography multiply scatte...
2815     optical tweezers enabled important insights in...
2816     essay investigate observational signatures loo...
2817     many modern machine learning applications stru...
2818     correlation networks used detect characteristi...
2819     existing neural conversational models process ...
2820     paper energy efficient power allocation downli...
2821     composite fermion cf formalism produces wave f...
2822     kcut problem given edgeweighted graph g intege...
2823     paper analyses detail dynamics neighbourhood g...
2824     paper deals existence regularity positive solu...
2825     among manifold takes world literature goal con...
2826     investigate task clustering deeplearning based...
2827     roles played learning memorization represent i...
2828     evaluating return ad spend roas causal effect ...
2829     nevilles algorithm known provide efficient num...
2830     traditional linear methods forecasting multiva...
2831     continually increasing number documents produc...
2832     present method efficient learning control poli...
2833     prove upper bounds mean square remainder prime...
2834     define novel extensional threevalued semantics...
2835     spectroscopic surveys require fast efficient a...
2836     microservice architecture msa novel servicebas...
2837     robojam machinelearning system generating musi...
2838     report measurements de haasvan alphen effect l...
2839     associate albert form pair cyclic algebras pri...
2840     nonlinear cyclic system delay overall negative...
2841     automatic welding tubular tky joints important...
2842     prove killing rate certain degreelowering recu...
2843     neural models become ubiquitous automatic spee...
2844     diffusion mri dmri valuable tool assessment ti...
2845     empirical risk minimization erm ubiquitous mac...
2846     deep learning searches nonlinear factors predi...
2847     admm popular algorithm solving convex optimiza...
2848     prove finite jet determination finitely smooth...
2849     present mathematical analysis nonconvex energy...
2850     inspired biophysical principles underlying non...
2851     entropy random variable wellknown equal expone...
2852     paper consider solving class nonconvex nonsmoo...
2853     paper present novel deep fusion architecture a...
2854     recently twodimensional canonical correlation ...
2855     wide adoption smartphones mobile applications ...
2856     hybridized moleculemetal interfaces ubiquitous...
2857     detection mostly geomagnetically generated rad...
2858     study regret guarantees nonstochastic multiarm...
2859     paper presents novel concept analyzes visualiz...
2860     study classes atomic models att countable comp...
2861     study problem estimating mean random vector x ...
2862     study problem containing epidemic spreading pr...
2863     paper investigate possibility applying plan tr...
2864     computer vision applications domain adaptation...
2865     among mobile cloud applications mobile cloud g...
2866     cosmic ray intensities cris recorded sixteen n...
2867     many developing countries public transit plays...
2868     consider class magnetic fields defined interio...
2869     lung diseases related bronchial airway structu...
2870     paper present design implementation robust mot...
2871     recent years number prominent computer scienti...
2872     number examples variations hodge structure max...
2873     recent results coupled temporal graphical mode...
2874     distributed algorithm described finding common...
2875     metric measure space treat set distributions l...
2876     distributed ledger technologies rely consensus...
2877     study complexity approximations normalized inf...
2878     training data rapid growth largescale parallel...
2879     hyperparameter tuning black art automatically ...
2880     present deep generalized canonical correlation...
2881     main question graphical models causal inferenc...
2882     give lower bound multipliers repelling periodi...
2883     show within linear approximation bcs theory we...
2884     predicting personality essential social applic...
2885     propose novel couple mappings method low resol...
2886     various sectors likely carry set emerging appl...
2887     let g circulant graph cns ssubseteq ldotsleft ...
2888     barrier options one widely traded exotic optio...
2889     generalizedensemble monte carlo simulations mu...
2890     compared positions gaia first data release dr ...
2891     analysis manifoldvalued data requires efficien...
2892     paper presents graph fourier transform gft sig...
2893     dempstershafer evidence theory wildly applied ...
2894     could use computer vision internet things usin...
2895     interpretability deep neural networks recently...
2896     graph matching two correlated random graphs re...
2897     semisupervised learning deals problem possible...
2898     obtain essential spectral gap convex cocompact...
2899     work several semantic approaches conceptbased ...
2900     start survey program using fors long slit spec...
2901     nin mathbbn let sn smallest number satisfying ...
2902     advection equation basis mathematical models c...
2903     functional time series become integral part fu...
2904     benfords law empirical observation first repor...
2905     synchronization occurs nonchaotic chaotic syst...
2906     deformation disordered solids relies swift loc...
2907     reproducing kernel hilbert space rkhs embeddin...
2908     work consider presence contrarian agents discr...
2909     develop unified valuation theory incorporates ...
2910     use trace class scattering theory exclude poss...
2911     weyl fermions shown exist inside parabolic ban...
2912     recent success deep neural networks dnns drast...
2913     despite long record intense efforts basic mech...
2914     paper addresses image classification learning ...
2915     recurrent neural nets rnn convolutional neural...
2916     derive new estimates number discrete eigenvalu...
2917     recently low displacement rank ldr matrices so...
2918     classification rules severely affected presenc...
2919     finding exact integrality gap alpha lp relaxat...
2920     gaussian mixture models widely used statistics...
2921     paper consider generalized extension eisenberg...
2922     intensionality phenomenon occurs logic computa...
2923     twopart paper details theory solvability power...
2924     neat result functional programming libraries p...
2925     article study role green function laplacian co...
2926     rising need secret image sharing high security...
2927     paper introduce matmpc open source software bu...
2928     propose copula based method handle missing val...
2929     cooling rotation vibration molecules broadband...
2930     numerous pattern recognition applications form...
2931     participating electricity markets owners batte...
2932     design analyse variations classical thompson s...
2933     experimentally study steady marangonidriven su...
2934     study asymptotic behavior homotopy groups simp...
2935     rectangle packing problems given task placing ...
2936     aim work study existence periodic solutions th...
2937     understanding entanglement structure outofequi...
2938     transfer learning potential reduce burden data...
2939     erdsginzburgziv constant abelian group g denot...
2940     success deep learning numerous application dom...
2941     show discourse structure defined rhetorical st...
2942     grid based binary holography gbh attractive me...
2943     present spatially spectrallyresolved observati...
2944     nowadays availability largescale data disparat...
2945     present homogeneous set accurate atmospheric p...
2946     procedure design fixedgain tracking filters us...
2947     magnetically active stars possess stellar wind...
2948     report electronic band structures concomitant ...
2949     given set data one central goal group clusters...
2950     active particles interact hydrodynamically dis...
2951     many applications machine learning example hea...
2952     experimentally study stability bosonic mottins...
2953     present scheme nanoscopic imaging quantum mech...
2954     present deep learning approach isic skin lesio...
2955     nonlinear dynamics lesser extent fields widely...
2956     ungrammatical sentence key cabinets table know...
2957     photographic dataset collected testing image p...
2958     human learning complex process future behavior...
2959     follow dual approach coxeter systems show weyl...
2960     emerging advancement branch autonomous robotic...
2961     game theory emerged novel approach coordinatio...
2962     advances deep learning led substantial increas...
2963     able fall safely necessary motor skill humanoi...
2964     collisional shift transition constitutes impor...
2965     generating music medleys finding optimal permu...
2966     investigate focusing coupled ptsymmetric nonlo...
2967     performed magnetic susceptibility heat capacit...
2968     goal paper present endtoend datadriven framewo...
2969     spirou near infrared spectropolarimeter destin...
2970     construct energydependent potentials schroedin...
2971     paper intended introduction algebraic geometry...
2972     principle common cause claims improbable coinc...
2973     report discovery analysis metalpoor damped lym...
2974     paper explore remarkable similarities multitra...
2975     existing works building soliton transmission s...
2976     paper concerned approach shape analysis based ...
2977     health economic evaluation studies widely used...
2978     today freshwater important ever contaminated t...
2979     despite appearance numerous new materials iron...
2980     study bulk surface nonlinear modes modified on...
2981     possibility topological kosterlitzthoulesskt t...
2982     short coherence lengths characteristic lowdime...
2983     work investigate potential tetragonal l ordere...
2984     joint value risk var expected shortfall es qua...
2985     paper addresses hydrodynamic behavior sphere c...
2986     many realworld binary classification tasks eg ...
2987     researchers attempted model information diffus...
2988     extended form classical polynomial cubic bspli...
2989     develop method study implied volatility exotic...
2990     consider problem designing risksensitive optim...
2991     one significant goals modern science establish...
2992     g algebraic group type al algebraically closed...
2993     report detection prebiotic molecule chnco sola...
2994     qualgebra g set two binary operations satisfy ...
2995     dimension reduction visualization staple data ...
2996     introduce new model building conditional gener...
2997     work build recent advances distributional rein...
2998     bacterial genome organized structure called nu...
2999     single equation system linear equations estima...
3000     consider spatially extended systems interactin...
3001     global historical climatology networkdaily dat...
3002     understanding mechanism heterojunction importa...
3003     two decades ago tsfasman boguslavsky conjectur...
3004     vortex refracts surface waves momentum flux ca...
3005     microtubules mts filamentous protein polymers ...
3006     intrinsic stacking fault energy isfe gamma mat...
3007     paper address problem electing committee among...
3008     estimating structure directed acyclic graphs d...
3009     consider problem efficient packet disseminatio...
3010     much attention given literature effects astrop...
3011     dna flexible molecule degree flexibility subje...
3012     although aviation accidents rare safety incide...
3013     adaptive optimization algorithms adam rmsprop ...
3014     modelbased optimization methods discriminative...
3015     effects spinorbit interactions condensed matte...
3016     paper study twosided tilting complexes preproj...
3017     propose analyze method semisupervised learning...
3018     staphylococcus aureus responsible nosocomial i...
3019     understanding ideas relate fundamental questio...
3020     paper presents general graph representation le...
3021     trajectory optimization controlled dynamical s...
3022     monolayer semiconductor transition metal dicha...
3023     policy evaluation value function qfunction app...
3024     prove c subsequence thuemorse sequence mathbf ...
3025     paper extends method introduced rivi et al b m...
3026     wigners little groups subgroups lorentz group ...
3027     present moa collaboration light curve data pla...
3028     develop nogo theorem twodimensional bosonic sy...
3029     neural networks function approximators achieve...
3030     polarised neutron diffraction measurements mad...
3031     paper generalize main result manifolds necessa...
3032     streaming graph graph formed sequence incoming...
3033     study existence multiplicity semiclassical sta...
3034     recently flourishing notable interest crystall...
3035     obtain minimal dimension matrix representation...
3036     motivated increasing integration among electri...
3037     providing diagnostic feedback growth crucial f...
3038     machine learning community become increasingly...
3039     simulation systems become essential component ...
3040     investigate schemetheoretic variant whitney co...
3041     vo samples grown different oxygen concentratio...
3042     present state interaction spinorbit coupling m...
3043     quantum transport studied nonequilibrium ander...
3044     correct classification breast cancer subtypes ...
3045     semilagrangian methods numerical methods desig...
3046     many studies undertaken using machine learning...
3047     nearestneighbor search dominates asymptotic co...
3048     minimal deterministic finite automaton dfa uni...
3049     applications deep learning big data analytics ...
3050     cryptography block ciphers fundamental element...
3051     present numerical studies two photonic crystal...
3052     paper extension monadic secondorder logic infi...
3053     calcium imaging data promises transform field ...
3054     sequential decision making problems structured...
3055     patientspecific cranial implants important nec...
3056     information concentration probability measures...
3057     paper give account dans reduction method reduc...
3058     compression neural networks nn become highly s...
3059     paper propose method designing lowdimensional ...
3060     modern large scale machine learning applicatio...
3061     bacterial communities rich social lives welles...
3062     study frobenius extensions freefiltered totall...
3063     consider burgers equation posed outer communic...
3064     describe markov latent state space mlss model ...
3065     new characterization cmorn established local m...
3066     show task question answering qa significantly ...
3067     define map fcolon xto phantom map relative map...
3068     current iso standards pertaining concepts syst...
3069     prove two main results concerning mesoprimary ...
3070     emerging economies frequently show large compo...
3071     find cusp densities hyperbolic knots sphere de...
3072     accurate ondevice keyword spotting kws low fal...
3073     paper presents new compact canonicalbased algo...
3074     generalize natural cross ratio ideal boundary ...
3075     previous work studied interconnected bursting ...
3076     introduce multiplexing crossing replacing clas...
3077     paper presents development adaptive algebraic ...
3078     investigate automatic differentiation hybrid m...
3079     initial rv characterisation enigmatic planet k...
3080     building effective enjoyable safe autonomous v...
3081     periodic array atomic sites described within t...
3082     paper proposes deep cerebellar model articulat...
3083     transient stability simulation largescale inte...
3084     web portals served excellent medium facilitate...
3085     role portfolio construction implementation equ...
3086     paper propose function space approach represen...
3087     construct model random groups rank show model ...
3088     theoretically study transport properties onedi...
3089     lasso elastic net linear regression models imp...
3090     el niosouthern oscillation enso mode interannu...
3091     one key challenges operations researchers solv...
3092     optimization algorithm hyperparameters crucial...
3093     paper develops detailed mathematical statistic...
3094     sum largedimensional random matrix polynomial ...
3095     composition web services promising approach en...
3096     present automatic measurement platform enables...
3097     jf aarnes introduced concept quasimeasures com...
3098     extend framework complexity operators analysis...
3099     deep generative models provide powerful tools ...
3100     advances deep learning natural images prompted...
3101     investigate frequentist properties bayesian pr...
3102     convex optimizationbased method proposed numer...
3103     enactive approach cognition typically proposed...
3104     study computable topological spaces semicomput...
3105     present theoretical experimental study boundar...
3106     dynamic secondary spectra many pulsars show ev...
3107     presented study parentteacher disruptive behav...
3108     poissonfermi model extension classical poisson...
3109     study several aspects recently introduced fixe...
3110     introduce coroica confoundingrobust independen...
3111     diversificationbased learning dbl derives coll...
3112     canonical correlation analysis family multivar...
3113     field braincomputer interfaces poised advance ...
3114     many phenomena collisionless plasma physics re...
3115     paper generalized notion lambdaradial contract...
3116     using probabilistic argument show second bound...
3117     programming computable functions pcf simplifie...
3118     analysis solar magnetic fields using observati...
3119     topological data analysis persistent homology ...
3120     study problem computing textscmaxima set n ddi...
3121     pointed nonsingular cosmological solutions sec...
3122     nmda receptors nmdar typically contribute exci...
3123     aligning sequencing reads graph representation...
3124     ensembles classifier models typically deliver ...
3125     rotating continuum particles attracted gravity...
3126     studied critical properties contact process sq...
3127     new strouhalreynolds number relationship stabr...
3128     randomizedfeature approach successfully employ...
3129     recent discovery direct link sharp peak electr...
3130     paper proposes new specification tests conditi...
3131     integrating different semiconductor materials ...
3132     survey main ideas early history subjects riema...
3133     paper investigate emerging application scene u...
3134     prove finitely generated field infinite perfec...
3135     paper considers version wiener filtering probl...
3136     robust navigation urban environments received ...
3137     report several purposes first report written i...
3138     paper studies density estimation pointwise los...
3139     let u complement smooth anticanonical divisor ...
3140     modelfree deep reinforcement learning shown ex...
3141     temporal cavity solitons cs optical pulses per...
3142     new system ivector speaker recognition based v...
3143     many machine learning models reformulated opti...
3144     define newman property bldmappings study conne...
3145     paper study variant framework online learning ...
3146     time series ts occur many scientific commercia...
3147     work investigate value employing deep learning...
3148     online programming discussion platforms stack ...
3149     prior works tallinn manual international law a...
3150     observe derived equivalent k surfaces isomorph...
3151     motivated recent advance machine learning usin...
3152     microplasma generation using microwaves electr...
3153     investigate banach algebras convolution operat...
3154     spiking neural networks snns possess energyeff...
3155     suicide important often misunderstood problem ...
3156     paper proposes principled information theoreti...
3157     twin support vector machines twsvms emerged ef...
3158     recurrent neural networks rnns powerful sequen...
3159     paper propose deep learning architectures fnn ...
3160     selfadmitted technical debt refers situations ...
3161     better understanding anticipation natural proc...
3162     given xsbeta sbetacolon xtimes xto xtimes x se...
3163     present new extensible divisible taxonomy open...
3164     create database composed hours multimodal reco...
3165     mobilephones facilitated creation fieldportabl...
3166     paper consider estimation problem concerning m...
3167     given conjunctive boolean network cbn n statev...
3168     starting summary detection statistics recent x...
3169     complex ornsteinuhlenbeck ou processes various...
3170     consider estimating parametric components semi...
3171     define dirac operators mathbbs mathbbr magneti...
3172     latent tree models graphical models defined tr...
3173     program synthesis process automatically transl...
3174     applications use human speech input require sp...
3175     let g sofic group let sigma sigmanngeq sofic a...
3176     visual localization mapping crucial capability...
3177     key problem research adversarial examples vuln...
3178     analysis airborne laser scanning als data ofte...
3179     study groundstate properties double layer grap...
3180     propose novel approach loss reserving based de...
3181     paper new distributed asynchronous algorithm p...
3182     developers concerned performance drop improvem...
3183     present novel controller synthesis approach di...
3184     recently research accelerated stochastic gradi...
3185     gradient reconstruction key process spatial ac...
3186     jordan decomposition theorem states every func...
3187     compute semiflat positive cone ksfathetasigma ...
3188     measured magnetization organic compound bipbno...
3189     class imbalance challenging issue practical cl...
3190     order handle undesirable failures multicopter ...
3191     method inverse design horizontal axis wind tur...
3192     report chandra xray observations optical weakl...
3193     introduce superdensity operators tool analyzin...
3194     study properties magnetic nanoparticles adsorb...
3195     introduce asymptotically unbiased estimator fu...
3196     counterfactual learning natural scenario impro...
3197     bit mersenne twister generator mt widely used ...
3198     numerical qcd often extremely resource demandi...
3199     electronic structure energetic stability abx h...
3200     highdimensional sparse linear models construct...
3201     core many important machine learning problems ...
3202     class imbalance classification challenging res...
3203     paper study problem discovering timeline event...
3204     study configuration spaces linkages whose unde...
3205     smallcluster exactdiagonalization calculations...
3206     process discovery techniques return process mo...
3207     formal languages theory useful study natural l...
3208     paper find upper bound cprank matrix tropical ...
3209     paper proposes new algorithm gaussian process ...
3210     pairwise comparisons important tool modern mul...
3211     study existence monotone heteroclinic travelin...
3212     describe method computer algebra helps laborio...
3213     paper describes micro fluorescence situ hybrid...
3214     neural timeseries data contain wide variety pr...
3215     describe two recently proposed machine learnin...
3216     polyphonic sound event detection polyphonic se...
3217     global gyrokinetic toroidal code gtc recently ...
3218     nanofabrication process realizing optical nano...
3219     consider connections among clumped residual al...
3220     rydberg atoms attracted considerable interest ...
3221     paper propose novel variable selection approac...
3222     background models cancerinduced neuropathy des...
3223     present novel method frequentist statistical i...
3224     massive network exploration important research...
3225     consider bradlow equation vortices recently fo...
3226     let piq arbitrary finite projective plane orde...
3227     following seminal work nesterov accelerated op...
3228     study conditions one able efficiently apply va...
3229     stability important aspect classification proc...
3230     paper analyze capacitary potential due charged...
3231     nongaussian component analysis ngca problem mu...
3232     recent years seen surprising connection physic...
3233     computational thinking ct described essential ...
3234     spincaloritronic signal generation due thermal...
3235     quantify uncertainties location magnitude extr...
3236     pollution urban centres becoming major societa...
3237     accretion phase corecollapse supernovae large ...
3238     positive p unlabeled u data binary classifier ...
3239     possibly unbiased selection process surveys su...
3240     fundamental goal network neuroscience understa...
3241     boundary behavior ring mappings riemannian man...
3242     recently cloud storage processing widely adopt...
3243     work provides simplified proof statistical min...
3244     becoming increasingly common see large collect...
3245     define abelian distribution study basic proper...
3246     introduce pulsedyn particle dynamics program c...
3247     paper presents design control model navigate d...
3248     big data sets must carefully partitioned stati...
3249     paper present family bivariate copulas transfo...
3250     machine learning extract information neural re...
3251     consider problem recovering lowrank matrix cli...
3252     supervised learning based deep neural network ...
3253     propose monte carlo algorithm sample highdimen...
3254     convolutional dictionary learning cdl estimate...
3255     paper derives new formulations designing domin...
3256     note present inftycategorical framework descen...
3257     relatively little attention incorporating ling...
3258     paper addresses boundary stabilization flexibl...
3259     study vertex colourings digraphs outneighbourh...
3260     locality sensitive hashing lsh based algorithm...
3261     group h non empty subset gammasubseteq h commu...
3262     using energy method investigate stability pure...
3263     present elementary proof conjecture proposed r...
3264     paper prove following pointwise curvaturefree ...
3265     report experimental results static magnetizati...
3266     investigate formation multiplecorehole states ...
3267     ideas enjoyed large impact deep learning convo...
3268     study ideal structure reduced crossed product ...
3269     understanding discovering knowledge gps global...
3270     focus two supervised visual reasoning tasks wh...
3271     offer proofs complete article introducing prop...
3272     lecture notes entanglement topological systems...
3273     paper study existence stability sense lyapunov...
3274     synthetic biological macromolecule magnetoferr...
3275     multispectral remote sensors eg quickbird ikon...
3276     empirical scoring functions based either molec...
3277     define lmeasure set dirichlet characters analo...
3278     present study superheating treatment applied r...
3279     discuss different types humanrobot interaction...
3280     background choosing performing method terms ou...
3281     contribution show access play strong role crea...
3282     work mainly consider dynamics scattering narro...
3283     incommensurately modulated twin structure nyer...
3284     cortex exhibits selfsustained highlyirregular ...
3285     paper deals relative normalizations skew ruled...
3286     gete wins renewed research interest due giant ...
3287     show theoretically phase interlayer exchange c...
3288     observations cmb today allow us answer detaile...
3289     describe parallel adaptive multiblock algorith...
3290     triangle counting key algorithm large graph an...
3291     growing importance utilization measuring brain...
3292     diet design vegetarian health challenging due ...
3293     show learning methods interpolating training d...
3294     search new frustrated magnetic systems signifi...
3295     previous cnnbased video superresolution approa...
3296     large organizations often users multiple sites...
3297     show results theory group automata monoid auto...
3298     multicarrierlow density spreading multiple acc...
3299     many important problems characterized eigenval...
3300     present distributed control strategy team quad...
3301     contribution widen scope extreme value analysi...
3302     describe mechanism artificial neural networks ...
3303     propose novel approach generation polyphonic m...
3304     following new microlensing constraint primordi...
3305     well known concept condition number kappaa aa ...
3306     paper study properties applications weighted h...
3307     honeycomb structures group iv elements host ma...
3308     motion electrons nuclei photochemical events o...
3309     advent public access small gatebased quantum p...
3310     previous works relationship hermites two appro...
3311     paper develop linear transfer perron frobenius...
3312     machine learning algorithms based deep neural ...
3313     analyze largescale data sets collaborations tw...
3314     study quantum tunnelling dantes inferno model ...
3315     highly automated robot ecologies hare societie...
3316     multilinear normal distribution widely used to...
3317     data driven activism attempts collect analyze ...
3318     deep convolutional neural networks achieved gr...
3319     nanographitic structures ngss multitude morpho...
3320     present first theoretical evidence zero magnet...
3321     present simple electromechanical finite differ...
3322     frustrated lewis pairs flps known ability capt...
3323     cataloging challenging crowded fields sources ...
3324     analyze local convergence proximal splitting a...
3325     causal relationships among variables commonly ...
3326     holy grail deep learning come automatic method...
3327     shown given ordered nodelabelled tree size n m...
3328     delay omnipresent modern control systems promp...
3329     paper discusses time series trend variability ...
3330     dietzfelbinger weidling dw proposed natural va...
3331     consider problem modeling memory discretestate...
3332     show closed almost khler manifold globally con...
3333     study consider preliminary test shrinkage esti...
3334     conventional fracture data collection methods ...
3335     influenza remains significant burden health sy...
3336     paper shows recover stochastic volatility mode...
3337     mobile edge computing mec expected effective s...
3338     given regular cardinal kappa kappakappakappa s...
3339     describe new training methodology generative a...
3340     supersymmetric theories gravitinos mass suppre...
3341     automatic abusive language detection difficult...
3342     show massive data compression algorithm moped ...
3343     electronic medical records emr contain longitu...
3344     examine knotted solutions simple hopfion point...
3345     present method automatically evaluates emotion...
3346     legal professionals worldwide currently trying...
3347     accurate modeling light scattering nanometer s...
3348     joselli et al introduced neighborhood grid dat...
3349     investigate structure join tensors may regarde...
3350     complex computer simulators increasingly used ...
3351     show equations reinforcement learning light tr...
3352     consider sparse highdimensional linear regress...
3353     several fundamental problems arise optimizatio...
3354     paper considers channel estimation uplink achi...
3355     investigate relationship several enumeration c...
3356     note investigate pdegree function elliptic cur...
3357     citey yin generalized definition wgraph ideal ...
3358     mazur rubin stein recently formulated series c...
3359     increasing demand formal methods design proces...
3360     study effects local perturbations dynamics dis...
3361     study indices geodesic central configurations ...
3362     controversy regarding precise nature hightempe...
3363     report raman sideband cooling single sodium at...
3364     meaningful climate predictions must accompanie...
3365     situational awareness vehicular networks could...
3366     spatialtemporal prediction fundamental problem...
3367     prove rungetype theorems universality results ...
3368     recent times use separable convolutions deep c...
3369     present recent improvements simulation regolit...
3370     recent years social bots using increasingly so...
3371     set smoothed particle hydrodynamics simulation...
3372     number formal methods exist capturing stimulus...
3373     propose analyze new estimator covariance matri...
3374     propose novel computational strategy de novo d...
3375     consider twoarmed bandit problem applied data ...
3376     accurate estimates mortality rate umr developi...
3377     strong external difference family sedf general...
3378     using multiple scattering theory algorithm inv...
3379     typically ai researchers roboticists try reali...
3380     consider schrdinger equation nondegenerate met...
3381     let fn denote nth term fibonacci sequence pape...
3382     social dilemmas regarded essence evolution gam...
3383     study diffusion heat equation finite dimension...
3384     work perform empirical comparison among ctc rn...
3385     combining shannons cryptography model assumpti...
3386     generative models either simple clustering alg...
3387     study spectral initialization method serves ke...
3388     generative adversarial networks gans become po...
3389     numerical approximation solution fokkerplanck ...
3390     interactive information retrieval researchers ...
3391     excited states polyatomic systems rather compl...
3392     work offers design video surveillance system b...
3393     recent work cohen emphet al achieved stateofth...
3394     catastrophic events though rare occur occur de...
3395     quantum anomalous hall qah phase novel topolog...
3396     automatic analysis ultrasound sequences substa...
3397     data analysis plays important role development...
3398     dynamics system general depends initial state ...
3399     study laserdriven isomerization reactions exci...
3400     paper theory quandle rings proposed quandles a...
3401     polynomial eigenvalue problem arises many appl...
3402     paper study teichmller harmonic map flow intro...
3403     note give nature action modular group ends inf...
3404     higher category theory use fibrations model pr...
3405     examined effects embedded pitch adapters signa...
3406     star clusters interact interstellar medium ism...
3407     present new method called analysisofmarginalta...
3408     shelf coastal sea processes extend atmosphere ...
3409     giornata sesta force percussion relatively les...
3410     brief introduction radar principles doppler ef...
3411     one challenges computational acoustics identif...
3412     paper strengthen splitting theorem proved prov...
3413     present approach building active agent learns ...
3414     significant parts recent learning literature s...
3415     paper introduces novel approach texture synthe...
3416     analyzing behaviour concurrent program made di...
3417     extended strongly periodic links introduced pr...
3418     past decade idea smart homes conceived potenti...
3419     deep learning models take weeks train single g...
3420     deduce simple closed formula illiquid corporat...
3421     long linear codes constructed toric varieties ...
3422     often challenge associated tasks like fraud sp...
3423     construct firstly complete list five quantum d...
3424     method control results gradient descent unsupe...
3425     graphs networks ubiquitous allow us model enti...
3426     disk migration higheccentricity migration two ...
3427     combination photometry spectroscopy spectropol...
3428     new majority minority voted redundancy mmr sch...
3429     present tight analysis wellstudied randomized ...
3430     using stateoftheart techniques combining imagi...
3431     according theory urban scaling urban indicator...
3432     living cells move thanks assemblies actin fila...
3433     increasing interest exploiting mobile sensing ...
3434     cardiac indices estimation great importance id...
3435     characterize certain noncommutative domains te...
3436     consider problem estimating regression functio...
3437     chimera states namely complex spatiotemporal p...
3438     technologies become important part lives steps...
3439     study neurallinear bandit model solving sequen...
3440     present twodimensional hydrodynamical simulati...
3441     firstpassage times random walks vast number di...
3442     video prediction active topic research past ye...
3443     paper cluster classical music pieces collected...
3444     random quantum spin models strong disorder per...
3445     introduce semisupervised discrete choice model...
3446     mean motion commensurabilities multiplanet sys...
3447     van der waals heterostructures periodic potent...
3448     conjecture bounded generalised polynomial func...
3449     give general sufficient conditions controller ...
3450     provide mathematical analysis thermodiffusive ...
3451     consider motion small bodies general relativit...
3452     impervious surface area direct consequence urb...
3453     study problem delta vlambda v v pvtext omega t...
3454     pca classical statistical technique whose simp...
3455     end user privacy critical concern organization...
3456     study orbital properties dark matter haloes co...
3457     paper concerned analysis heavytailed data port...
3458     studying internal structure complex samples li...
3459     verify conjecture perelman states exists canon...
3460     hyperuniform geometries feature correlated dis...
3461     paper proposes new loss using shorttime fourie...
3462     study continuum schrdinger operators real line...
3463     logdet distance two aligned dna sequences intr...
3464     paper focus construction numerical schemes non...
3465     several different modalities eg surgery chemot...
3466     great deal effort gone trying model social inf...
3467     study conditional independence relationships r...
3468     currentaided inertial navigation framework pro...
3469     february world health organization declared zi...
3470     lowenergy constants namely spin stiffness rhos...
3471     political social polarization significant caus...
3472     despite decades inquiry origin giant planets r...
3473     several applications slicing require program s...
3474     physicists large hadron collider lhc rely deta...
3475     study ancient khmer ephemerides described fren...
3476     modelbased compression effective facilitating ...
3477     matrix factorisation methods decompose multiva...
3478     developers often try find occurrences certain ...
3479     new method improve accuracy efficiency charact...
3480     examine growth evolution quenched galaxies muf...
3481     study su calorons also known periodic instanto...
3482     natural disasters catastrophic impacts functio...
3483     simultaneous localization mapping slam problem...
3484     study asynchronous online learning setting net...
3485     convolutional neural networks cnns massively i...
3486     study brauers longstanding kbconjecture number...
3487     sloan digital sky survey sdss first dense reds...
3488     compare global high resolution resistive magne...
3489     algorithms detecting communities complex netwo...
3490     paper investigates reverse auctions involve co...
3491     deterministic optimization line searches stand...
3492     hydrogen hdoped lafeaso prototypical ironbased...
3493     consider corotational wave maps dimensional mi...
3494     consider closed chain even number majorana zer...
3495     construct nonsemisimple tqfts yielding mapping...
3496     deep reinforcement learning rl recently emerge...
3497     games timing aim determine optimal defense str...
3498     humans adept recognizing class input instance ...
3499     new semiclassical divideandconquer method pres...
3500     letter establish yangian symmetry planar n sup...
3501     conventional dark matter direct detection expe...
3502     propose novel approach allocating resources ex...
3503     networks provide powerful formalism modeling c...
3504     minimal constructed language conlang useful ex...
3505     nonparametric models versatile albeit computat...
3506     anomaly detection ad garnered ample attention ...
3507     time reversal one intriguing yet elusive wave ...
3508     present series definitions theorems demonstrat...
3509     study global consequences halos spiral galaxie...
3510     propose new methods support vector machines sv...
3511     show limiting semiclassical measure obtained s...
3512     atmospheric moist available potential energy m...
3513     many seminal results interactive proofs ips us...
3514     quantum magnetic phases near magnetic saturati...
3515     consider problem finding local minimizers nonc...
3516     syntax errors generally easy fix humans parser...
3517     predicting popularity news article challenging...
3518     paper give negative answer problem presented b...
3519     forecasts mortality provide vital information ...
3520     machine learning usually defined behaviourist ...
3521     acoustic wave attenuation due vibrational rota...
3522     lagrangian fluctuationdissipation relation der...
3523     paper examines limit properties information cr...
3524     density estimation fundamental problem statist...
3525     existing strategies finitearmed stochastic ban...
3526     asynchronous parallel computing sparse recover...
3527     stateoftheart neural networks vulnerable adver...
3528     one challenges testing gravity cosmology vast ...
3529     let free hyperplane arrangement ziegler showed...
3530     integration iiiv silicon still hot topic open ...
3531     volume contains selection papers presented xvi...
3532     investigate asymptotic behavior sequences gene...
3533     canards special solutions ordinary differentia...
3534     paper study selected argument forms involving ...
3535     propose dtcwt scatternet convolutional neural ...
3536     let taun number divisors n give elementary pro...
3537     study present preliminary test steintype posit...
3538     present efficient coresetsbased neural network...
3539     active galactic nuclei agn energetic astrophys...
3540     recent result characterizes fully order revers...
3541     optimization composition processing obtain mat...
3542     consider noncrossing set partitions nelement s...
3543     paper focus finding clusters partially categor...
3544     large bundles myelinated axons called white ma...
3545     present strengthening lemma lower bound slice ...
3546     functional analysis variance fanova hilbertval...
3547     present method gets input audio violin piano p...
3548     identifying causal relationships observational...
3549     telepresence necessity present time cant reach...
3550     industry video content providers vod iptv pred...
3551     prove following continuous analogue vaughts tw...
3552     present novel method measure precisely relativ...
3553     show mntz spaces subspaces c contain asymptoti...
3554     article describes sequence rational functions ...
3555     analyze new farultraviolet spectra quasars z c...
3556     quaternionic tori defined quotients skew field...
3557     danish computer gier played vital role develop...
3558     several recent papers investigate active learn...
3559     write unified fashion using rp q random coding...
3560     rising topic computational journalism enhance ...
3561     paper introduce certain nth order nonlinear lo...
3562     robots begin cohabit humans semistructured env...
3563     pursue novel morphometric analysis detect sour...
3564     work develops tracking system based eventbased...
3565     present efficient score statistic called texts...
3566     increase network connectivity also resulted se...
3567     increasing popularity smart devices rumors mul...
3568     ricci iteration discrete analogue ricci flow a...
3569     rna sequencing allows one study allelic imbala...
3570     boundtobound data collaboration bbdc provides ...
3571     hydra headeronly templated ccompliant framewor...
3572     deep learning stateoftheart fields visual obje...
3573     mounting evidence connects biomechanical prope...
3574     message passing interface mpi standard paradig...
3575     modified cholesky decomposition commonly used ...
3576     comment reinharts review selfexciting spatiote...
3577     compared magnetic transport galvanomagnetic sp...
3578     paper present conjoined constraints several co...
3579     dynamics circular thin vortex ring sphere movi...
3580     measurements sigma large scale structure obser...
3581     invoke gaussian mixture model gmm jointly anal...
3582     present quantum repeater scheme based individu...
3583     recent years logic questions dependencies inve...
3584     strong demand precise means comparison logics ...
3585     paper considers utility optimal power control ...
3586     magnetic frustration low dimensionality preven...
3587     gaussian processes popular flexible models spa...
3588     attempt elucidate operating voltage increase i...
3589     many theories emerged investigate variance gen...
3590     show every finitely generated closed subgroup ...
3591     convolutional sparse representations form spar...
3592     suppose future technology enables consciously ...
3593     present results directimaging survey large sep...
3594     dimension key measure complexity partially ord...
3595     define emphvisual complexity plane graph drawi...
3596     report new multicolour photometry highresoluti...
3597     success various applications including robotic...
3598     defect valued field extensions major obstacle ...
3599     neural networks known vulnerable adversarial e...
3600     study statistical properties estimator derived...
3601     paper investigate multivariate sequence classi...
3602     virtual network vn contains collection virtual...
3603     propose communicationally computationally effi...
3604     extraction natural gas earth shown governed di...
3605     present numerical simulations magnetic billiar...
3606     wellknow drawback lpenalized estimators system...
3607     using supercharacter theory identify matrices ...
3608     study asymptotic behavior max kappacut family ...
3609     topological data analysis emerging mathematica...
3610     exponentialtime hypothesis eth states sat solv...
3611     propose structured low rank matrix completion ...
3612     article lays foundations study modular forms t...
3613     research uav scheduling obtained emerging inte...
3614     report temperature dependence dc magnetization...
3615     develop assumeguarantee contract framework des...
3616     paper presents active search trajectory synthe...
3617     recent years optical control exchange interact...
3618     predictive power neural networks often costs m...
3619     tracking controlling shape continuum dexterous...
3620     paper present new results existence solutions ...
3621     increasing accuracy automatic chord estimation...
3622     blooms taxonomy bt used classify objectives le...
3623     need test whether two random vectors independe...
3624     report measurements magnetoresistance charge d...
3625     paper introduces two classes totally real quar...
3626     present elementary foundational results concer...
3627     hidden truncation hyperbolic hth distribution ...
3628     reinvestigate claimed sample xray detected act...
3629     present new approach testing filesystem crash ...
3630     paper construct entire solutions cahnhilliard ...
3631     wave turbulence equation effective kinetic equ...
3632     multilabel text classification popular machine...
3633     consider network design problem random arc cap...
3634     consider infinite chain masses connected neare...
3635     general procedure underlying hartreefock kohns...
3636     recent studies suggest quenching properties ga...
3637     young starburst galaxies xray population expec...
3638     paper present concolic execution technique det...
3639     innovation entrepreneurship special role play ...
3640     exact law fully developed homogeneous compress...
3641     cmshf calorimeters undergoing major upgrade la...
3642     ambitious goals precision cosmology widefield ...
3643     present results noncosmological threedimension...
3644     causal inference multivariate time series chal...
3645     differential privacy promises enable general d...
3646     industrie originally future vision described h...
3647     future wireless systems expected provide wide ...
3648     show ck diffeomorphism ktorus semiconjugate mi...
3649     provide excess risk guarantees statistical lea...
3650     study inference model dynamic networks communi...
3651     available possibilities prevent biped robot fa...
3652     key challenge modern bayesian statistics perfo...
3653     method determining quantum variance asymptotic...
3654     virtual heart models proposed enhance safety i...
3655     consistency bootstrap resampling scheme classi...
3656     dynamic scaling analyses linear nonlinear ac s...
3657     bayesian hierarchical models used share inform...
3658     adapt pingpong lemma historically used study f...
3659     codrep machine learning competition source cod...
3660     mixed volumes vkdots kd convex bodies kdots kd...
3661     recently significant interest hard attention m...
3662     many problems signal processing require findin...
3663     hybrid quantum mechanicalmolecular mechanical ...
3664     study develop theoretical model strategic equi...
3665     multicore cpus standard component many modern ...
3666     lowrank modeling plays pivotal role signal pro...
3667     accurate delineation left ventricle lv importa...
3668     jacobianbased saliency map attack family adver...
3669     reinforcement learning rl successfully used so...
3670     bl lacertae prototype blazar subclass known bl...
3671     experiment theory indicate upt topological sup...
3672     appearance nanojet microsphere optical experim...
3673     define triangulated factorization systems tria...
3674     cloud storage services become accessible used ...
3675     consider twodimensional dirac quantum ring sys...
3676     study arithmetically cohenmacaulay acm propert...
3677     point clouds obtained photogrammetry noisy inc...
3678     unique information ui information measure quan...
3679     study distributionally robust optimization dro...
3680     privacy major issue learning distributed data ...
3681     paper deals establishment inputtostate stabili...
3682     neural machine translation nmt recently become...
3683     bayesian networks directed acyclic graph dag m...
3684     present triviaqa challenging reading comprehen...
3685     many people dream become famous youtube video ...
3686     work introduce class hrmmnconvex functions gen...
3687     achieving high performance sparse applications...
3688     pressure increase graduation rates reduce time...
3689     meteoritic abundances rprocess elements analyz...
3690     present savitr system leverages information po...
3691     resonances associated fractional damped oscill...
3692     let xldotsxn iid sample mathbbrp zero mean cov...
3693     locally recoverable code code finite alphabet ...
3694     following text introduce specification propert...
3695     report discovery tidal tails around two outer ...
3696     propose scheduled auxiliary control sacx new l...
3697     describe generalization hierarchical dirichlet...
3698     framework shape constrained estimation review ...
3699     paper explored effects dissipation dynamics ch...
3700     subject polynomiography deals algorithmic visu...
3701     brainer using bicycles commute sustainable for...
3702     define kind moduli space nested surfaces mappi...
3703     manually labeled corpora expensive create ofte...
3704     spectral topic modeling algorithms operate mat...
3705     future observations terrestrial exoplanet atmo...
3706     although definition empathetic preferences exa...
3707     construct noncommutative analogs transport map...
3708     support vector data description svdd popular a...
3709     trigonal phase existing small patches chemical...
3710     study problem estimating unknown vector theta ...
3711     labeled graph calgebra mean calgebra associate...
3712     diabetes leading worldwide public health conce...
3713     recent years randomized methods numerical line...
3714     results investigations nearhorizontal muons ra...
3715     demand lowdissipation nanoscale memory devices...
3716     licas lightweight internetbased communication ...
3717     paper introduce new technique determining nece...
3718     manuscript preprint version part general intro...
3719     describe general multilevel monte carlo method...
3720     sensing magnetic fields important applications...
3721     century believed hydraulic jumps created due g...
3722     sexual violence product organized crime social...
3723     investigate problem truth discovery based opin...
3724     document presents hips hierarchical scheme des...
3725     applying deep learning methods mammography ass...
3726     order optimize performance crv reflection stud...
3727     linear parametervarying lpv models form powerf...
3728     perform set general relativistic radiative mag...
3729     correlated oxide heterostructures pose challen...
3730     two stateoftheart implementations boosted tree...
3731     consider task automated estimation facial expr...
3732     ages masses young stars often estimated compar...
3733     report study structural phase transitions indu...
3734     solution path fused lasso ndimensional input p...
3735     hydrogenrich compounds important understanding...
3736     future circular collider fcc currently design ...
3737     let xitx denote spacetime white noise consider...
3738     arbitrary group g shown either semigroup rank ...
3739     starting dataset inputoutput time series gener...
3740     paper propose kneelike approximation lateral d...
3741     study alloy phasefield model used simulate sol...
3742     previously proposed partial quantile regressio...
3743     present pfdcmss novel messagepassing based par...
3744     minkowski inequality classical inequality diff...
3745     paper studies concept instantaneous arbitrage ...
3746     study complexity approximating wassertein bary...
3747     modern implicit generative models generative a...
3748     transfer learning leverages knowledge one doma...
3749     develop new class path transformations onedime...
3750     visual representation concepts ideas use simpl...
3751     schmidts game generally used deduce qualitativ...
3752     locally checkable labeling lcl problems includ...
3753     paper propose novel continuous authentication ...
3754     cmorder reduced order equipped involution mimi...
3755     crosscorrelations activity neural networks com...
3756     despite fact json currently one popular format...
3757     present study introduce human capital componen...
3758     diffusion tensor imaging dti high angular reso...
3759     paper presents new multiobjective deep reinfor...
3760     finding optimal correction errors generic stab...
3761     finding semantically rich computerunderstandab...
3762     safe natural effective humanrobot social inter...
3763     continuoustime trajectory representations powe...
3764     paper consider testing homogeneity proportions...
3765     exhibit borel probability measures unit sphere...
3766     pca one widely used dimension reduction techni...
3767     associating image regions text queries recentl...
3768     open closed textitsymmetrized polydisc textits...
3769     partial differential equations distributional ...
3770     fracton order new kind quantum order character...
3771     minseiscluster optimization problem aims minim...
3772     statistical distribution galaxies powerful pro...
3773     causal mediation analysis improve understandin...
3774     finding intermediatemass black hole imbh globu...
3775     successful grasp requires careful balancing co...
3776     let mathcala calgebra bounded uniformly contin...
3777     present shrinking horizon model predictive con...
3778     scientific evaluation determinant scientists i...
3779     topological effects typically discussed contex...
3780     high degree consensus exists climate sciences ...
3781     convex body chasing problem given initial poin...
3782     introduce notion cocycleinduction strong unifo...
3783     auxiliary variables often needed verifying imp...
3784     paper present homological model coloured jones...
3785     contribution concerned asymptotic behaviour ut...
3786     paper proposes novel tests absence jumps univa...
3787     deriving optimal safety stock quantity meet cu...
3788     article prove carleman estimates generalized t...
3789     unsupervised domain mapping attracted substant...
3790     spin wolfrayet wr stars low metallicity z rele...
3791     surprisingly little known agenda setting inter...
3792     complex networks often used represent systems ...
3793     choice tuning parameter bayesian variable sele...
3794     introduce metric mutual energy adelic measures...
3795     volvox barberi multicellular green alga formin...
3796     accuracy one basic principles journalism howev...
3797     recently become possible study dynamics inform...
3798     set called recurrent minimal automaton strongl...
3799     paper presents concept situ fabricator mobile ...
3800     describe road led construction exploitation el...
3801     consider ample globally generated line bundle ...
3802     propose method recognizing moving vehicles usi...
3803     study principal component analysis pca mean ze...
3804     aim paper give short overview error bounds pro...
3805     introduce variational obstacle avoidance probl...
3806     paper introduces extension herons formula appr...
3807     representation learning rl make learned repres...
3808     distributed storage systems suffer significant...
3809     report optimization process synthesize epitaxi...
3810     dedicated solar radio interferometer mingantu ...
3811     present deep voice fullyconvolutional attentio...
3812     every year million newborns die within first m...
3813     propose novel fluidstructure interaction fsi s...
3814     article advance divideandconquer strategies so...
3815     robust fast motion estimation mapping key prer...
3816     existing theories dark energy andor modified g...
3817     video analytics requires operating large amoun...
3818     recent development largescale question answeri...
3819     introducing inequality constraints gaussian pr...
3820     cyclic codes various generalizations quasitwis...
3821     method efficiently successive cancellation sc ...
3822     openml online machine learning platform resear...
3823     cultural activity inherent aspect urban life s...
3824     accurate measurements physical structure proto...
3825     conditional expectiles becoming increasingly i...
3826     choice solid system makes adopting crystal str...
3827     paper presents alternative approach pvalues re...
3828     image registration process aligning two images...
3829     work initiates general study learning generali...
3830     graph hfree induced subgraph isomorphic h char...
3831     design electrically driven quantum dot devices...
3832     paper studies directed exploration reinforceme...
3833     bayesian models mix multiple dirichlet prior p...
3834     present new matched filter algorithm direct de...
3835     nonlte radiative transfer problems computation...
3836     recently several test case prioritization tcp ...
3837     magnetism mnsite investigated using thermodyna...
3838     big data phenomenon spawned largescale linear ...
3839     work concerned unique combination high order l...
3840     paper deep domain adaptation based method vide...
3841     ambient conditions directly observed nacl crys...
3842     development plasmonic metamaterial devices req...
3843     study andersonlike localization transition spe...
3844     recent developments specialized computer hardw...
3845     dynamic mode decomposition dmd emerged powerfu...
3846     social relationships divided different classes...
3847     construct linear system nonlocal game played p...
3848     note corrects mistakes splicing formulas paper...
3849     show tight upper lower bounds switching lemmas...
3850     kinetic effects electrons important long wavel...
3851     major bottleneck developing general reinforcem...
3852     developing intelligent vehicle perform humanli...
3853     much energy consumed inference made convolutio...
3854     investigate association musical chords lyrics ...
3855     propose general algorithm compute symmetry cla...
3856     using cohomological methods prove criterion em...
3857     generators classical specht module satisfy int...
3858     paper investigate cauchy problem nonhomogeneou...
3859     paper describe two fully mass conservative ene...
3860     paper concerned problem creating flattening ma...
3861     batygin brown suggested existence new solar sy...
3862     propose fast method statistical guarantees lea...
3863     prove existence results small presentations mo...
3864     image matting longstanding problem computation...
3865     present combined chandra swiftbat spectral ana...
3866     lisa proposed spacebased laser interferometer ...
3867     generative adversarial networks gans shown rem...
3868     provide examples operators tdv decaying potent...
3869     real human robot interaction hri scenarios spe...
3870     present deterministic algorithm russian inflec...
3871     objective clinical decision support tool autom...
3872     concept mean different things instantiated dif...
3873     hanzer matic proved genuine unitary principal ...
3874     article explores geometric algebra minkowski s...
3875     concerned unbounded sets mathbbrn whose bounda...
3876     mathematical models physiological processes ai...
3877     provide derivation poisson multibernoulli mixt...
3878     surface properties examined chiral dwave super...
3879     modern threats emerged prevalence social netwo...
3880     contribution ions antiferromagnetism laxaexcuo...
3881     networks describe range social biological tech...
3882     used multiplescale homogenization method deriv...
3883     mobile network operators track subscribers via...
3884     taipan multiobject spectroscopic galaxy survey...
3885     online learning algorithms widely used power s...
3886     paper concerned blowup phenomena initial value...
3887     object present paper study invariant submanifo...
3888     dynamic epidemic models proven valuable public...
3889     paper considers problem designing maximum dist...
3890     emphword problem group g langle sigma rangle d...
3891     models econophysics ie emerging field statisti...
3892     spatially extended population dynamics models ...
3893     consider problem learning policy markov decisi...
3894     autonomous vehicles become everyday reality hi...
3895     finite word closed contains factor occurs pref...
3896     construct continuous time model pricemediated ...
3897     dergachev kirillov introduced subalgebras seaw...
3898     let evendimensional oriented closed manifold s...
3899     transformation models important tool applied s...
3900     study polynomial generalizations kontsevich au...
3901     coordinate descent methods employ random parti...
3902     stochasticity limited precision synaptic weigh...
3903     congruence surface grassmannian mathrmgrmathbb...
3904     investigate behavior deviation estimator densi...
3905     paper prove pointwise convergence rate pointwi...
3906     give criterion characterizes homogeneous real ...
3907     moon often appears larger near perceptual hori...
3908     study fielddriven magnetic domain wall dynamic...
3909     show uct problem separable nuclear mathrm calg...
3910     recent outbreaks ebola hn infectious diseases ...
3911     investigate entanglement properties infinite c...
3912     present nonlocal electrostatic formulation non...
3913     transfer learning borrows knowledge source dom...
3914     although property strong metric subregularity ...
3915     present silverrush program strategy clustering...
3916     magnetosphere ion kinetic scales minimagnetosp...
3917     study soliton solutions matrix kadomtsevpetvia...
3918     lowpower widearea networks lpwans successfully...
3919     compacted tree graph created binary tree repea...
3920     pixel detector pxl heavy flavor tracker hft st...
3921     let cbf n complete intersection monomial curve...
3922     dynamics quantum vortex torus knot cal tpq sim...
3923     quantumdot cellular automata qca likely candid...
3924     two major momentumbased techniques achieved tr...
3925     give characterizations finite group g acting s...
3926     paper biderivations without skewsymmetric cond...
3927     residents flint learned lead contaminated wate...
3928     paper introduce stochastic projected subgradie...
3929     compute integral function expectation random v...
3930     address problem emphinstance label stability m...
3931     computational procedures foresee structure apt...
3932     paper propose finite element method solving el...
3933     paper introduces new probabilistic architectur...
3934     energetic particle environment martian surface...
3935     growth variety volume oltp online transaction ...
3936     recently social media seen promote democratic ...
3937     local event detection use posting messages geo...
3938     prove given closure function smallest preimage...
3939     evolutionary games graphs describe strategic i...
3940     focus analysis planar shapes solid objects thi...
3941     learning domaininvariant representations conte...
3942     encoderdecoder networks using convolutional ne...
3943     shufflenet stateoftheart light weight convolut...
3944     failure observed primary concern developer ide...
3945     volume contains final revised selection papers...
3946     recent observations lensed galaxies cosmologic...
3947     graph laplacian standard tool data science mac...
3948     paper propose modified version simulated annea...
3949     major histocompatibility complex class two mhc...
3950     speechreading task inferring phonetic informat...
3951     fedotovite kcuoso candidate new quantum spin s...
3952     call simple abelian variety mathbbfp superisol...
3953     multivariate techniques based engineered featu...
3954     tangent measure blowup methods powerful tools ...
3955     programmers often write code similarity existi...
3956     paper shall prove equality zetanzetanzetan con...
3957     demonstrate subpicosecond wavelength conversio...
3958     paper develop new accelerated stochastic gradi...
3959     mapreduce popular programming paradigm develop...
3960     paper propose unified view gradientbased algor...
3961     almost three decades taup conference seen rema...
3962     diagnosis risk stratification cancer many dise...
3963     paper notion lmfuzzy convex structures introdu...
3964     paper presents passive compliance control aeri...
3965     paper consider phase retrieval problem herglot...
3966     family subsets ldotsn called intersecting two ...
3967     magnetic skyrmions swirling spin textures topo...
3968     training deep neural network policies endtoend...
3969     interpretability become important issue machin...
3970     propose optimal sequential methodology obtaini...
3971     linear boltzmann equation nonautonomous collis...
3972     ngeq qgeq prove sc equality function n n varia...
3973     deconfined quantum critical point qcp separati...
3974     deep learning become state art approach many m...
3975     letter prove unrolled small quantum group appe...
3976     increasing safety automation transportation sy...
3977     advent numerous online content providers utili...
3978     accurately predicting detecting interstitial l...
3979     study whether depth two neural network learn a...
3980     since development higher local class field the...
3981     classic algorithm bodlaender kloks j algorithm...
3982     let tii sequence independent identically distr...
3983     paper presents intelligent home energy managem...
3984     paper develops general framework learning inte...
3985     investigate use optimization compute bounds ex...
3986     develop parametric classes covariance function...
3987     cell injection technique domain biological cel...
3988     present visually grounded model speech percept...
3989     paper considers challenging task longterm vide...
3990     cooperation difficult proposition face darwini...
3991     consider parabolicelliptic model chemotaxis fr...
3992     microservice architectures potential increase ...
3993     stronginteraction limit hohenbergkohn function...
3994     coupling reynolds rayleighplesset equations us...
3995     stateoftheart algorithms sparse subspace clust...
3996     steady state superconducting tokamak sst insti...
3997     pseudoone dimensional pseudod materials newcla...
3998     paper outlines methodological approach designi...
3999     frankwolfe fw algorithm widely used solving nu...
4000     probability simplex consider standard informat...
4001     search unconventional magnetic nonmagnetic sta...
4002     wide variety phenomena engineering scientific ...
4003     endogenous adaptation agents may adjust local ...
4004     although existence quasibound rotational level...
4005     dark ages universe end formation first generat...
4006     project propose novel approach estimating dept...
4007     paper consider problem machine teaching invers...
4008     directed latent variable models formulate join...
4009     graph g let oddg omegag denote number odd comp...
4010     gradient boosting stateoftheart prediction tec...
4011     decentralized payment system secure transactio...
4012     let n two monomials degree let smallest borel ...
4013     give new expression law eigenvalues discrete a...
4014     given curve defined algebraically closed field...
4015     consider importance sampling estimate probabil...
4016     network studies rely observed network differs ...
4017     let cal x xxprime random matrix associated cen...
4018     bandwidth selection crucial kernel estimation ...
4019     immunogenicity major problem development bioth...
4020     probit regression first proposed bliss study m...
4021     paper first prove diophantine system fzfxfyfuf...
4022     lot scientific works published different areas...
4023                       main theorem incorrectly stated
4024     study fractional quantum hall states filling f...
4025     prove artin groups class containing largetype ...
4026     chemotactic dynamics cells organisms specializ...
4027     general procedure constructing yetterdrinfeld ...
4028     present method reconstruct autocorrelated sign...
4029     optimizationbased approach tucker tensor appro...
4030     optical absorption cdwo reported high pressure...
4031     convolutional neural networks cnns recently em...
4032     paper study right snoetherian rings modules ex...
4033     oddball paradigm widely applied investigation ...
4034     common problem machine learning rank set n ite...
4035     human activities hunting emailing performed fr...
4036     paper problem selecting p n available items di...
4037     study anisotropic undersampling schemes like u...
4038     given graph sparsest cut problem asks subset v...
4039     paper propose welljustified synthetic approach...
4040     recent stacking analysis planck hfi data galax...
4041     background modelbased analysis movements help ...
4042     study propose new statical approach highdimens...
4043     recent direct observation gravitational waves ...
4044     formally invoking wienerhopf method explicitly...
4045     humans remarkably proficient controlling limbs...
4046     consider point blowup manifold times sigma opl...
4047     present investigation development axial veloci...
4048     describe method identify poor households datas...
4049     recent research computational linguistics deve...
4050     ponzi schemes financial frauds promise high pr...
4051     well known challenging train deep neural netwo...
4052     typical neural machine translationnmt decoder ...
4053     deep neural networks dnn excel extracting patt...
4054     paper introduce algorithm performing spectral ...
4055     advances mobile computing technologies made po...
4056     interfacing ferromagnet polarized ferroelectri...
4057     combining bulk sensitive softxray angularresol...
4058     consider multiagent stochastic optimization pr...
4059     let mathbbfq denote finite field order q n pos...
4060     bilinear models provide appealing framework mi...
4061     two new highprecision measurements deuterium a...
4062     paper proposes scalable algorithmic framework ...
4063     introduce first index built time text length n...
4064     study temperature dependence rashbasplit bands...
4065     give definition viscosity solution minimal sur...
4066     recently introduced acoustic raytracing semicl...
4067     world wide web conference wellestablished matu...
4068     semitutorial paper first review informationthe...
4069     consider generalized milne problem nonconserva...
4070     work exploit agglomeration based hmultigrid pr...
4071     study detect clusters graph defined stream edg...
4072     construct fundamental solutions secondorder pa...
4073     gauge invariance sachswolfe formula describing...
4074     noisy matrix completion problem aims recover l...
4075     q polynomial integer coefficients x geq prove ...
4076     implementing modal method electromagnetic grat...
4077     give abstract formulation formal theory partia...
4078     distribution matter universe first order logno...
4079     workhorse theories throughout physics derive e...
4080     accurate noise modelling important training de...
4081     paper introduce unbiased gradient simulation a...
4082     robots ability understand ground natural langu...
4083     growing demand efficient distributed optimizat...
4084     analysis neuroimaging data poses several stron...
4085     wet etching essential complex step semiconduct...
4086     inherently abstract nature source code makes p...
4087     selfnested trees present systematic form redun...
4088     let g connected complex reductive algebraic gr...
4089     paper propose improvement flowpipeconstruction...
4090     give necessary sufficient condition maximum pr...
4091     modern stream cipher many algorithms zuc lte e...
4092     telecommunications industry highly competitive...
4093     vital aspect energy storage planning operation...
4094     present results experiment showing first succe...
4095     show fundamental groups compact orientable irr...
4096     pseudoscalars garret sobczyks paper emphsimpli...
4097     determine information scrambling rate lambdal ...
4098     recent years deep neural networks yielded stat...
4099     influence surface curvature surface tension sm...
4100     many supervised learning tasks emerged dual fo...
4101     graph said symmetric automorphism group transi...
4102     run time many scientific computation applicati...
4103     applications deep reinforcement learning robot...
4104     paper investigate hawking radiation process se...
4105     openmp shared memory programming model support...
4106     recent years image processing techniques used ...
4107     semisupervised node classification graphs fund...
4108     candecompparafac cp tensor decomposition popul...
4109     given increasing competition mobile app ecosys...
4110     paper studies problem remote state estimation ...
4111     goal network representation learning learn low...
4112     manipulating focusing light deep inside biolog...
4113     competition spinorbit coupling bandwidth w ele...
4114     protoplanetary disks undergo substantial massl...
4115     study spatiotemporal instability generated uni...
4116     find spectral curves corresponding known ratio...
4117     prove critical metric volume functional fourdi...
4118     present deep neural architecture parses senten...
4119     chentsovs theorem characterizes fisher informa...
4120     direct band gap character large spinorbit spli...
4121     consider problem finding minimizer function f ...
4122     paper first work propose network predict struc...
4123     starting pioneering works shannon weiner pleth...
4124     short overview demystifying midi audio format ...
4125     develop first bayesian optimization algorithm ...
4126     optical observations wide fields view encounte...
4127     multientity dependence learning medl explores ...
4128     simpletriangle graph intersection graph triang...
4129     paper generalize normalized gradient flow meth...
4130     show nontrivial hahn field truncation primitiv...
4131     laser communication advances compared radio fr...
4132     paper introduces first deep neural networkbase...
4133     although adverse effects attacks acknowledged ...
4134     conservative scheme formulated verified gyroki...
4135     study variant stochastic multiarmed bandit mab...
4136     energy consumption hot water production major ...
4137     selfadaptive system sas capable adjusting beha...
4138     intelligent transportation system targets coor...
4139     npolar gan pn diodes realized singlecrystal np...
4140     particle identification belle ii experiment pr...
4141     paper presents easy efficient face detection f...
4142     conventional decision trees number favorable p...
4143     topological shape analysis proposed utilized l...
4144     existing methods arterial blood pressure bp es...
4145     explore ramifications arising superflares evol...
4146     quantum fluctuations frustration trigger quant...
4147     novel solution obtained solve rigid registrati...
4148     enhanced mobile broadband embb one key usecase...
4149     study problem estimating size independent sets...
4150     paper provides sufficient conditions existence...
4151     article second series two presenting scale rel...
4152     present simple apparatus femtosecond laser ind...
4153     study changes metrics defined cartesian produc...
4154     paper answer following question infinitesimal ...
4155     modification geometry interactions twodimensio...
4156     proliferation social media fashion inspired ce...
4157     paper introduces new effective algorithm learn...
4158     current spacecraft need launch required fuel t...
4159     compared numerous xray dominant active galacti...
4160     study em maximum duopreservation string mappin...
4161     current trends nextgeneration exascale systems...
4162     propose general approach modeling semisupervis...
4163     report fabrication cm long cavity directly nan...
4164     spectral clustering one popular yet still inco...
4165     consider recovery low rank times n matrix nois...
4166     aim work propose first coarsegrained model bac...
4167     selfbound quantum droplets newly discovered ph...
4168     paper concerned problem stochastic control gen...
4169     growing uncertainty design parameters therefor...
4170     paper propose new approach obtain mixing least...
4171     despite rapid advances face recognition remain...
4172     introduce new class graphical models generaliz...
4173     argue turning logic program set completed defi...
4174     present manuscript consider practical problem ...
4175     human attribute analysis challenging task fiel...
4176     measurement error observed values variables gr...
4177     consider k surfaces arise double covers ellipt...
4178     sidefed crossed dragone telescope provides wid...
4179     individual neurons nervous systems exploit var...
4180     part study spherical functions compact symmetr...
4181     consider problem estimating species trees unro...
4182     recently introduction generative adversarial n...
4183     gestures natural communication modality humans...
4184     training deep network image classification one...
4185     deep narrowband hst imaging iconic spiral gala...
4186     letter supervisedly train neural networks dist...
4187     propose label propagation based algorithm weak...
4188     indian buffet process based models elegant way...
4189     propose new model formalizing reward collectio...
4190     study estimation integral type functionals int...
4191     emotional arousal increases activation perform...
4192     xray emission young stellar objects ysos order...
4193     consider reactiondiffusion equations kortewegd...
4194     present first systematic analysis read write s...
4195     features collaboration patterns often consider...
4196     study generation magnetic fields inflation mak...
4197     present horndroid new tool static analysis inf...
4198     paper study robustness network topologies use ...
4199     mas vee proved independently almost every inte...
4200     realworld machine learning applications often ...
4201     paper proposes efficient method computing sele...
4202     establish polyavinogradovtype bound finite per...
4203     introductory pedagogical treatmeant article p ...
4204     generative adversarial networks gans received ...
4205     experimental determination protein function re...
4206     eliminating negative effect nonstationary envi...
4207     use function field analogue method selberg der...
4208     derive correspondence eigenvalues adjacency ma...
4209     deep learning become powerful popular tool var...
4210     nature societies powerlaw present ubiquitously...
4211     extend results zhang et al show lambda eigenva...
4212     plasma turbulence scales order ion inertial le...
4213     recurrent neural networks show stateoftheart r...
4214     build deep reinforcement learning rl agent pre...
4215     curiosity strong desire learn know something s...
4216     initiate study communication complexity fair d...
4217     prove improve muirsuffridge conjecture holomor...
4218     article give approach define continuous functi...
4219     interplay spinorbit coupling soc electron corr...
4220     present strong version abouzaids noescape lemm...
4221     graph weighted models gwms recently proposed n...
4222     paper concerned existence least energy solutio...
4223     n distinguishable players randomly fitted whit...
4224     field mathbb k bijection regular spreads proje...
4225     optimization problem behind deep neural networ...
4226     paper presents analysis rearward gap acceptanc...
4227     propose simple yet highly effective method add...
4228     global style tokens gsts recentlyproposed meth...
4229     online social networks studied links users soc...
4230     review possible mechanisms energy transfer bas...
4231     consider priori generalization bounds develope...
4232     propose novel class statistical divergences ca...
4233     study existence nonexistence maximizers variat...
4234     paper introduces dex reinforcement learning en...
4235     paper discuss first order partial differential...
4236     prove genusone restriction allgenus landauginz...
4237     present novel approach mobile manipulator self...
4238     paper presents first results citeccyr project ...
4239     majority everyday tasks involve interacting un...
4240     article weak convergence general nonmarkov sta...
4241     segmental conditional random fields scrfs conn...
4242     use ecofriendly materials environment addresse...
4243     much work design convolutional networks last f...
4244     rigorous bridge spikinglevel macroscopic quant...
4245     recognition actions video sequences many appli...
4246     digital information encoded buildingblock sequ...
4247     traditionally categorical data analysis eg gen...
4248     article present idea using liquid scintillator...
4249     paper contributes new machine learning solutio...
4250     characterize strong type weak type inequalitie...
4251     sentiment analysis natural language processing...
4252     separating two sources audio mixture important...
4253     article first derive wavevector frequencydepen...
4254     optimization procedure multitransmitter miso w...
4255     consider problem estimating counterfactual qua...
4256     text generation increasingly common often requ...
4257     means building safe critical systems consists ...
4258     topic paper modeling analyzing dependence stoc...
4259     nodalline semimetals one topological semimetal...
4260     analyze listdecodability related notions rando...
4261     comparing different neural network representat...
4262     axiomatize study matrices type hin mna unitary...
4263     paper argues judicial use formal language theo...
4264     topological crystalline insulators recently pr...
4265     experimental records active bundle motility us...
4266     weyl dirac semimetals three dimensions robust ...
4267     developed fft beamforming techniques chime rad...
4268     magnetic resonance imaging mri positron emissi...
4269     goal paper extend classical multiplicative fra...
4270     considering problem color distortion caused de...
4271     present generalisation c bishop p jones result...
4272     flexible estimation heterogeneous treatment ef...
4273     hierarchical searches continuous gravitational...
4274     study heat trace drifting laplacian well schrd...
4275     online systems based machine learning offered ...
4276     show every p diamond kfree graph colorable mor...
4277     nearby exoplanet proxima centauri b prime futu...
4278     longstanding belief modular tensor categories ...
4279     mathematic forgetting curve models fit well fo...
4280     important step efficient computation multidime...
4281     imperative aspect modern science scientific in...
4282     stardust grains recovered meteorites provide h...
4283     present new proof fundamental result concernin...
4284     animal telemetry data often analysed discrete ...
4285     chiral magnets topologically nontrivial spin o...
4286     human pose estimation monocular images joint o...
4287     among underwater perceptual sensors imaging so...
4288     genomewide association studies gwas achieved g...
4289     paper shows random variables x possible repres...
4290     infants experts playing amazing ability genera...
4291     modern aircraft may require order thousands cu...
4292     quantitative multivariate central limit theore...
4293     according degrootfriedkin model social network...
4294     prove existence abrikosov vortex lattice solut...
4295     hilda asteroids primitive bodies resonance jup...
4296     properties cold bose gases unitarity extensive...
4297     best known method give lower bound noether num...
4298     education key factor ensuring economic growth ...
4299     long known singlelayer fullyconnected neural n...
4300     recently lawson shown primary brownpeterson sp...
4301     paper devoted expressiveness hypergraphs uncer...
4302     treegrass coexistence savanna ecosystems depen...
4303     approach presented making predictions function...
4304     paper investigate periodic vibrations group pa...
4305     content analysis news stories whether manual a...
4306     new social economic activities massively explo...
4307     bearing cooperative localization used successf...
4308     revisit relation neutrino masses spontaneous b...
4309     paper concerned generation gaussian invariant ...
4310     paper proposes computerbased recursion algorit...
4311     consider chain abelian klebanovtarnopolsky fer...
4312     reliable measurement confidence classifiers pr...
4313     benfords law empirical edict stating lower dig...
4314     two popular classes methods approximate infere...
4315     bells theorem fascinated physicists philosophe...
4316     paper objects investigation dyadic operators i...
4317     beginning dynamic game players may exogenous t...
4318     wearable devices transforming computing humanc...
4319     study standard nonlocal nonlinear schrdinger n...
4320     prediction appealing objective selfsupervised ...
4321     manifold learning based methods widely used no...
4322     use data extreme radio scintillation demonstra...
4323     longitudinal biomedical studies social network...
4324     neural networks decision trees popular machine...
4325     let regular ring containing field characterist...
4326     selecting right drugs right patients primary g...
4327     temperature dependence electrical resistivity ...
4328     develop novel method training gans unsupervise...
4329     monoclonal antibodies constitute one important...
4330     well known addition noise multistable system i...
4331     conditional term rewriting intuitive yet compl...
4332     magnetic skyrmions topological spin structures...
4333     spectral estimation se aims identify energy si...
4334     present new walking footplacement controller b...
4335     study magnetic field effects diluted spinice m...
4336     rnnbased forecasting approach used early detec...
4337     polymer solar cells considered promising candi...
4338     flutter machine introduced investigation singu...
4339     paper proposes novel robotic hand design assem...
4340     celebrated time hierarchy theorem turing machi...
4341     study sound galilean invariant systems onedime...
4342     natural join inner union operations combine re...
4343     predictions based densityfunctional calculatio...
4344     autonomous measurement tree traits branching s...
4345     mechanical vibrations components optical syste...
4346     present new ai task embodied question answerin...
4347     controlled generation text high practical use ...
4348     learning automatically structure object catego...
4349     design optimization techniques often used begi...
4350     present application deep generative models con...
4351     kirk lancaster david siegel investigated exist...
4352     brain computer interface bci provides promisin...
4353     paper deals motion planning multiple agents re...
4354     graph games provide foundation modeling synthe...
4355     recent work distance metric learning focused l...
4356     attenuation correction essential requirement p...
4357     introduce general framework allowing apply the...
4358     paper presents rigorous optimization technique...
4359     paper proposes new sharpened version jensens i...
4360     knotted solutions electromagnetism fluid dynam...
4361     let integer let imathbbzm set nonzero proper i...
4362     recent publications presented novel formal sym...
4363     robots potential game changer healthcare impro...
4364     social learning ie students learning social in...
4365     background widespread adoption electronic heal...
4366     piscine orthoreovirus strain prv causative age...
4367     motivated recent experiments use u extension g...
4368     consider learningbased variants c mu rule sche...
4369     report cosmological correlation functions used...
4370     computational paralinguistic analysis increasi...
4371     exchange small molecular signals within microb...
4372     explore polarization around controversial topi...
4373     vanishing gradient problem major obstacle succ...
4374     high dimension customary consider lassotype es...
4375     propose novel automatic method accurate segmen...
4376     using theorems eliashberg mcduff etnyre et pro...
4377     splitplot repeated measures designs frequently...
4378     syntax modal graphs defined terms continuous c...
4379     great interest realizing quantum simulators ch...
4380     paper interested decomposition tensor product ...
4381     development new greenhouse gas scavengers acti...
4382     singing voice separation based deep learning r...
4383     study highdimensional linear models errorinvar...
4384     show given estimate widehata close general hig...
4385     human drives car along road first time later r...
4386     onchip twisted light emitters essential compon...
4387     introduce lamp linear additive markov process ...
4388     consider extended starlike networks hub node c...
4389     let fourier coefficients holomorphic cusp form...
4390     general consensus learning representations use...
4391     work offer framework reasoning wide class exis...
4392     advent big data nowadays many applications dat...
4393     introduce new virtual environment simulating c...
4394     present fashionmnist new dataset comprising x ...
4395     kpage book drawing graph gve consists linear o...
4396     measured xray magnetic circular dichroism xmcd...
4397     paper studies problem secure communication ktr...
4398     analytically derive elastic dielectric piezoel...
4399     concerned multidimensional nonlinear stochasti...
4400     paper describes massively parallel code stateo...
4401     article carries large dimensional analysis sta...
4402     study differences equivalences nonperturbative...
4403     vibrational energy harvesters capture mechanic...
4404     paper presents novel principled approach train...
4405     area efficient rowparallel architecture propos...
4406     following paper fundamental aspects probabilis...
4407     osteonecrosis occurs due loss blood supply bon...
4408     study output feedback exponential stabilizatio...
4409     paper introduce design principle develop novel...
4410     wellknown bayes theorem assumes posterior dist...
4411     consider jovian planet highly eccentric orbit ...
4412     note contains reformulation hodge index theore...
4413     study asymmetry twopoint crosscorrelation func...
4414     paper present endtoend automatic speech recogn...
4415     fourier analysis representation circular distr...
4416     new method presented modelling physical proper...
4417     deep reinforcement learning drl shown incredib...
4418     propose analytical method blind separation abs...
4419     paper study optimal output consensus problem m...
4420     propose new dynamics equilibrium selection fin...
4421     paper presents new method medical diagnosis ne...
4422     new results added paper qclosed solvable sesqu...
4423     letter provides simple efficient technique all...
4424     current envisaged increase cellular traffic po...
4425     recurrent neural network rnn language models l...
4426     j deloerat mcallister k mulmuleyh narayananm s...
4427     aspectbased sentiment analysis existing method...
4428     begin discussion summarizing methodology propo...
4429     present results resonant xray scattering measu...
4430     rapid popularity internet things iot cloud com...
4431     environments scarce resources adopting right s...
4432     performance neural network nnbased language mo...
4433     covalentorganic frameworks cofs intriguing pla...
4434     filters convolutional neural network cnn conta...
4435     gravitationally collapsed objects known biased...
4436     relational structure mathbb x said reversible ...
4437     difficulty large scale monitoring app markets ...
4438     recently developed variational autoencoders va...
4439     work describe problem refer textbfspotify prob...
4440     smooth compact connected riemannian manifold l...
4441     power spectrum estimation important tool many ...
4442     evaluating human brain potentials watching dif...
4443     geophysical inversion ideally produce geologic...
4444     provide new proof super duality equivalence in...
4445     recent years car makers tech companies racing ...
4446     electricallycontrollable solidstate reversible...
4447     global pairwise network alignment gpna aims fi...
4448     present quantu spin liquid state spin honeycom...
4449     show singular dominant integral weight lambda ...
4450     article devoted investigation representation r...
4451     many realworld systems profitably described co...
4452     given semiriemannian manifold mg two distingui...
4453     paper compute number zclasses conjugacy classe...
4454     paper proposes practical approach automatic sl...
4455     martin david kruskal one versatile theoretical...
4456     provide unified framework compute stationary d...
4457     hedonic games meant model coalitions people fo...
4458     introduce kbanded cholesky prior estimating hi...
4459     paper consider stochastic langevin equation ad...
4460     crowdsourcing important avenue collecting mach...
4461     weihrauch degrees strong weihrauch degrees par...
4462     long shortterm memory lstm normally used recur...
4463     introduce abstract notion closed necklical set...
4464     give classification complete algebraic descrip...
4465     quantum cognition delivered number models sema...
4466     purpose note provide detailed proof nazarovs i...
4467     lanczos method one standard approaches computi...
4468     eigenstates fully manybody localized fmbl syst...
4469     network modeling become increasingly popular a...
4470     automated vehicles change society improved saf...
4471     recent years many new interesting models succe...
4472     consider gierermeinhardt system small inhibito...
4473     article study subloci solvable curves mathcalm...
4474     prove limit theorems superreplication cost eur...
4475     study networks witnessed explosive growth past...
4476     present natural families coordinate algebras n...
4477     observed field fermi source fgl j optical xray...
4478     markov random fields mrfs find applications va...
4479     nonparametric estimation mutual information us...
4480     present laboratory spectra pd transitions fe f...
4481     paper propose novel method register football b...
4482     fabrication devices industrial plants often in...
4483     propose fast accurate numerical method pricing...
4484     article extend conventional framework convolut...
4485     major obstacle understanding neural coding com...
4486     loving ai project involves developing software...
4487     paper study leveraging confidence information ...
4488     profitability fraud online systems app markets...
4489     nearfuture electric distribution grids operati...
4490     paper presents approach assess economics custo...
4491     work study thermodynamics ddimensional schwarz...
4492     antiferromagnet afm ferromagnet fm interfaces ...
4493     blockage pores particles found many processes ...
4494     monte carlo mc simulations transport random po...
4495     ingrowth postdeposition treatment cuznsns czts...
4496     novel approach introduced widely occurring pro...
4497     define notion morphisms open games exploiting ...
4498     semirelativistic densityfunctional theory incl...
4499     compute lbetti numbers free ctensor categories...
4500     recently increasing interest research interpre...
4501     coupled quasilinear kellersegelnavierstokes sy...
4502     spectral clustering one popular methods commun...
4503     textbfobjective assess validity automatic eeg ...
4504     review developments statistical physics fractu...
4505     consider localized approach wellestablished se...
4506     directed graphs widely used model data flow ex...
4507     weardriven structural evolution nanocrystallin...
4508     aim paper present necessary sufficient conditi...
4509     mostly survey article use information galois p...
4510     paper obtain bounds mordellweil ranks cyclotom...
4511     shown region euler integral first kind diverge...
4512     report first experimental observation graphene...
4513     navigating safely urban environments remains c...
4514     magnetic field applied metals semimetals quant...
4515     emergence development cancer consequence accum...
4516     paper correct inaccuracy appears proof theorem...
4517     present work aim taking step towards spectral ...
4518     investigate dynamically adapting tuning scheme...
4519     provide analytic propagator nonhermitian dimer...
4520     propose novel deep learning architecture regre...
4521     recently distributed processing large dynamic ...
4522     variational inference methods often focus prob...
4523     discrete cosine transform dct widelyused impor...
4524     propose swarmbased optimization algorithm insp...
4525     paper consider backward time problem ginzburgl...
4526     brief review discuss transient processes solid...
4527     galaxy data provided cosmos survey degree fiel...
4528     digital advances transformed face automatic mu...
4529     singular actions calgebras automorphic group a...
4530     general purpose correctbyconstruction synthesi...
4531     study explicit differential equations represen...
4532     positrons annihilate every second centre galax...
4533     sampling technique become one recent research ...
4534     friendship antipathy exist concert one another...
4535     review recurrence intervals function ground mo...
4536     modern future particle accelerators employ inc...
4537     paper algebraic combinatorial characterization...
4538     paper show stochastic heavy ball method shb po...
4539     attentionbased models recently shown great per...
4540     similarity metric learning provides principled...
4541     skills learned deep reinforcement learning oft...
4542     analyze open manybody system strongly coupled ...
4543     paper effect transmitter beam size performance...
4544     mars surface bears imprint valley networks for...
4545     paper proposes image dehazing model built conv...
4546     spirit searching gdbased frustrated rare earth...
4547     note indecomposable canonical forms linear sys...
4548     let mg compact manifold let delta phik lambdak...
4549     multimodal clustering unsupervised technique m...
4550     paper solve problem identification coefficient...
4551     nonlinear optics especially frequency mixing u...
4552     microcanonical grosspitaevskii aka semiclassic...
4553     last decades public policies become central pi...
4554     using twodimensional hybrid expanding box simu...
4555     establish minimax optimal rates convergence no...
4556     consider problem phase retrieval ie solving sy...
4557     shown one uses notion infinity nilpotent eleme...
4558     internet become way life fast growing digital ...
4559     present design implementation custom discrete ...
4560     policygradient approaches reinforcement learni...
4561     absolute positioning vehicles based global nav...
4562     demonstrate augmented estimate sequence framew...
4563     interplay electrochemical surface charges bulk...
4564     feasibility pumps highly effective primal heur...
4565     starting covariant expressions gauge independe...
4566     relatively prime refer set integers congruent ...
4567     develop asymptotical control theory one simple...
4568     replication complicated psychological research...
4569     study angular dependence dissipation supercond...
4570     displacement calculus mathbfd conservative ext...
4571     construct labeling homomorphisms cubical homol...
4572     demonstrate integration mesoscopic ferromagnet...
4573     present solution scale spectral algorithms lea...
4574     bcklund transformation bt good boussinesq equa...
4575     compressing convolutional neural networks cnns...
4576     consider dilute fluorinated graphene nanoribbo...
4577     given one metric measure space x satisfying li...
4578     problem quantizing activations deep neural net...
4579     associate monoidal category mathcalhlambda dom...
4580     let g group automorphism g called intense send...
4581     study adjoint double layer potential associate...
4582     structural coefficient restitution describes k...
4583     explore phase diagram finitesized dysprosium d...
4584     topological data analysis emerging area explor...
4585     paper design nonlinear state feedback controll...
4586     computed tomography ct reconstruction fundamen...
4587     consider bounded solutions nonlocal allencahn ...
4588     bi films thicknesses several bilayers bls grow...
4589     tensors multidimensional arrays numerical valu...
4590     consider researcher estimating parameters regr...
4591     missing data noisy observations pose significa...
4592     concurrent coding unconventional encoding tech...
4593     present work explore potential spinorbit coupl...
4594     paper revisit extend interesting case bounds q...
4595     band gap tuning twodimensional transitional me...
4596     defect diamond formed vacancy surrounded three...
4597     kisin pappas constructed integral models hodge...
4598     paper gives new flavor peter jagers coauthors ...
4599     braincomputer interfaces bcis based functional...
4600     human brain capable diverse feats intelligence...
4601     yang considered empirical estimate mean residu...
4602     calculate ghost characters torus knot using sh...
4603     aim clarify role absorption plays nonlinear op...
4604     data center networks dnk proposed many desirab...
4605     turbulence leading candidate angular momentum ...
4606     paper proposes general framework multiarmed ba...
4607     urban environments offer challenging scenario ...
4608     give improved algorithms ellpregression proble...
4609     article give explicit minimal free resolution ...
4610     current approaches knowledge distillation kd e...
4611     article argues importance forbidden triads ope...
4612     solar system small bodies come wide variety sh...
4613     leahhamiltonian hxyyx introduced functional eq...
4614     nuclear magnetic resonance nmr spectroscopy on...
4615     every genus ggeq construct infinite family str...
4616     objective absolute images important applicatio...
4617     epidemic outbreaks important healthcare challe...
4618     report first streaking measurement waterwindow...
4619     investigate intrinsic baldwin effect beff broa...
4620     hivaids spread depends upon complex patterns i...
4621     biluminescent organic emitters show simultaneo...
4622     instability liquid droplet traversed energetic...
4623     navigating search rescue environments challeng...
4624     point current textbooks modern physics century...
4625     reionization universe one important topics pre...
4626     study effect different feedback prescriptions ...
4627     first direct detection asteroidal yorp effect ...
4628     study convergence loglinear nonbayesian social...
4629     soft gamma repeaters anomalous xray pulsars th...
4630     report optical mechanical characterization arr...
4631     prototypical magnetic memory shape alloy nimng...
4632     fpgabased heterogeneous architectures provide ...
4633     penalized least squares estimation popular tec...
4634     paper proposes novel semidistributed practical...
4635     propose framework adversarial training relies ...
4636     first order magnetostructural transition ttsim...
4637     work introduces concept parametric gaussian pr...
4638     discriminationaware classification receiving i...
4639     set points n fixes planar convex body k points...
4640     paper consider priorbased dimension reduction ...
4641     perform endtoend sound source separation sss v...
4642     complete group classification problem class di...
4643     generative adversarial networks gan effective ...
4644     smartphones ubiquitously integrated home work ...
4645     consider distribution free path lengths distan...
4646     present measurements spinorbit misalignments h...
4647     paper introduces novel parameter estimation me...
4648     paper applies multibond graph approach rigid m...
4649     nauticle generalpurpose simulation tool flexib...
4650     phase transition temperature tc simeq k heb mi...
4651     key performance characteristics demonstrated m...
4652     privacy crucial many applications machine lear...
4653     research presents model complex dynamic object...
4654     paper present neural phrasebased machine trans...
4655     propose method multiperson detection pose esti...
4656     combine space group representation theory toge...
4657     statistics cumulants defined functions measure...
4658     freely available python code modelling snr evo...
4659     work examine two approaches interprocedural da...
4660     geehaw whammy diddle seemingly simple mechanic...
4661     cancellation theorem grothendieckwittcorrespon...
4662     motivation rapid growth diverse biological dat...
4663     dealing brain injury finding difficult work tw...
4664     rapid changes extracellular osmolarity one man...
4665     present optical mapping neareye omni threedime...
4666     topological phases typically encode topology l...
4667     introduce new dynamical system sequentially ob...
4668     incremental methods structure learning pairwis...
4669     theoretically investigate charge transport ele...
4670     paper study isoparametric hypersurfaces rander...
4671     formation brightfield microscopic image transp...
4672     actin cytoskeleton active semiflexible polymer...
4673     introduce method using fizeau interferometry m...
4674     determining relative importance environmental ...
4675     classifiers rating scores prone implicitly cod...
4676     paper revisit portfolio optimization problems ...
4677     method constructing lax pairs nonlinear integr...
4678     motivated need detect underground cavity withi...
4679     distant agn within allowed gzk cutoff radius r...
4680     show quandle coverings sense eisermann form re...
4681     derive extended fluctuation theorem geometric ...
4682     ranking algorithms information gatekeepers int...
4683     order autonomous robots able support peoples w...
4684     unsupervised domain adaptation problem setting...
4685     given distribution defects structured surface ...
4686     new management system snd detector experiments...
4687     spiking neural networks snns could play key ro...
4688     distribution grids currently challenged freque...
4689     ongoing debate literature whether present glob...
4690     introduce twisted matrix factorizations quantu...
4691     provide deterministic data summarization algor...
4692     nonlinear latticea new nonlinear class periodi...
4693     improvements entityrelationship er search tech...
4694     humanoid robotics research depends capable rob...
4695     silicon nitride awellestablished material phot...
4696     propose new selection rule coordinate selectio...
4697     convolutional recurrent deep neural networks s...
4698     ability model generative process learn latent ...
4699     propose efficient algorithm approximate comput...
4700     paper generalized nonlinear camassaholm equati...
4701     despite growing popularity wireless networks u...
4702     schemes automatic cover song identification fo...
4703     present algorithm ensures finite time gatherin...
4704     let xomega compact hermitian manifold complex ...
4705     information communication technology ict playi...
4706     number visual question answering approaches pr...
4707     pth degree hilbert symbol cdotcdot pktimesktim...
4708     present gamer gpuaccelerated adaptive mesh ref...
4709     assume mathsfmn ndimensional permutation modul...
4710     paper consider distributed optimization design...
4711     increasing uptake distributed energy resources...
4712     generative adversarial networks gans powerful ...
4713     understanding pseudogap phase holedoped high t...
4714     boseeinstein condensates tunable interatomic i...
4715     propose principled method kernel learning reli...
4716     recent years surge interest developing deep le...
4717     direct cdna preamplification protocols develop...
4718     paper proposes novel model rating prediction t...
4719     sample matrix inversion smi beamformer impleme...
4720     wind potential make significant contribution f...
4721     widely used income inequality measure gini ind...
4722     paper presents constructive algorithm achieves...
4723     fields neuroimaging genetics key goal testing ...
4724     establish boundary maximum principle free boun...
4725     spectral sparsification general technique deve...
4726     analyze statistics shortest fastest paths road...
4727     work investigate optimal proportional reinsura...
4728     internet infrastructure relies entirely open s...
4729     quantitative loop invariants essential element...
4730     paper active learning goal reduce data annotat...
4731     theoretically experimentally demonstrate multi...
4732     consider kitaev chain model finite infinite ra...
4733     study motion isentropic gas nozzles major subj...
4734     atrial fibrillation af common form arrhythmia ...
4735     study controllability partial differential equ...
4736     gravitational instabilities gis likely fundame...
4737     suggest model multiagent society decision make...
4738     recent initiatives regulatory agencies increas...
4739     study origin layer dependence band structures ...
4740     complete proof given relative interpretability...
4741     prove htype carnot groups rank k dimension n s...
4742     generalize twisted quantum double model topolo...
4743     study fragmentationcoagulation merging splitti...
4744     bagchi main effect plans orthogonal block fact...
4745     electron transport layer etl plays fundamental...
4746     many machine intelligence techniques developed...
4747     paper propose new differentiable neural networ...
4748     core accretion hypothesis posits planets signi...
4749     paper presents novel method allows generalise ...
4750     alternating automata widely used model verify ...
4751     study special case analytical solution lippman...
4752     causal effect estimation observational data im...
4753     show poset slnorbit closures product two parti...
4754     fundamental understanding loop formation long ...
4755     recent years supervised representation learnin...
4756     paper aims bridge affective gap image content ...
4757     present two different approaches model power g...
4758     present method drawing isolines indicating reg...
4759     work concerned optimal control problems govern...
4760     show glr equivariant point markings orbit clos...
4761     fundamental frequency f estimation polyphonic ...
4762     study eigenvalues selfadjoint zakharovshabat o...
4763     recent work considered theoretical models beha...
4764     establish precise zhu reduction formulas jacob...
4765     timelimited functions bandlimited functions pl...
4766     model size distribution supernova remnants inf...
4767     community detection provides invaluable help v...
4768     given subjective preferences n roommates nbedr...
4769     desired closure property bayesian probability ...
4770     coded distributed computing cdc introduced li ...
4771     motion photon emission electrons superlattice ...
4772     present hydrodynamic simulations hot cocoon pr...
4773     noninstitutive polynomial chaos expansion pce ...
4774     recognizing human activities sequence challeng...
4775     introduce study higher tetrahedral algebras ex...
4776     many algorithms parameter tuning remains chall...
4777     propose method generate shapes using point clo...
4778     recognizing arbitrary objects wild challenging...
4779     paper describes procedure estimate parameters ...
4780     multitude web desktop applications widely avai...
4781     nowadays big part people rely available conten...
4782     investigate proving properties curry programs ...
4783     classification involves finding rules partitio...
4784     modern learning algorithms excel producing acc...
4785     statistical regression models whose mean funct...
4786     unmanned aerial vehicles uavs attracted signif...
4787     propose new imaging technique radio opticalinf...
4788     using process algebra paper describes formalis...
4789     profiles broad emission lines active galactic ...
4790     agricultural robots expected increase yields s...
4791     textbooks applied mathematics often use graphs...
4792     paper provides alternate proof parts gouldensl...
4793     according butterfieldisham proposal understand...
4794     emission electromagnetic radiation accelerated...
4795     distribution regression recently attracted muc...
4796     using stateoftheart microscopy spectroscopy ab...
4797     henonheiles system originally proposed describ...
4798     study large time behaviour mass size particles...
4799     although neural machine translation nmt encode...
4800     propose novel combination optimization tools l...
4801     present first experimental demonstration multi...
4802     show variational autoencoders consistently fai...
4803     survey technique constructing customized model...
4804     show integers mgeq integers kgeq orthogonal gr...
4805     full autonomy fixedwing unmanned aerial vehicl...
4806     address problem efficient acousticmodel refine...
4807     spatial distribution cherenkov radiation casca...
4808     pentagram map discrete dynamical system define...
4809     paper study problem photoacoustic inversion we...
4810     recently fundamental conditions sampling patte...
4811     driven growing interest sciences industry amon...
4812     contribute general apparatus dependent tacticb...
4813     goal semantic parsing map natural language mac...
4814     study algebraic implications nonindependence p...
4815     layout hotpot detection one main steps modern ...
4816     computational prediction origin replication or...
4817     routine task art historians painting diagnosti...
4818     paper study slant submanifold complex space fo...
4819     theoretical models pertaining feedbacks ecolog...
4820     cuprate hightemperature superconductors among ...
4821     cryptocurrencies foundation technology blockch...
4822     recent studies shown tuning prediction models ...
4823     matrices phiinrntimes p satisfying restricted ...
4824     models applied real time response task like cl...
4825     high luminosity lhc hllhc integrate times lumi...
4826     let mathcalf finite alphabet mathcald finite s...
4827     present companion paper contemporary look herm...
4828     giant mutually connected component gmcc interd...
4829     paper study asymptotic behavior hermitianyangm...
4830     phasefield approaches fracture based energy mi...
4831     slow running straggler tasks significantly red...
4832     introduce inference trees new class inference ...
4833     propose scheme employ backpropagation neural n...
4834     recently two scalable adaptations bootstrap pr...
4835     impressive image captioning results achieved d...
4836     improve performance american fuzzy lop afl fuz...
4837     embedded realtime systems rts pervasive many m...
4838     derive second order rates joint sourcechannel ...
4839     chiral helical domain walls generic defects to...
4840     modern neural networks tend overconfident unse...
4841     detailed characterization particle induced bac...
4842     present principled approach uncover structure ...
4843     superconformal field theories scfts scfts high...
4844     article consider completely multiplicative seq...
4845     paper analyzed parasitic coupling capacitance ...
4846     consider manager allocates fixed total payment...
4847     continuous attractors used understand recent n...
4848     vallornothing transform bijective mapping defi...
4849     highavailability software systems requires aut...
4850     elucidate importance consistent treatment grav...
4851     develop novel method counterfactual analysis b...
4852     generalized pareto distribution gpd plays cent...
4853     work introduce em average topk atk loss new ag...
4854     reflexive polytopes form one distinguished cla...
4855     neural networks successfully applied applicati...
4856     mixture models become widely used clustering g...
4857     scanning superconducting quantum interference ...
4858     machine learning models incorporating multiple...
4859     prove general essential selfadjointness criter...
4860     recent years seen growing interest understandi...
4861     show convex hull monotone perturbation homogen...
4862     recent experiments demonstrate molecular motor...
4863     distributed function computation node initial ...
4864     individuals adapt behavior cultural evolution ...
4865     warm dark matter scenarios structure formation...
4866     aluminum lumpedelement kinetic inductance dete...
4867     calculate universal spectrum trimer tetramer s...
4868     paper constructed dark energy models anisotrop...
4869     huge influx various data nowadays extracting k...
4870     give algebraic quantization sense quantum grou...
4871     well known lasso interpreted bayesian posterio...
4872     paper investigate endogenous information conta...
4873     data diversity critical success training deep ...
4874     robust feature representation plays significan...
4875     paper develop upper bound sparseva sparse esti...
4876     present results chandra xray survey massive ga...
4877     revisit relegation algorithm deprit et al cele...
4878     exists bijection configuration space linear pe...
4879     neural networks central tool machine learning ...
4880     paper motivated two important applications ent...
4881     let k field characteristic zero x free variabl...
4882     treat boundary union blocks jenga game surface...
4883     introduce mathcaldlr extension nary propositio...
4884     developing braincomputer interfacebci seizure ...
4885     relational datasets modeled graphs keep increa...
4886     theoretically investigate stability linear osc...
4887     recent experiments schaeffer shown lithium pre...
4888     present imaging polarimetry superluminous supe...
4889     even though active learning forms important pi...
4890     optical flow estimation rainy scenes challengi...
4891     among many additive manufacturing processes me...
4892     due complexity invisibility human organs diagn...
4893     paper address inverse problem statistical mach...
4894     spectral graph convolutional neural networks c...
4895     study turbulent square duct flow dense suspens...
4896     transport charged carriers regimes strong none...
4897     let frak g semisimple lie algebra frak ksubset...
4898     roughly neutron stars known handful substellar...
4899     discrete time crystals recently proposed exper...
4900     give upper lower bounds number solutions equat...
4901     representation formula relaxation integral ene...
4902     stochastic optimization key efficient inversio...
4903     recent years self organised critical neuronal ...
4904     music multifaceted stimulus evolving multiple ...
4905     purpose paper give characterizations weight fu...
4906     lowmass stars plentiful universe often host sm...
4907     due numerous advantages formal proofs proof as...
4908     study explore peerinteraction effects online n...
4909     explanations kaldis plda implementation make f...
4910     lowenergy quasiparticles weyl semimetals conde...
4911     chinese societies superstition paramount impor...
4912     magnetic fieldinduced giant modification proba...
4913     work develop adaptive multivariate partitionin...
4914     classify drinfeld twists quantum borel subalge...
4915     big data analysis detecting rare weak signals ...
4916     class quasimedian graphs generalisation median...
4917     propose doubly nested networkdnnet neurons rep...
4918     recently series reports wang et al superconduc...
4919     research numerical stability difference equati...
4920     division ring denote mathcal md dring obtained...
4921     paper develops hybrid method solving system ad...
4922     work focuses quantitative representation trans...
4923     paper presents firstorder distributed continuo...
4924     last years model driven development mdd compon...
4925     article study optimal control problems systems...
4926     bipartite envyfree matching befm relaxation pe...
4927     offdiagonal aubryandr aa model recently attrac...
4928     analysis networks affects research many real p...
4929     investigate star formation spatially organized...
4930     path planning robotics often requires finding ...
4931     let pk path ck cycle k vertices kkk complete b...
4932     propose general index model survival data gene...
4933     dealing problem simultaneously testing large n...
4934     probability functions figure prominently optim...
4935     predicting next activity running process impor...
4936     high availability scalability weaklyconsistent...
4937     investigate initialboundary value problem inte...
4938     paper presents two visual trackers different p...
4939     digital memcomputing machines dmms nonlinear d...
4940     describe broadly applicable experimental propo...
4941     investigate exoplanetary distributions using n...
4942     let widetildemathcal mlangle mathcal prangle e...
4943     effective implementations samplingbased probab...
4944     information distribution electronic messages p...
4945     correlation magnetic properties microscopic st...
4946     decodoku project seeks let users get handson c...
4947     dynamic complexity concerned updating output p...
4948     fractures ubiquitous subsurface strongly affec...
4949     paper concerned application finite element met...
4950     many audio signal processing methods formulate...
4951     using stochastic gradient search optimal filte...
4952     safe efficient planning control autonomous dri...
4953     microservices architectures become largely pop...
4954     application high pressure fundamentally modify...
4955     zero forcing power domination iterative proces...
4956     compare two important bases irreducible repres...
4957     chapter present literature survey emerging cut...
4958     mode connectivity recently introduced frame wo...
4959     lifelong learning problem learning multiple co...
4960     floatingpoint arithmetic plays central role sc...
4961     compiled catalog candidates type quasars redsh...
4962     introduce generalization celebrated lovsz thet...
4963     multiclass classifiers make prediction test sa...
4964     propose new approach spectral theory perturbed...
4965     consider random linear estimation gaussian mea...
4966     develop class algorithms variants stochastical...
4967     hole diffusion length ningaas extracted two sa...
4968     layered semiconvection possible candidate expl...
4969     derive solvability conditions closedform solut...
4970     paper analyze convergence several discretizeth...
4971     paper evaluates three variants gated recurrent...
4972     let r frak local ring finitely generated rmodu...
4973     spherical gausslaguerre sgl basis functions ie...
4974     inspired recent developments research atomphot...
4975     manuscript method developing novel filtering a...
4976     quantum phase slips qps may produce nonequilib...
4977     study different concepts stability modules fin...
4978     paper show using publicly available data strea...
4979     enforcing open source licenses gnu general pub...
4980     minimization length syntactic dependencies wel...
4981     consider multivariate nonparametric regression...
4982     paper presents unsupervised method learn neura...
4983     virtual reality vr emerges mainstream platform...
4984     extreme deformations dna double helix attracte...
4985     many realworld objects designed smooth curves ...
4986     use inelastic light scattering study srxnaxfea...
4987     paper study problem learning mixture gaussians...
4988     report detailed analysis gravitationallylensed...
4989     paper present novel method rapid highresolutio...
4990     present new autoencodertype architecture train...
4991     boundary plasma physics plays important role t...
4992     hyperbolic systems pdes solved arbitrary order...
4993     prove reducibility result quantum harmonic osc...
4994     adaptive classification interference covarianc...
4995     lack interpretability often makes blackbox mod...
4996     many applications requiring multiple inputs ob...
4997     topos theory wellknown nucleus j gives rise tr...
4998     modulating amplitude phase light heart many ap...
4999     show translation surface regular point contain...
5000     work extend solid harmonics derivation used ac...
5001     lnorm principalcomponent analysis lpca realval...
5002     consider dissipation surface waves fluids view...
5003     present approach automate process discovering ...
5004     parental gametes unite form zygote develops ad...
5005     work investigates application unmanned aerial ...
5006     describe dynet toolkit implementing neural net...
5007     team semantics mathematical framework modern l...
5008     intriguing property deep neural networks inher...
5009     latent dirichlet allocation lda models trained...
5010     issue buckling mechanism droplets stabilized s...
5011     let x separable banach function space unit cir...
5012     theoretical paper continuation arxiv considers...
5013     topological models empirical formal inquiry in...
5014     given closed riemannian manifold pair multicur...
5015     show smooth interface two insulators opposite ...
5016     focus work estimation indegree distribution di...
5017     report superkekb phase operations large angle ...
5018     study effect contingent movement persistence c...
5019     traditional face editing methods often require...
5020     technique nonredundant masking nrm transforms ...
5021     consider gated onedimensional quantum wire dis...
5022     many problems supervised tensor learning stl r...
5023     introduce noisynet deep reinforcement learning...
5024     rate control protocol rcp congestion control p...
5025     demand high data rate low latency fifth genera...
5026     study twoplayer games counters objective first...
5027     using lagrangian floer theory study tropical g...
5028     greatest integer belong numerical semigroup ca...
5029     show coherence different bacteriochlorophylla ...
5030     maximize offloading gain cacheenabled deviceto...
5031     many interesting natural phenomena sparsely di...
5032     paper develop fluctuating hydrodynamics propos...
5033     quantum non demolition measurements sequence o...
5034     majority nlg evaluation relies automatic metri...
5035     present constraints masses extremely light bos...
5036     paper study optimal estimates two functionals ...
5037     examine kinematics gas environments galaxies h...
5038     computeraided analysis medical scans longstand...
5039     inspired katoks examples finsler metrics small...
5040     crystal structure magnetic ordering electrical...
5041     present machine learningbased approach lossy i...
5042     context dynamic emission tomography convention...
5043     investigate perturbative thermodynamic geometr...
5044     offer two new mellin transform evaluations rie...
5045     given constant vector field z minkowski space ...
5046     paper class neutral type competitive neural ne...
5047     students may find spline interpolation easily ...
5048     present monte carlo mc gridbased model drying ...
5049     image retargeting aims resize image one prescr...
5050     paper optimal power flow opf problem augmented...
5051     let mathbba cellular algebra field mathbbf dec...
5052     discrete frenet equation entails local framing...
5053     p stckel proved existence transcendental funct...
5054     consider classifiers highdimensional data stro...
5055     establish dictionary group field theory thus s...
5056     examine behavior accelerated gradient methods ...
5057     currently two main approaches exist distinguis...
5058     obtain weak type estimate maximal operator ass...
5059     internet things iot still infancy attracted mu...
5060     paper study ability make shortterm prediction ...
5061     hydroclimatic processes characterized heteroge...
5062     guiding influence stanley mandelstams key cont...
5063     accretion gas interaction matter radiation hea...
5064     logdeterminant kernel matrix appears variety m...
5065     numerical simulations artificial terms applied...
5066     humanoid robots increasingly demanded operate ...
5067     conventional automatic speech recognition asr ...
5068     phenomenon amplitude death explored using vari...
5069     novel approach quintessential inflation model ...
5070     present study low temperature phases antiferro...
5071     objective numerous glucose prediction algorith...
5072     derive compare fractions coolcore clusters em ...
5073     online multiobject tracking mot videos challen...
5074     generating novel graph structures optimize giv...
5075     given small mobility coefficient liquid argon ...
5076     address problem constructing coding schemes ch...
5077     propose demonstrate selfcoupled microring reso...
5078     report measurements p p scalar tensor polariza...
5079     consider equation uyy utx uyuxx uxuxy reductio...
5080     first present empirical study belief propagati...
5081     study surnames linguistic geographical markers...
5082     let mathfrak l mathfrak qntimesmathfrak qn mat...
5083     work focus novel completion wellknown bransdic...
5084     speech emotion recognition important challengi...
5085     present quantitative analysis human word assoc...
5086     recent observations show population active gal...
5087     show x abelian variety dimension g geq mathcal...
5088     first chapter present computation square value...
5089     many inverse problems involve two sets variabl...
5090     paper proposes method based signal injection o...
5091     paper introduce durrmeyer type modification me...
5092     present deep graph infomax dgi general approac...
5093     investigation paper nonisospectral variable co...
5094     study problem detecting abrupt change signal c...
5095     paper argue future artificial intelligence res...
5096     several theories glass transition propose stru...
5097     takeuchi showed conjugation exactly arithmetic...
5098     large variety dynamical systems chemical biomo...
5099     runlength encoding burrowswheeler transformed ...
5100     investigate effect stress fluctuations stochas...
5101     quantifying estimating wildlife population siz...
5102     information planning enables faster learning f...
5103     electron tracking based compton imaging key te...
5104     paper establish best constant anisotropic gagl...
5105     draft addendum ich e released public consultat...
5106     given characteristic define character siegel m...
5107     investigate new class topological antiferromag...
5108     relation cosmological halo concentration mass ...
5109     effects structural distortion associated rm os...
5110     e elliptic curve point order two work klagsbru...
5111     machine learning essentially sciences playing ...
5112     deformation estimation elastic object assuming...
5113     performed empirical comparison two distinct no...
5114     present deep generative model learning predict...
5115     investigate dynamics nonlinear system modeling...
5116     present family algorithms reduce noise astroph...
5117     dropout stochastic regularisation technique tr...
5118     wind energy forecasting helps manage power pro...
5119     firstorder iterative optimization methods play...
5120     machine understanding complex images key goal ...
5121     currently approximately epileptic patients tre...
5122     disentangled representations higher level data...
5123     color hotdip galvanized steel sheet adjusted r...
5124     fix counting function multiplicities algebraic...
5125     consider task finegrained sentiment analysis p...
5126     computinginmemory cim architectures aim reduce...
5127     previous work shown onedimensional inviscid co...
5128     consider jointly gaussian random variables who...
5129     follower count factor quantifies popularity ce...
5130     show monochromatic finsler metrics ie finsler ...
5131     transcriptional repressor ctcf important regul...
5132     many multiplanet systems discovered date notab...
5133     present gpuqt quantum transport code fully imp...
5134     paper proposes analyzes new fullduplex fd coop...
5135     study method construct fullcolour volumetric d...
5136     strong gravitational lensing gives access tota...
5137     introduce new framework estimating support siz...
5138     twophoton superbunching pseudothermal light ob...
5139     aim paper investigate nonrelativistic limit in...
5140     bensonsolomon systems comprise known family si...
5141     present new paradigm simulation arrays imaging...
5142     poisoning attack learning algorithm adversary ...
5143     consider jacobi matrices eventually increasing...
5144     web video often used source data various field...
5145     given n symmetric bernoulli variables said cor...
5146     show tensor product aotimes b mathbbc two c al...
5147     intermediate level task connecting image capti...
5148     propose notion haantjes algebra consists assig...
5149     paper considers multipair amplifyandforward ma...
5150     exoplanet research carried limits capabilities...
5151     understanding influence features machine learn...
5152     wikipedia largest existing knowledge repositor...
5153     adopting two independent approaches lorentzinv...
5154     study effect critical pairing fluctuations ele...
5155     paper propose lowrank coordinate descent appro...
5156     fisher information metric important foundation...
5157     given network statistical ensemble graphvorono...
5158     statistics smallest eigenvalue wishartlaguerre...
5159     advances image processing computer vision late...
5160     propose deepmapping novel registration framewo...
5161     first systematic comparison swarmc acceleromet...
5162     consider modelbased clustering methods continu...
5163     provide requirements effectively enumerable to...
5164     paper studies problem multivariate linear regr...
5165     knowing people live fundamental component many...
5166     measure trends diffusion misinformation facebo...
5167     describe semeval task extracting keyphrases re...
5168     consider twodimensional nonlinear schrdinger e...
5169     late premet conjectured nilpotent variety fini...
5170     report existence stability freely moving solit...
5171     following text prove finite pgeq exists topolo...
5172     building machines understand text like humans ...
5173     remote sensing image processing important geos...
5174     independent control two magnetic electrodes sp...
5175     apply reinforcement learning algorithm show sm...
5176     propose analyze variational wave function popu...
5177     evaluated prospects quantifying parameterized ...
5178     time learner selfpaced online course trying an...
5179     give concise presentation univalent foundation...
5180     paper addresses problem synchronizing orthogon...
5181     threshold theorem probably important developme...
5182     evolutionary model emergence diversity languag...
5183     random walks heart many existing network embed...
5184     ultracold atomic physics experiments offer nea...
5185     consider solving convexconcave saddle point pr...
5186     power system dynamic state estimation essentia...
5187     number statistical estimation problems address...
5188     study existence stability stationary solutions...
5189     paper present new algorithm compressive sensin...
5190     important goal common domain adaptation causal...
5191     paper focus problem finding optimal weights sh...
5192     alternative proof given existence greatest low...
5193     study approximations partition function dense ...
5194     paper study hyersulam stability integral equat...
5195     omega centauri ngc hosts hundreds pulsating va...
5196     introduce pseudodeterministic interactive proo...
5197     erosion deposition flow porous media lead larg...
5198     study maximum likelihood degree ml degree tori...
5199     study incompressible limit pressure correction...
5200     paper present lossbased approach change point ...
5201     elastic foil interacting uniform flow trailing...
5202     foundation modern technology uses singlecrysta...
5203     new lower bound average reconstruction error v...
5204     use weighted variant frequency functions intro...
5205     present optical spectroscopy recently discover...
5206     single quantum dot deterministically coupled p...
5207     answering queries federation sparql endpoints ...
5208     unknown exists locally alphahlder homeomorphis...
5209     game towers hanoi generalized binary trees fir...
5210     consider problem estimating mean noisy vector ...
5211     good classification method yield accurate resu...
5212     although rate region lossless manyhelpone prob...
5213     correlated topic modeling limited small model ...
5214     prove risk bounds binary classification highdi...
5215     propose dimensional reduction procedure stolzt...
5216     present practical approach processing mobile s...
5217     motivated rapid rise statistical tools functio...
5218     wellknown result study convex polyhedra due mi...
5219     work assess accuracy dielectricdependent hybri...
5220     flow shock tube extremely complex dynamic mult...
5221     study kitaev chain generalized twisted boundar...
5222     consider general problem modeling temporal dat...
5223     empirical paper addresses role bilateral multi...
5224     information microscopically processed individu...
5225     pairwise association measure important operati...
5226     repeated exposure lowlevel blast may initiate ...
5227     gaussian markov random fields used large numbe...
5228     initiate study path spaces nascent context mot...
5229     paper study frequentist convergence rate laten...
5230     paper consider problem clustering collections ...
5231     important problem phylogenetics construction p...
5232     measurements cm line fluctuations minihalos di...
5233     utilise series highresolution cosmological zoo...
5234     two parts paper first discovered explicit form...
5235     paper bring anonymous variables imperative lan...
5236     cosmic cm signal set revolutionise understandi...
5237     standard penalized methods variable selection ...
5238     development speech synthesis techniques automa...
5239     present study concerned following schrdingerpo...
5240     introduce updown coloring virtuallink diagram ...
5241     present paper work comparison statistical mach...
5242     emerging field intersection quantitative biolo...
5243     new era web known semantic web web data semant...
5244     celebrated paper siegels lemma bombieri vaaler...
5245     rise connected personal devices together priva...
5246     implications considering interaction chaplygin...
5247     present galario computational library exploits...
5248     geoelectrical techniques widely used monitor g...
5249     study use randomized value functions guide dee...
5250     investigate generalizability deep learning bas...
5251     work use semiempirical atmospheric modeling me...
5252     paper present accurate approximation gamma fun...
5253     central theme classical algorithms reconstruct...
5254     paper investigates novel task generating textu...
5255     folliclestimulating hormone fsh luteinizing ho...
5256     going deeper witnessed improve performance con...
5257     atom interferometers employing optical cavitie...
5258     rulebased modelling allows represent molecular...
5259     previous work introduced method modeling confi...
5260     combination transmission electron microscopy a...
5261     fusion humans technology takes us unknown worl...
5262     timedependent generator coordinate method tdgc...
5263     note show small solutions energy space general...
5264     digital economy highly relevant item european ...
5265     purpose magnetic resonance fingerprinting mrf ...
5266     paper propose stochastic recursive gradient al...
5267     crucial role nymanbeurlingbezduarte approach r...
5268     propose nonstationary spectral kernels gaussia...
5269     one key g scenarios devicetodevice dd massive ...
5270     neural networks among accurate supervised lear...
5271     papers antares multimessenger program prepared...
5272     modified camassaholm mch equation bihamiltonia...
5273     investigate normal state superconducting compo...
5274     irreversible processes play major role descrip...
5275     inspired andrews colored generalized frobenius...
5276     paper illustrates similarities problems custom...
5277     progress enabling autonomous cars drive safely...
5278     existing music recognition applications requir...
5279     decentralized machine learning promising emerg...
5280     expected improvement ei algorithm popular stra...
5281     study performance limits solutions utility max...
5282     new approach problems uncertainty principle ha...
5283     study definably compact definably connected gr...
5284     despite widelyspread consensus brain complexit...
5285     provide explicit unified formulas cocycles deg...
5286     regular variation often used starting point mo...
5287     deep learning dl recently achieved tremendous ...
5288     note analyze classification problem compact me...
5289     purpose article investigate relations wsuperal...
5290     temporal object detection attracted significan...
5291     paper develops carleman type estimate immersed...
5292     several temporal logics proposed formalise tim...
5293     wild sets mathbbrn tamed use various represent...
5294     mitochondrial dna mtdna mutations cause severe...
5295     let fmathbbsdtimes mathbbsdtomathbbs function ...
5296     nanotechnology nodes feature size shrunk rapid...
5297     ngc one nearest luminous galaxies lmu lodot z ...
5298     present natural general ways building lie grou...
5299     spingapless semiconductors unique band structu...
5300     transiting exoplanet survey satellite tess emb...
5301     deal symmetries term graded vector space bundl...
5302     traffic flow prediction important research iss...
5303     nonequilibrium theory optical conductivity dir...
5304     report highresolution neutron compton scatteri...
5305     study problem semantic code repair broadly def...
5306     several authors claimed less luminous active g...
5307     solve completely irrigation problem dirac mass...
5308     one major challenges object detection propose ...
5309     dynamic topic modeling facilitates identificat...
5310     embedding complex objects vectors low dimensio...
5311     paper describes participation task track semev...
5312     multivariate linear regression model important...
5313     show certain onedimensional spin chains open b...
5314     explore potential future cryogenic direct dete...
5315     paper present family conjectural relations tau...
5316     study datadriven representations threedimensio...
5317     used molecular dynamics simulations path sampl...
5318     firstpassage time fpt ornsteinuhlenbeck ou pro...
5319     perturbation theory using selfconsistent green...
5320     affordable care act aca includes permanent rev...
5321     investigate class chanceconstrained combinator...
5322     paper considers optimal design input signals p...
5323     technique continuous unitary transformations r...
5324     sparsity solution linear regression model comm...
5325     generalization error defines discriminability ...
5326     report detection linear polarization forbidden...
5327     neural networks vulnerable adversarial example...
5328     master equations commonly used model dynamics ...
5329     megacity analysis high resolution vhr satellit...
5330     multiattributed graph matching problem finding...
5331     emphsecure search problem retrieving database ...
5332     large array telescope tracking energetic sourc...
5333     paper propose general model planebased cluster...
5334     doped free carriers substantially renormalize ...
5335     ghys sergiescu proved thompsons group hence f ...
5336     consider problem estimating entries unknown me...
5337     short article presents summary netscied networ...
5338     version gromovs cup product lemma one factor p...
5339     density functional theory nonequilibrium green...
5340     present first search dark matterinduced delaye...
5341     theoretical investigation structural elastic e...
5342     study consider unsupervised clustering categor...
5343     topology complex system key understanding stru...
5344     recurrent neural networks rnns sophisticated u...
5345     investigate projection free method namely cond...
5346     pair positive integers nk ngeq paper prove sum...
5347     introduce new operation copolar addition unbou...
5348     concurrent separation logics helped significan...
5349     ancient solutions arise study parabolic blowup...
5350     solvothermal intercalation ethylenediamine mol...
5351     tangles quantized vortex line initial density ...
5352     study supersymmetric partition function times ...
5353     let omega bounded lipschitz domain mathbbrd pu...
5354     rapidly growing interest bifacial photovoltaic...
5355     simulation wave propagation microearthquake en...
5356     paper proposes new concurrent heap algorithm b...
5357     article presents guider userguided rule induct...
5358     short time intervals planetary ephemerides tra...
5359     given two sets points b normed plane prove two...
5360     rural areas developing countries predominantly...
5361     construct obstruction existence embeddings hom...
5362     inspired river networks structures formed lapl...
5363     multiview representation learning popular late...
5364     paper studied slam method vectorbased road str...
5365     complex projective structure sigma surface thu...
5366     paper concerned paraphrase detection ability d...
5367     lead halide perovskite solar cells recently em...
5368     establish bijective correspondence certain non...
5369     knowing structure offline social network facil...
5370     work investigated detection gravitational wave...
5371     paper demonstrate connection magnetic storage ...
5372     training automatic speech recognition asr syst...
5373     dynamic networks general language describing t...
5374     many robotic applications searchandrescue requ...
5375     missing phase problem xray crystallography com...
5376     variety fundamental differences known separate...
5377     critical behavior random field model driven un...
5378     four types explicit estimators proposed estima...
5379     study multiparty communication complexity high...
5380     many engineers wish deploy modern neural netwo...
5381     paper new wiretap channel model proposed legit...
5382     route selection based performance measurements...
5383     study infinitehorizon asymptotic average optim...
5384     two wellknown turbulence models describe inert...
5385     present new model explain difference transport...
5386     investigate graph probing problem agent incomp...
5387     recent years work done develop theory general ...
5388     observed vela pulsar one year using phased arr...
5389     elasticity one key features cloud computing at...
5390     cooper pairs superconductors normally spin sin...
5391     quantum parameter estimation plays key role ma...
5392     propose multiview network text classification ...
5393     understand multiple relations developers proje...
5394     consider class participation rights ie obligat...
5395     online sparse linear regression online problem...
5396     imageguided radiation therapy benefit accurate...
5397     report coherent diffractive imaging aupd cores...
5398     context describe new sepia swedisheso pi instr...
5399     present algorithm identify sparse dependence s...
5400     nowadays quantum program widely used quickly d...
5401     paper focus option pricing models based spacet...
5402     built twostate model asexually reproducing org...
5403     paper analyzes airbnb listings city san franci...
5404     give algorithms running time osqrtklogk cdot f...
5405     known life forms based upon hierarchy interwov...
5406     aim paper design bandlimited optimal input pow...
5407     due rapid growth world wide web resource disco...
5408     supervised learning successful automatic segme...
5409     many sharing economy platforms uber airbnb bec...
5410     study generalized fermat equation x zp solved ...
5411     earlier work constructed almost strict morse n...
5412     extension deep learning towards temporal data ...
5413     consider use deep learning methods modeling co...
5414     consider scalar field profile around relativis...
5415     spin pumping refers microwavedriven spin curre...
5416     firm evidence existed ancient maya civilizatio...
5417     nurbs curve widely used computer aided design ...
5418     propose new class universal kernel functions a...
5419     large batch size training neural networks show...
5420     present bayesian method feature selection pres...
5421     brain ct become standard imaging tool emergent...
5422     three properties dielectric relaxation ultrapu...
5423     protographbased raptorlike lowdensity paritych...
5424     empirically evaluate finitetime performance se...
5425     societies increasingly dependent services supp...
5426     using twisted denominator identity derive clos...
5427     high pressure provoke spin transitions transit...
5428     lsh locality sensitive hashing emerged powerfu...
5429     paper propose design test new dualnuclei rfcoi...
5430     ooids typically spherical sediment grains char...
5431     give polynomialtime algorithm learning latents...
5432     let walphat talphaet alpha laguerre weight fun...
5433     grids allow users flexible ondemand usage comp...
5434     recently trajectorypooled deeplearning descrip...
5435     paper present approach extract ordered timelin...
5436     great interest recently applying nonparametric...
5437     minimum feedback arc set problem asks delete m...
5438     paper describes approach triple scoring task w...
5439     paper present efficient computational framewor...
5440     popular tool producing meaningful interpretabl...
5441     many problems industry social natural informat...
5442     doublefetch bugs special type race condition u...
5443     analytically study spontaneous emission single...
5444     oriented riemannian manifold spinstructure def...
5445     surrogate models provide low computational cos...
5446     recent terrorist attacks carried behalf isis a...
5447     inference hidden markov model challenging term...
5448     kinetic inductance detectors kids become attra...
5449     penalized regression models lasso extensively ...
5450     many optimization algorithms converge stationa...
5451     propose novel hierarchical generative model si...
5452     report results implementation quantum key dist...
5453     paper introduce zhusuan python probabilistic p...
5454     current action recognition methods heavily rel...
5455     study likelihood relative minima random polyno...
5456     latentvariable model introduced text matching ...
5457     develop magnetoelastic coupling model interact...
5458     consider problem highdimensional misspecified ...
5459     consider problem minimizing convex objective f...
5460     describe purification xenon traces radioactive...
5461     kite graph kitepq obtained appending complete ...
5462     consider problem graph matchability nonidentic...
5463     university curriculum campus level permajor le...
5464     linear mixed model lmm shown competitive perfo...
5465     diffusions related random walk procedures cent...
5466     continuing series works following weyls oneter...
5467     large sample size equivalence celebrated appro...
5468     prove exponential deviation inequality convex ...
5469     twopart paper addresses design retail electric...
5470     standard lstm recurrent neural networks powerf...
5471     paper apply extended landaulifschitz equation ...
5472     response delay inherent essential part human a...
5473     note contains examples hyperkhler varieties x ...
5474     introduce analyze following general concept re...
5475     present novel approach solve problem reconstru...
5476     study problem guarding orthogonal polyhedron r...
5477     positive integer complete graph mm vertices de...
5478     control sensing largescale systems results com...
5479     based periodogramratios two univariate time se...
5480     article consider conditions projection operato...
5481     paper consider divergence parabolic equation b...
5482     exhibit hamel basis concrete algebra mathfrakm...
5483     tasks identifying separation structures cluste...
5484     present two simple ways reducing number parame...
5485     study mereology parts wholes context formal ap...
5486     start variational model nematic elastomers inv...
5487     deep neural networks dnns revolutionized numer...
5488     recent advances neural word embedding provide ...
5489     iterative load balancing algorithms indivisibl...
5490     whitney immersion lagrangian sphere inside fou...
5491     simulation study energy resolution position re...
5492     paper study multiround influence maximization ...
5493     deep neural networks achieve stellar generalis...
5494     work motivated problem testing differences mea...
5495     synchronized magnetization dynamics ferromagne...
5496     permutation test known exact test procedure st...
5497     avalanche photodiodes apds practical option sp...
5498     interested development surrogate models uncert...
5499     mmo arxiv reworked generalized equivariant inf...
5500     steadystate visual evoked potentials ssveps ne...
5501     oddfrequency triplet cooper pairs believed car...
5502     formulate correspondence affine projective spe...
5503     policy evaluation key process reinforcement le...
5504     present five variants standard long shortterm ...
5505     paper introduces assumeguarantee contracts con...
5506     map phasespace trajectories externalcavity sem...
5507     show neural network functions width less equal...
5508     prove mild assumptions lattice product semisim...
5509     present example quadratic algebra given three ...
5510     let mlm total space sbundle classified element...
5511     analysis software developed high aspect ratio ...
5512     raise question existence continuous roots fami...
5513     finite word w length n contains n distinct pal...
5514     understanding feasible power flow region centr...
5515     traditional activity model selection aims disc...
5516     thesis study connections metric combinatorial ...
5517     mlpack opensource c machine learning library e...
5518     results smale dugundji allow compare homotopy ...
5519     express frchet class multivariate bernoulli di...
5520     use bonahonwongs trace map study character var...
5521     study multiperiod demand response problem smar...
5522     determine radio size distribution large sample...
5523     investigate transport properties pristine zigz...
5524     smallest eigenvalues associated eigenvectors i...
5525     paper presents speech technology center stc re...
5526     paper study determine concurrent transmissions...
5527     th international conference automata formal la...
5528     precise localization nanoparticles within cell...
5529     operating dynamic real world environment requi...
5530     relaying early effort estimation predict requi...
5531     study problem approximate ranking observations...
5532     address problem finding influential training s...
5533     network local disturbance propagate eventually...
5534     paper present transfer learning approach music...
5535     standard bifurcation dynamical system stationa...
5536     anomalous metallic state hightemperature super...
5537     principles thermoelectric phenomenon including...
5538     strong disorder interacting quantum systems gi...
5539     aim paper present comprehensive review method ...
5540     report detection confidence optical counterpar...
5541     particularly promising pathway enhance efficie...
5542     additional experimental cross sections deduced...
5543     intelligent network selection plays important ...
5544     highresolution satellite imagery increasingly ...
5545     newtons method finding unconstrained minimizer...
5546     range sensitivity algorithmic decisions expand...
5547     exoplanet transit spectroscopy enables charact...
5548     study superconductornormal statesuperconductor...
5549     skyrmion racetrack design proposed allows ther...
5550     detection high dimensional multimodal data cha...
5551     polarization troubling phenomenon lead societa...
5552     turbulence remains unsolved multidisciplinary ...
5553     weighting pvalues wellestablished strategy imp...
5554     understanding dynamics social interactions cru...
5555     cognition depend bottomup sensor feature abstr...
5556     presentations unbraided braided symmetric pseu...
5557     linear optimal power flow lopf algorithms use ...
5558     article review authors concerning construction...
5559     study rank lnormbased tucker ltucker decomposi...
5560     search habitable exoplanets life beyond solar ...
5561     convolutional autoregressive models recently d...
5562     autoreactive b cells central role pathogenesis...
5563     establish exact mapping equilibrium imaginary ...
5564     recently increased computational power data av...
5565     research humanrobot collaboration humanrobot t...
5566     paper describes three variants counterexample ...
5567     work generalization pregrss inequality establi...
5568     electroencephalography eeg based brain compute...
5569     realtime systems running timing constraints sc...
5570     rational solutions painlevii equation appear s...
5571     phast software package written standard fortra...
5572     informationtheoretic bayesian regret bounds ru...
5573     study portfolio selection problem continuousti...
5574     present ongoing systematic search extragalacti...
5575     describe time series multivariate adaptive reg...
5576     major challenge xray computed tomography ct re...
5577     classification problems security settings usua...
5578     liouville domain w whose boundary admits perio...
5579     study deterministic version one twodimensional...
5580     operational semantics enormously successful la...
5581     particlehole ph symmetry halffilled landau lev...
5582     importance sampling become indispensable strat...
5583     consider problem call secure grouping dividing...
5584     let mathcal c subcategory category topologized...
5585     according eurobarometer report eu media use ma...
5586     introduce novel framework adversarial training...
5587     paper considers problem achieving attitude con...
5588     analysis clouds earths atmosphere important va...
5589     nowadays witnessing wide adoption machine lear...
5590     theory statistical inference along strategy di...
5591     scalar reactiondiffusion equation known stabil...
5592     new results functional prediction ornsteinuhle...
5593     goal dissertation study sequence polymorphism ...
5594     known connected translation invariant ndimensi...
5595     obtain reduction vectorial ribaucour transform...
5596     human relations driven social events people in...
5597     present novel framework addressing nonlinear l...
5598     rfold analogues whitney trick air since howeve...
5599     materialbased ie lagrangian methodology exact ...
5600     lu boutilier proposed novel approach based min...
5601     event sequence asynchronously generated random...
5602     let finite von neumann algebra resp type ii fa...
5603     let q positive integer recently niu liu proved...
5604     growing popularity autonomous systems creates ...
5605     paper discusses stably trivial torsors spin or...
5606     liu et al provide comprehensive account resear...
5607     prove several results chordal graphs weighted ...
5608     hotspots surfaceenhanced resonance raman scatt...
5609     complex computer codes often time expensive di...
5610     domain adaptation crucial many realworld appli...
5611     microblogging sites direct platform users expr...
5612     paper discusses local linear smoothing estimat...
5613     among ergodic actions compact quantum group ma...
5614     formulate called varma covariance matching pro...
5615     devise approach calculation scaling dimensions...
5616     problem automatically generating computer prog...
5617     flexible transparent electronics presents new ...
5618     decayatrest experiment deltacp violation labor...
5619     present kernelindependent method applies hiera...
5620     anyone need data system today confronted numer...
5621     consider problem sequentially making decisions...
5622     consider problem modeling hysteresis finitesta...
5623     establish effective meanvalue estimates wide c...
5624     report terahertz spectroscopy quantum spin dyn...
5625     work study benefit partial relay cooperation c...
5626     testdriven development tdd agile development a...
5627     let pequiv mod rational prime number mod p cub...
5628     aim study investigate dynamics possible comets...
5629     singleparticle reconstruction spr cryoelectron...
5630     realworld reward function perfect sensory erro...
5631     let scdot denote sumofproperdivisors function ...
5632     formation precipitated zirconium zr hydrides c...
5633     caofes semiconducting oxysulfide polar layered...
5634     lowfrequency polarisation observations pulsars...
5635     recent years witnessed rise many successful ec...
5636     market rough markovian meanreverting stochasti...
5637     due interdisciplinary nature devices controlle...
5638     nonlinear oscillators key modelling tool many ...
5639     recently proposed multilayer convolutional spa...
5640     paper considers planar figure combinatorial po...
5641     deep learning dl methods show good performance...
5642     humans sensors autonomous vehicle limited sens...
5643     competing risks data arise frequently clinical...
5644     compare contrast statistical physics quantum p...
5645     construct cofibration category structure categ...
5646     open questions respect computational complexit...
5647     paper proposes drone squadron optimization new...
5648     original imagenet dataset popular largescale b...
5649     particle gibbs pg sampler markov chain monte c...
5650     present paper part series articles dedicated e...
5651     ellerman bombs ebs kind solar activities sugge...
5652     detailed numerical study long time behaviour d...
5653     let bf r pearson correlation matrix normal ran...
5654     past years witnessed emergence new discipline ...
5655     paper consider interior transmission eigenvalu...
5656     unambiguous nondeterministic finite automata i...
5657     propose novel semisupervised approach towards ...
5658     purpose clickbait make link appealing people c...
5659     secure multiparty computation mpc enables set ...
5660     multiple changes earths climate system observe...
5661     field distributed constraint optimization gain...
5662     principle minimal extension standard model par...
5663     consider problem transferring policies real wo...
5664     address problem learning vector representation...
5665     conditions geometric ergodicity multivariate a...
5666     recently shown problem testing global convexit...
5667     several useful variancereduced stochastic grad...
5668     developing applications interactive space diff...
5669     increasing complexity distribution network cal...
5670     network embedding methods aim learning lowdime...
5671     underactuation ubiquitous human locomotion ubi...
5672     study threecomponent fermionic fluid optical l...
5673     paper presents widely applicable approach solv...
5674     natural artificial smallscale swimmers may oft...
5675     present first measurements tritium betadecay s...
5676     notes constitute chapter lecole de physique de...
5677     n construct separable metric space mathbbun un...
5678     bike sharing vital component modern multimodal...
5679     model relaxed memory propose confusionfree eve...
5680     tensor decompositions canonical format tensor ...
5681     even though forecasting literature agrees aggr...
5682     recent progress applying machine learning jet ...
5683     skewsymmetrizable cluster algebra mathcal prin...
5684     link prediction one fundamental problems compu...
5685     valiant showed complexity class vpe families p...
5686     previously designed cryogenic thermal heat swi...
5687     multiple generalized additive models gams type...
5688     show elongated magnetic skyrmions host majoran...
5689     consider family meromorphic functions f form f...
5690     freiberg zhle introduced developed harmonic ca...
5691     heat exchanger modeled closed domain containin...
5692     number highlevel languages libraries proposed ...
5693     linear logic introduced girard resourcesensiti...
5694     paper propose two novel physical layer aware a...
5695     entropy principle formulation mller liu common...
5696     bots social media accounts controlled software...
5697     optimal control problems without control costs...
5698     text representations using neural word embeddi...
5699     twodimensional mathematical model quadraticall...
5700     formulate new family high order onsurface radi...
5701     parafac multimodal factor analysis model suita...
5702     concepts mathematical crystallography group th...
5703     participant peertopeer network prefers freerid...
5704     foss acronym free open source software foss su...
5705     forefront nanochemistry exists research endeav...
5706     linearscaling electronic structure methods bas...
5707     recently social media seen promote democratic ...
5708     paper discusses discretetime maps form xk fxk ...
5709     understand biology cancer joint analysis multi...
5710     give infinitely many component links unknotted...
5711     computational design optimization fluid dynami...
5712     paper examines software vulnerabilities common...
5713     paper using logistic sine tent systems define ...
5714     dynamic economic dispatch valvepoint effect de...
5715     hep community approaching era excellent perfor...
5716     brains need predict body reacts motor commands...
5717     paper propose study opportunistic bandits new ...
5718     quantile estimation problem presented fields q...
5719     dynamical downscaling highresolution regional ...
5720     riemannian gstructure compute divergence vecto...
5721     study anomalous prevalence integer percentages...
5722     main result paper rate convergence hermitetype...
5723     paper considers two different problems traject...
5724     difficulty validating largescale quantum devic...
5725     anomalies timeseries data give essential often...
5726     transportation agencies opportunity leverage i...
5727     dual motivic steenrod algebra mod ell coeffici...
5728     let tmf toeplitz quantization real cinfty func...
5729     paulsen problem basic open problem operator th...
5730     study mechanisms characterize asymptotic conve...
5731     decline mars global magnetic field billion yea...
5732     paper propose new framework segmenting feature...
5733     demonstrate topological classification vortice...
5734     paper proposes selfimitation learning sil simp...
5735     consider problem controlling spatiotemporal pr...
5736     paper discuss existing approaches bitcoin paym...
5737     present extension effective field theory frame...
5738     build collaborative filtering recommender syst...
5739     paper presents work developing parallel comput...
5740     consider wideaperture surfaceemitting laser sa...
5741     ability reliably predict critical transitions ...
5742     propose new iteratively reweighted least squar...
5743     study gap state pension provided italian pensi...
5744     powerlawdistributed species counts clone count...
5745     vortices play crucial role determining propert...
5746     present new solution problem classifying type ...
5747     simulating complex processes fractured media r...
5748     well known x cwcomplex every weak homotopy equ...
5749     integer k geq apply gluing methods construct s...
5750     report constraints global cm signal due neutra...
5751     electricity distribution grid designed cope lo...
5752     paper addresses structures state space quasipe...
5753     vector embedding foundational building block m...
5754     consider multicomponent quantum mixtures boson...
5755     paper present novel joint approach optimising ...
5756     paper show using delignelusztig theory kawanak...
5757     study formal properties correspondences curves...
5758     oxidative stress pathological hallmark neurode...
5759     paper presents thorough analysis dimensional s...
5760     motivation although rich literature methods as...
5761     many applications require stochastic processes...
5762     privacy security two universal rights ensure d...
5763     paper summarizes development veamy objectorien...
5764     musical programming languages developed purely...
5765     experiments show k atm pressure transfer free ...
5766     investigate impact general conditions theoreti...
5767     main injector mi fermilab currently produces h...
5768     exist nontrivial stationary points euclidean a...
5769     spin transport isotropic heisenberg model sect...
5770     promise compressive sensing cs offset two sign...
5771     paper investigate multimessage authentication ...
5772     review topics theory cellular automata dynamic...
5773     demonstrate explicitly correspondence protecte...
5774     paper introduce variational autoencoder vae en...
5775     consider directed variant negativeweight perco...
5776     article analyze generalized trapezoidal rule i...
5777     remarkable discovery nasas kepler mission wide...
5778     obtain estimation error rates sharp oracle ine...
5779     simple calgebra calgebra b proved every closed...
5780     present first gasgrain astrochemical model ngc...
5781     citebickelnonparametric developed general fram...
5782     last decades dispersal studies benefitted use ...
5783     additive fast fourier transform finite field c...
5784     working framework borel reducibility study var...
5785     order fully function human environments robot ...
5786     general framework solving subspace clustering ...
5787     study twodimensional geometric knapsack proble...
5788     widely established extreme space weather event...
5789     develop empirical bayes eb algorithm matrix co...
5790     electron correlation effects studied zrsis usi...
5791     deep generative models learn mapping low dimen...
5792     building deploying software highend computing ...
5793     adversarially trained deep neural networks sig...
5794     consider hydrogen atom confined timedependent ...
5795     constant pairing hamiltonian holds exact solut...
5796     paper considers obtain mcmc quantitative conve...
5797     let fmathbb bn mathbb bn holomorphic map study...
5798     energyconserving angular momentumchanging coll...
5799     economic activities agglomerate others agglome...
5800     ultrahigh throughput lowdensity parity check l...
5801     paper define generalized qanalogues euler sums...
5802     mapping process continuous configuration space...
5803     compare predictions stochastic closure theory ...
5804     energy consumption great deal concern recent y...
5805     let omega pseudoconvex domain mathbb cn smooth...
5806     application domains civilian unmanned aerial s...
5807     opinion polls bridge public opinion politician...
5808     use standard robotic platforms accelerate rese...
5809     datarich era astronomy growing reliance automa...
5810     chimera states example intriguing partial sync...
5811     increasing demands applications virtual realit...
5812     paper deal multiplicity concentration positive...
5813     describe inferactive data analysis sonamed den...
5814     paper present promising accurate prefix boosti...
5815     recently proposed generalized minmax gmm kerne...
5816     quantum mechanics postulates measurement influ...
5817     given pseudoword suitable pseudovarieties asso...
5818     paper examines association household healthcar...
5819     prove certain conditions function pair varphi ...
5820     ability cool atoms doppler limit minimum tempe...
5821     paper dedicated new methods constructing weigh...
5822     common data mining task networks community det...
5823     advancements technology culture lead changes l...
5824     new test normality based standardised empirica...
5825     consider problem decision making fair underlyi...
5826     consider bilaplacian eigenvalue problem modes ...
5827     let k field g finite group let g act function ...
5828     social abstract argumentation principled way a...
5829     consider parametric learning problem objective...
5830     study addresses problem identifying meaning un...
5831     study subblockconstrained codes recently gaine...
5832     prove arbitrarily large values zetait geq egam...
5833     ion trap quantum computer collective motional ...
5834     investigate models mitogenactivated protein ki...
5835     university east web portal academic web based ...
5836     classify dispersive poisson brackets one depen...
5837     work obtain liouville theorem positive bounded...
5838     paper studies semiparametric contextual bandit...
5839     physical adaptive quantumenhanced metrology sc...
5840     paper shows generalizations operads equipped r...
5841     extracting characteristics training datasets c...
5842     dynamical dark energy recently suggested promi...
5843     muscle synergy concept provides widelyaccepted...
5844     two classifications second order odes cubic re...
5845     problem learning structural equation models se...
5846     group g rmathbb zmathbb zpmathbb q denote hat ...
5847     immunotherapy plays major role tumour treatmen...
5848     onetoone correspondence infinitesimal motions ...
5849     first develop general framework signless lapla...
5850     one major issues interconnected power system l...
5851     paper demonstrates use genetic algorithms evol...
5852     work presents lowcost robot controlled raspber...
5853     nvidia volta gpu microarchitecture introduces ...
5854     orion kl one frequently observed sources galax...
5855     address problem latent truth discovery ltd sho...
5856     investigate evolution vortexsurface fields vsf...
5857     possible route extract electronic nuclear dyna...
5858     address problem estimating human pose body sha...
5859     shall introduce notion picard group inclusion ...
5860     aim paper provide discussion current direction...
5861     spreading prevalence big data many advances re...
5862     consider problem reconstructing signal multila...
5863     let lg subcritical gjms operator evendimension...
5864     random scattering usually viewed serious nuisa...
5865     deployment deep neural networks dnns safety se...
5866     coupled evolution eroding cylinder immersed fl...
5867     classical problem causal inference matching tr...
5868     propose stochastic extension primaldual hybrid...
5869     study combinatorial multiarmed bandit probabil...
5870     deep neural network algorithms difficult analy...
5871     information bottleneck ib method extracting in...
5872     simulations charge transport graphene presente...
5873     paper propose new type graph denoted embeddedg...
5874     analysis entanglement entropy subsystem onedim...
5875     efficiency game typically quantified price ana...
5876     equationbyequation ebe method proposed solve s...
5877     reduction restricting spectral parameters k k ...
5878     existing blackbox attacks deep neural networks...
5879     many iterative procedures stochastic optimizat...
5880     provide unified framework proving reidemeister...
5881     paper consider problem formally verifying safe...
5882     method moments mollification method study cent...
5883     study problem minimizing strongly convex smoot...
5884     venusian surface studied measuring radar refle...
5885     airshowers measured pierre auger observatory a...
5886     reward augmented maximum likelihood raml simpl...
5887     unmanned aerial vehicles uavs equipped biorada...
5888     optimal sensor placement central challenge des...
5889     consider onedimensional two component extended...
5890     monitoring large dynamic networks major chal l...
5891     paper study general alphabetametrics alpha rie...
5892     introduce measure fairness algorithms data reg...
5893     technological parasitism new theory explain ev...
5894     popular setting medical statistics group seque...
5895     reliable wireless connection operator teleoper...
5896     recent advancements quantum annealing hardware...
5897     life evolved planet means combination darwinia...
5898     approximate full configuration interaction fci...
5899     search gammaray optical periodic modulations d...
5900     jd jacksons classical electrodynamics textbook...
5901     opera experiment designed search numu rightarr...
5902     paper explains method calculate coefficients a...
5903     determine exact timedependent nonidempotent on...
5904     two main families reinforcement learning algor...
5905     storage transmission big data discussed paper ...
5906     graphene graphene like two dimensional materia...
5907     skilled robotic manipulation benefits complex ...
5908     evaluation validation complicated control syst...
5909     energyefficiency plays significant role given ...
5910     study properties classes closure operators clo...
5911     compact multipleinputmultipleoutput mimo anten...
5912     tensor decompositions used various data mining...
5913     classifiers operating dynamic real world envir...
5914     present definition intersection homology real ...
5915     starshades leading technology enable direct de...
5916     paper covers formulation inverse quadratic pro...
5917     twisting binary form fxyinmathbbzxy degree dge...
5918     defects gapped boundaries provide possible phy...
5919     present paper second part twofold work whose f...
5920     paper aims develop new robust approach feature...
5921     paper describes general framework learning hig...
5922     fourthorder theory gravity considered terms dy...
5923     random walk wn separable geodesic hyperbolic m...
5924     nearly two centuries ago talbot first observed...
5925     perform numerical study fmodel domainwall boun...
5926     neural network training relies ability find go...
5927     prototypical hydrogen bond water dimer hydroge...
5928     make mixture milners picalculus previous work ...
5929     using polarizationresolved transient reflectio...
5930     paper considers problem fault detection isolat...
5931     majority industrialstrength objectoriented oo ...
5932     model ice floe breakup ocean wave forcing marg...
5933     hidden markov models hmms popular time series ...
5934     focus current research identify people interes...
5935     recent character phonemebased parametric tts s...
5936     multirobot systems central decision maker spec...
5937     paper addresses stability coauthorship network...
5938     optimizing deep neural networks dnns often suf...
5939     well accepted knowing composition orbital evol...
5940     microorganisms bacteria one first targets nano...
5941     field exploratory data mining local structure ...
5942     automatic verification programs maintain unbou...
5943     associate every central simple algebra involut...
5944     sealevel rise slr magnifying frequency severit...
5945     present factorized hierarchical variational au...
5946     cosmological surveys far infrared known suffer...
5947     roomtemperature ionic liquids rtil new class o...
5948     use spreadsheets industry widespread companies...
5949     thesis presents original results two domains d...
5950     extended abstract describe analyze lossy compr...
5951     propose model equity trading population agents...
5952     collect representative corpora major periods c...
5953     investigate deep generative models exchange mu...
5954     many machine learning tasks require finding pe...
5955     let mu borelian probability measure mathbfgmat...
5956     hybrid cloud integrated cloud computing enviro...
5957     riskaverse model predictive control mpc offers...
5958     test neutral models evolution english word fre...
5959     homomorphic encryption encryption scheme allow...
5960     present extension monte carlo tree search mcts...
5961     differencetosum power ratio proposed used supp...
5962     paper construct new even constrained bc type t...
5963     introduce logic sf itle intuitionistic tempora...
5964     high density implants metals often lead seriou...
5965     puzzle classic reconfiguration puzzle fifteen ...
5966     address important question whether newly disco...
5967     joint analysis multiple phenotypes increase st...
5968     among ntype metal oxide materials used planar ...
5969     introduce framework statistical analysis funct...
5970     independent component analysis ica widely used...
5971     context substantial fraction protoplanetary di...
5972     part public evaluation challenge detection cla...
5973     topological semimetal novel state quantum matt...
5974     small bodies solar system like asteroids trans...
5975     discuss nature symmetry breaking associated co...
5976     paper introduce generalized value iteration ne...
5977     hot jupiters receive strong stellar irradiatio...
5978     interferenceaware resource allocation time slo...
5979     define switch function function interval finit...
5980     consider schrdinger operators periodic potenti...
5981     report first comparison distant caesium founta...
5982     first hardy rellich inequalities defined subma...
5983     purpose analysis optimized spin ensemble traje...
5984     despite recent progress laminarturbulent coexi...
5985     goldbach conjecture one famous open mathematic...
5986     unknown continuous distribution real line cons...
5987     paper revisit recurrent backpropagation rbp al...
5988     weighted dirichlet space mathcaldp p associate...
5989     achieving symbiotic blending reality virtualit...
5990     segmental duplications sds lowcopy repeats lcr...
5991     propose adaptive bandwidth selector via cross ...
5992     consider mesoscopic fourterminal josephson jun...
5993     let inductive limit sequence xrightarrowphi ax...
5994     study problem detecting change points cps char...
5995     recent years emerging interest occurred integr...
5996     enquire quasimanybody localization topological...
5997     present tomographic crosscorrelation galaxy le...
5998     earthquake early warning eew systems effective...
5999     model gatebased quantum computation qubits con...
6000     propose approximate approach studying relativi...
6001     occasionally developers need ensure compiler t...
6002     classification sequence data topic interest dy...
6003     paper introduce notion central uextension doub...
6004     aim paper establish metrical coincidence commo...
6005     nonnegative inverse eigenvalue problem niep as...
6006     paper replicates extends refutes conclusions m...
6007     bidirectional transformations different data r...
6008     recent advances microelectromechanical systems...
6009     present embedding approach semiconductors insu...
6010     last decade use simple rating comparison surve...
6011     introduce reduction distinct distances problem...
6012     report preparation interface graphene strong r...
6013     trapping manipulation particles using laser be...
6014     nested chinese restaurant process ncrp topic m...
6015     following work keel tevelev give explicit poly...
6016     improved wetting boundary implementation strat...
6017     paper propose sexstructured entomological mode...
6018     boolean algebra carries strictly positive exha...
6019     work verifies instrumental characteristics ccd...
6020     polarizationbased filtering fiber lasers wellk...
6021     rising attention spreading fake news unsubstan...
6022     recent discovery gravitational waves ligovirgo...
6023     approximate probabilistic inference algorithms...
6024     datadriven spatial filtering algorithms optimi...
6025     bayesian optimisation bo refers class methods ...
6026     number improvements added existing analytical ...
6027     seltens game kidnapping model probability capt...
6028     model pruning seeks induce sparsity deep neura...
6029     accurate software defect prediction could help...
6030     paper presents estimator semiparametric models...
6031     propose new sentence simplification task split...
6032     review constructive approach first introduced ...
6033     heterogeneous wireless networks hwns composed ...
6034     paper focuses multiscale approaches variationa...
6035     present novel approach prediction anticancer c...
6036     dark matter momentum velocitydependent interac...
6037     rapid development spaceborne imaging technique...
6038     largescale variations still pose challenge unc...
6039     naturally occurring radioisotope si represents...
6040     discovery first transiting extrasolar planetar...
6041     graph games omegaregular winning conditions pr...
6042     word embedding become fundamental component ma...
6043     concept evolutionarily stable strategy ess int...
6044     construct estimator lvy density pure jump lvy ...
6045     given kinmathbb n study vanishing dirichlet se...
6046     prime p let hat fp finitely generated free pro...
6047     control model typically classified three forms...
6048     present first approach pointcloud image transl...
6049     chapter highluminosity large hadron collider h...
6050     jets boosted heavy particles typical angular s...
6051     study presents systems submitted university te...
6052     one main challenges parametrization geological...
6053     paper consider finite element approaches compu...
6054     large class orthogonal basis functions recent ...
6055     paper considers new method binary asteroid orb...
6056     difficulty multiclass classification generally...
6057     present solution google cloud youtubem video u...
6058     remote sensing image classification fundamenta...
6059     quasitriangular hopf algebra exists universal ...
6060     paper proposes lowlevel visual navigation algo...
6061     title suggests describe justify presentation r...
6062     investigate nature magnetic phase transition i...
6063     additive manufacturing printing novel manufact...
6064     present results spectroscopic measurements ext...
6065     assuming three strongly compact cardinals cons...
6066     simulation model based parallel systems establ...
6067     recent years increasing number observational s...
6068     separating audio scene isolated sources fundam...
6069     multiparameter onesided hypothesis test proble...
6070     often large high dimensional datasets collecte...
6071     introduce model shortterm dynamics financial a...
6072     inductive learning broad concept algorithm abl...
6073     motivated recent experiments investigate press...
6074     paper analyse convergence properties vcycle mu...
6075     shall consider result feldman sharp bakertype ...
6076     work mainly study influence warping module one...
6077     describe general theory surfacecatalyzed bimol...
6078     fast algorithms optimal multirobot path planni...
6079     argue hierarchical methods become key modular ...
6080     paper investigate impact diverse user preferen...
6081     paper addresses problem passivation class nonl...
6082     present new modelbased integrative method clus...
6083     study pointwisegeneralizedinverses linear maps...
6084     compute cup product pairings integral cohomolo...
6085     present sound automated approach synthesize sa...
6086     paper presents interconnected controlplanning ...
6087     study formulate lagrangian lc rc rl rlc circui...
6088     note provide critical commentary two articles ...
6089     paper focus numerical simulation phase separat...
6090     distributed systems based quantum recursive ne...
6091     lower bound rate decrease time uniform radius ...
6092     datasets often used multiple times successive ...
6093     consider strictly stationary stochastic proces...
6094     present lymanalpha flux power spectrum measure...
6095     explore warped adstimesw md backgrounds genera...
6096     polariton lasing coherent emission arising mac...
6097     investigation reversibility directional hierar...
6098     widelyaccepted need revise current forms healt...
6099     extend framework kawamura cook investigating c...
6100     despite growing prominence generative adversar...
6101     tabulate spontaneous emission rates possible e...
6102     various experimental techniques revealed predo...
6103     exploration complex domains key challenge rein...
6104     present experimental study local collective ma...
6105     fix monic polynomial fx mathbb fqx finite fiel...
6106     objective work augment basic abilities robot l...
6107     present computational method evaluate endtoend...
6108     many timeseries data including text movies bio...
6109     introduce community detection algorithm fluid ...
6110     paper aims identify three electrical systems s...
6111     study purpose addressing four questions lie ba...
6112     define parahoric cgtorsors certain bruhattits ...
6113     identification reducedorder models highdimensi...
6114     apprenticeship learning al kind learning demon...
6115     effects surface tension fullynonlinear long su...
6116     characterization relative weak mixing wdynamic...
6117     extreme ultraviolet variability experiment eve...
6118     weighting pixel contribution considering locat...
6119     study dispersion point set notion closely rela...
6120     paper additive bifree convolution defined gene...
6121     characterise finite axiomatisability intractab...
6122     work focused searching geodesic interpretation...
6123     photonic circuit generally described structure...
6124     early researchers began focus security importa...
6125     work consider onedimensional diffusion process...
6126     haslhofer mller proved compactness theorem fou...
6127     wardrop equilibria nonatomic congestion games ...
6128     consider problem learning binary classifier po...
6129     knights landing knl code name secondgeneration...
6130     conjecture lehmer proved true proof mainly rel...
6131     paper study existence uniqueness pseudo sasymp...
6132     silent speech challenge benchmark updated new ...
6133     magnetic field induced rearrangement cycloidal...
6134     present latest major release version quantifie...
6135     contribution present numerical experimental re...
6136     importance speaking style authentication human...
6137     main result paper fixed point formula equivari...
6138     study fundamental question lattice dynamics me...
6139     decomposability cartesian product two nondecom...
6140     magic system two imaging atmospheric cherenkov...
6141     heterogeneity one important feature complex sy...
6142     generative adversarial networks gan approximat...
6143     world health organization reported million dea...
6144     advanced driver assistance systems adas signif...
6145     relational reasoning central component general...
6146     propose new algorithm computation singular val...
6147     capacitated fixedcharge network flows used mod...
6148     establish new connection value policy based re...
6149     twodimensional materials tremendous interest i...
6150     paper investigate use adversarial domain adapt...
6151     study elliptic curve ea axyaxxyxx call geometr...
6152     paper introduce notion omni nlie algebra show ...
6153     study artificial neural network trained classi...
6154     deep convolutional neural networks cnns demons...
6155     generalized yangian mean yangianlike algebra o...
6156     obtain asymptotics large hankel determinants w...
6157     galaxy intrinsic alignments ia critical uncert...
6158     paper introduce new mathematical model active ...
6159     fixing bugs important phase software developme...
6160     give simple recursion computes triply graded k...
6161     develop extended multifractal analysis based l...
6162     building recent theory established connection ...
6163     iterative hard thresholding iht class projecte...
6164     binary neural networks bnn studied extensively...
6165     define generalized connected sum generic close...
6166     emissivity common materials remains constant t...
6167     satellite radar altimetry one powerful techniq...
6168     investigate adiabatic magnetization process on...
6169     cyberphysical software continually interacts p...
6170     consider asymptotic distribution cell x x cont...
6171     paper explores dimensional topological quantum...
6172     expand cross section geodesic flow tangent bun...
6173     study time evolution thin liquid film coating ...
6174     machine learning algorithms sensitive socalled...
6175     simplified approach proposed investigate conti...
6176     paper propose family graph partition similarit...
6177     heterogeneous wireless networks smallcell depl...
6178     methods currently exist making arbitrary neura...
6179     give criterion existence noncommutative crepan...
6180     observe manybody pairing twodimensional gas ul...
6181     complex mathematical models interaction networ...
6182     immense class physical counterexamples four di...
6183     complex networks used represent complex system...
6184     uniform space x mu introduce realcompactificat...
6185     acceleration manipulation ultrashort electron ...
6186     paper derive second order estimate nd hessian ...
6187     construction meaningful graph topology plays c...
6188     study edge transport properties interacting ha...
6189     demonstrate experimentally longrange hydrodyna...
6190     twodimensional atomic arrays exhibit number in...
6191     paper applied multifractal detrended fluctuati...
6192     present new deep meta reinforcement learner ca...
6193     transiting superearths orbiting bright stars s...
6194     consider two chains made n independent oscilla...
6195     paper bruno salvy author introduced measured m...
6196     paper presents fast effective computer algebra...
6197     detecting weak seismic events noisy sensors di...
6198     wellknown exploiting label correlations import...
6199     complexity analysis becomes common task superv...
6200     resonance energy transfer ret inherently aniso...
6201     single individual haplotyping nphard problem e...
6202     cellular dendritic microstructures result func...
6203     quantum system particles exist localized phase...
6204     projective reedmuller codes introduced lachaud...
6205     present algorithm classification tasks big dat...
6206     study set uniquely determined tilting cotiltin...
6207     corruptive behaviour politics limits economic ...
6208     knowing biomolecules structure inherently link...
6209     study quantum synchronization pair twolevel sy...
6210     propose experimentally demonstrate technique c...
6211     since discovery meissner effect superconductor...
6212     prove local faberkrahn inequality solutions u ...
6213     notes written supplementary material fivehour ...
6214     recent work bindini de pascale introduced regu...
6215     let alpha mathcalc mathcald symmetric monoidal...
6216     summarizes recent work wakefields impedances f...
6217     community detection graphs problem finding gro...
6218     paper consider dataset comprising press releas...
6219     paper investigates effects finite flat porous ...
6220     well known many optimization methods including...
6221     control spins spin charge conversion organics ...
6222     recent research shown potential utility deep g...
6223     single measurement vector smv models widely st...
6224     dynamical materials capable responding optical...
6225     categorization necessary many decision making ...
6226     millimeter wave communications rely narrowbeam...
6227     workshop invites researchers practitioners par...
6228     motivated description nurowskis conformal stru...
6229     study effect electron correlations system cons...
6230     propose method learning markov network structu...
6231     work design machine learning based method onli...
6232     study proposes control strategy efficient semi...
6233     demonstrate range stateoftheart machine learni...
6234     study application crossedproduct functors baum...
6235     describe complete list casimirs euler hydrodyn...
6236     paper presents novel design crawler robot capa...
6237     bifurcation qualitative change family solution...
6238     manual annotations temporal bounds object inte...
6239     onedimensional electron systems presence coulo...
6240     experiment shows thermal emission phonon contr...
6241     paper addresses distributed average tracking p...
6242     study twodimensional massless dirac equation p...
6243     humans take advantage real world symmetries va...
6244     consider fractional hartree equation lsupercri...
6245     work studies problem stochastic dynamic filter...
6246     consider optimal stopping problem constraint p...
6247     give survey generalization quillensullivan rat...
6248     fitzhughnagumo equation provides simple mathem...
6249     paper give conditional lower bound nomegak run...
6250     present properties advantages new magnetooptic...
6251     prove bchi topology automatic topology polish ...
6252     obtaining accurate estimates satellite drag co...
6253     crossvalidation predictive models defacto stan...
6254     paper deal problem inferring causal directions...
6255     discriminator integer sequence sii introduced ...
6256     reductive group g defined algebraically closed...
6257     present approach towards robust lane tracking ...
6258     work provide couple contributions analysis lon...
6259     integrating factor exponential time differenci...
6260     control multihop wireless networks distributed...
6261     world global trading maritime safety security ...
6262              describe design cci cryptocurrency index
6263     thirdgeneration neural networks spiking neural...
6264     paper propose nonlinearity generation method s...
6265     datatarget association important step multitar...
6266     recent years monaural speech separation formul...
6267     investigate largesample properties treatment e...
6268     nonlinear dynamical stochastic models ubiquito...
6269     provide nonperturbative theory photoionization...
6270     focus two particular aspects model risk inabil...
6271     bright ringlike structure emission cn molecule...
6272     measuring entity relatedness fundamental task ...
6273     present study investigate solutions fractional...
6274     following related work law policy two notions ...
6275     study boundary conditions topological sigma mo...
6276     prove pointwise decay solutions three linear e...
6277     answering problem posed second author mathover...
6278     many different classification tasks need manag...
6279     atomic force microscope afm capable producing ...
6280     considering advantages dealing highdimensional...
6281     extend approach wall modeling via function enr...
6282     aim work study existence periodic solutions nt...
6283     paper proposes totally constructive approach p...
6284     according report online million unique users s...
6285     leonard pair pair diagonalizable linear transf...
6286     rise fall artificial neural networks well docu...
6287     approaches algorithmic fairness constrain mach...
6288     predictive geometric models deliver excellent ...
6289     almost decade passed since serendipitous disco...
6290     perpetual points pps special critical points m...
6291     squared error loss remains commonly used loss ...
6292     study complex systems benefits graph models an...
6293     paper scheme encryption decryption colored ima...
6294     given manifold hatm two homeomorphic surfaces ...
6295     report describes development aptamer sensing a...
6296     paper einstein metrics compact simple lie grou...
6297     prove quasiisometric map generally coarse embe...
6298     supercomputing platforms available high perfor...
6299     deep learning dl defines new datadriven progra...
6300     radioloud highredshift quasars hrqs although k...
6301     work investigates training conditional random ...
6302     availability large idea repositories eg us pat...
6303     object paper study etaricci solitons varepsilo...
6304     show active transport ions interpreted entropy...
6305     order avoid wellknow paradoxes associated self...
6306     k n kc instance mdstpir problem comprised k me...
6307     deep neural networks dnns convolutional neural...
6308     present graph attention networks gats novel ne...
6309     prevalence online media attracted researchers ...
6310     technological advancements field mobile device...
6311     singular values products standard complex gaus...
6312     griffiths conjecture asserts every ample vecto...
6313     machine learning deep learning particular adva...
6314     position paper question current practice calcu...
6315     observation metallic ground states variety two...
6316     autonomous surface vehicles asvs provide effec...
6317     paper present technique using bootstrap estima...
6318     kineticrange turbulence magnetized plasmas par...
6319     lattice kpolytope convex hull set points dimen...
6320     report ionoptical system serves microscope ult...
6321     dependency parsing important nlp task popular ...
6322     let frak f class group subgroup finite group g...
6323     assessing impact individual actions performed ...
6324     active galaxy center virgo cluster ideal study...
6325     decades experimental theoretical numerical res...
6326     local induction equation binormal flow space c...
6327     let tepsilon lifespan solution schrdinger equa...
6328     classical ctl temporal logics built systems in...
6329     information memory locations accessed program ...
6330     address problem generating query suggestions s...
6331     cosmic axion spin precession experiment casper...
6332     quantum reactive scattering calculations repor...
6333     subaru strategic program ssp ambitious multiba...
6334     consider estimation hidden markovian process u...
6335     nice differentialgeometric framework nonabelia...
6336     report present new reinforcement learning rl b...
6337     observations astrophysical objects galaxies li...
6338     flood risk changes time influenced natural soc...
6339     central dogma molecular biology principal fram...
6340     generalize bridge analysis synthesis estimator...
6341     compute exact norms leray transforms family ma...
6342     paper gives definitions extra superincreasing ...
6343     knowledge transfer impacts performance deep le...
6344     primitive dirichlet character chi modulo q def...
6345     motivated geometric problems signal processing...
6346     pyrochlore magnet rm ybtio proposed quantum sp...
6347     present neurosymbolic framework lifelong learn...
6348     though deep neural networks achieved stateofth...
6349     secrecy distributedstorage system passwords st...
6350     work calculate convergence rate finite differe...
6351     sparse matrix estimation problem consists esti...
6352     short paper formulate parameter estimation fin...
6353     compartmental equations primary tools disease ...
6354     surface energy magnetic domain wall dw strongl...
6355     using fencheleggleston theorem convex hulls ex...
6356     study finitesize fluctuations network spiking ...
6357     study static distributions ferrofluid submitte...
6358     information stored encrypted format definition...
6359     large hierarchy planck scale weak scale explai...
6360     many scenarios language identification task us...
6361     examplebased mesh deformation methods powerful...
6362     study computational complexity short sentences...
6363     primary goal galaxy surveys tighten constraint...
6364     weakly dependent time series regression model ...
6365     electric field effect magnetic anisotropy stud...
6366     coevolving adaptive voter models avms natural ...
6367     article provides weighted model confidence set...
6368     mapping spatial distribution poverty developin...
6369     magnetic signature urban environment investiga...
6370     cooperative hierarchical structure common sign...
6371     present model origin extended law star formati...
6372     r guralnick linear algebra appl proved two hol...
6373     learning sparse linear models twoway interacti...
6374     convolutional neural networks cnns achieved st...
6375     regular cardinal kappa formula modal mucalculu...
6376     fundamental challenge largescale cloud network...
6377     hourglasslike dispersion spin excitations comm...
6378     propose use high brightness electron beam mev ...
6379     paper study fundamental solution vargammatxtau...
6380     work presented paper focuses translation termi...
6381     paper focuses byzantine attack detection gauss...
6382     paper study pooled data problem identifying la...
6383     usual practice ignore structural information u...
6384     combination surface science techniques stm xps...
6385     paper proposes new approach model risk measure...
6386     significantly faster algorithm presented origi...
6387     paper investigates flow pathsensitive static i...
6388     topic models extensively used organize interpr...
6389     quasitwodimensional organic chargetransfer sal...
6390     advanced data analytical techniques efforts ac...
6391     provide local approximation result nonholomorp...
6392     following success computer vision areas deep l...
6393     chapter provides introduction modeling control...
6394     classical difficult isomorphism testing proble...
6395     give motivation scoring clustering algorithms ...
6396     paper introduce new reformulation greennaghdi ...
6397     paper revisit weighted likelihood bootstrap me...
6398     many applications ensemble base classifiers ef...
6399     framework keldyshusadel kinetic theory study t...
6400     prove generalized weighted ostrowski ostrowski...
6401     intuitive analogy organic chemists understandi...
6402     tensors natural way express correlations among...
6403     propose existence new universality classical c...
6404     thresholdlinear networks tlns models neural ne...
6405     paper describes decision procedure disjunction...
6406     observation electric dipole moments edms atomi...
6407     reports press releases highlight security inci...
6408     paper consider optimal control problem coupled...
6409     tweedie compound poissongamma model routinely ...
6410     temporal networks increasingly used model dive...
6411     unlike classical causal inference often averag...
6412     physical sciences students underrepresented mi...
6413     background newborn infants critical care conti...
6414     generating large quantities quality labeled da...
6415     waspb extreme hot jupiter day orbit suffering ...
6416     shown adiabatic bornoppenheimer expansion sati...
6417     computation tropical prevariety first step app...
6418     recently g freiman herzog p longobardi maj pro...
6419     correction type ia supernova brightnesses exti...
6420     aim paper study via theoretical analysis numer...
6421     paper extend known results analytic connectivi...
6422     explore extended cosmological scenario dark ma...
6423     consider quasihomogeneous polynomial f mathbbz...
6424     solve problem optimal liquidation volume weigh...
6425     cellular electron cryotomography cect imaging ...
6426     propose novel bayesian approach modelling nonl...
6427     paper explore use unsupervised methods detecti...
6428     report structural susceptibility specific heat...
6429     consider cloudbased control scenarios clients ...
6430     simple finite dimensional kantor triple system...
6431     spatial separation suspended particles based c...
6432     network navigability key feature complex netwo...
6433     study fermionic topological phases using techn...
6434     reliable identification molecular biomarkers e...
6435     paper introduces pyreclab software library wri...
6436     formulate stochastic gradient descent sgd baye...
6437     perform postprocessing radiative feedback anal...
6438     investigate inherent influence light polarizat...
6439     formal ontologies axiomatizations logicbased f...
6440     baksneppen model lowest fitness particle two n...
6441     consider set categorical variables mathcalp le...
6442     consider timedomain digital backpropagation ch...
6443     present formalization convex polyhedra proof a...
6444     consider weight spectrum class quasiperfect bi...
6445     efficient electrooptic eo modulators crucially...
6446     aibased explanation system explain agents comp...
6447     seminal paper n page phys rev lett page proved...
6448     describe fast closedloop optimization wavefron...
6449     curvature estimates quotient curvature equatio...
6450     convolutional neural networks achieved great s...
6451     paper prove formulas represent twopointed grom...
6452     due increasing urban population growing number...
6453     analyze general class difference operators hva...
6454     despite wellordered pyrochlore crystal structu...
6455     students introduced navigation general longitu...
6456     introduce error forwardpropagation biologicall...
6457     logical models offer simple powerful means und...
6458     propose family variational approximations baye...
6459     past decades phenomenal progress development u...
6460     demonstrated novel onchip polarization control...
6461     recent literature endtoend speech systems ofte...
6462     study human connectome vertices edges network ...
6463     investigate computational complexity various p...
6464     graphical user interfaces guis integral parts ...
6465     human brain network modularcomprised communiti...
6466     present collection eclipsing ellipsoidal binar...
6467     discrete moment problem foundational problem d...
6468     pilot unit closed loop gas cls mixing distribu...
6469     give new analysis tuning problem music theory ...
6470     consider dualhop wireless network energy const...
6471     trust publicly verifiable certificate transpar...
6472     chainspace decentralized infrastructure known ...
6473     note deals certain properties convex functions...
6474     paper investigate multiwavelengths properties ...
6475     many technological applications superconductor...
6476     basin attraction uniformly attracting sequence...
6477     recent lens experiment fermi gas reported nega...
6478     paper entropies including measuretheoretic ent...
6479     study question presence kohn points yielding l...
6480     extending notion maximal green sequences abeli...
6481     using shallow water model timedependent forcin...
6482     asymptotic solution problem comparing means tw...
6483     grain growth proceed effectively lead planet f...
6484     peculiar band structure semimetals exhibiting ...
6485     stochastic r matrix uqan introduced recently g...
6486     investigated crystal structure laobipbs using ...
6487     considered generic case pretransitional materi...
6488     burr iii distribution used wide variety fields...
6489     introduce logic called lt express properties t...
6490     study massless fermions interacting particular...
6491     generation artificial data based existing obse...
6492     identification parameters mathematical models ...
6493     designed tested experimentally morphing struct...
6494     fog radio access network fran promising paradi...
6495     concepts gross domestic product gdp gdp per ca...
6496     fractional stochastic volatility models widely...
6497     triangle generative adversarial network deltag...
6498     speaker says name color color picture necessar...
6499     lowtemperature properties certain quantum magn...
6500     neural speech synthesis models recently demons...
6501     theoretically investigate scheme backward cohe...
6502     survey goodnessoffit symmetry tests based char...
6503     article introduce put vague hyperprior dirichl...
6504     comment paper study problems encountered grang...
6505     topological matter popular topic condensed mat...
6506     discuss ramsey property existence stationary i...
6507     existence massive solar masses elliptical gala...
6508     parametrization irreducible unitary representa...
6509     work study problem exploring surfaces building...
6510     prosociality fundamental human social life acc...
6511     territorial control key aspect shaping dynamic...
6512     construct virtual quandle links lens spaces lp...
6513     derive online learning algorithm improved regr...
6514     discussion frauchigerrenner argument single wo...
6515     propose three measures mutual dependence multi...
6516     let x ldots xninmathbbrp iid random vectors ai...
6517     consider optimalefficient power allocation pol...
6518     action potentials basic unit information nervo...
6519     introduce rigorous definition general powerspe...
6520     let us given two graphs gamma gamma n vertices...
6521     recent breakthroughs deep learning dl applicat...
6522     erdh os unit distance conjecture plane says nu...
6523     study ground state kitaevheisenberg kh model u...
6524     study quadratic functionals lmathbbrd generate...
6525     paper introduces general bayesian non parametr...
6526     massive stars form dense clusters gravitationa...
6527     electroencephalography eeg extensivelyused wel...
6528     consider problem estimating lowrank symmetric ...
6529     recent developments quaternionvalued widely li...
6530     paper proved arithmetic siegelweil formula mod...
6531     motivated alphaattractor models paper consider...
6532     magnetic nanoparticles promising systems biome...
6533     fast energyefficient deployment trained deep n...
6534     passage time indulgence information technology...
6535     data shaping coding technique proposed increas...
6536     global integration information brain results c...
6537     music highlights valuable contents music servi...
6538     study computational tractability pac reinforce...
6539     show noiseinduced transition josephson junctio...
6540     principal component analysis pca fundamental s...
6541     paper characterize irreducible darboux polynom...
6542     paper analyze local global boundary rigidity p...
6543     study variant source identification game train...
6544     prove convexity theorem hamiltonian torus acti...
6545     given odd vector field q supermanifold qinvari...
6546     multicopters becoming increasingly important c...
6547     introduce new technique determining xray fluor...
6548     coupling vocal fold source vocal tract filter ...
6549     interested probability two randomly selected n...
6550     discourse connectives eg however terms explici...
6551     financial crime rampant hidden threat spite pr...
6552     consider explicit polar constructions blocklen...
6553     present article classical problem electromagne...
6554     maximizing sum two generalized rayleigh quotie...
6555     dirichlet processes dp widely applied bayesian...
6556     kontsevich designed scheme generate infinitesi...
6557     chernschwartzmacpherson csm classes generalize...
6558     current data explosion poses great challenges ...
6559     consider two player dynamic game played leq in...
6560     apply newly derived nonadiabatic goldenrule in...
6561     robots become ubiquitous need able adapt compl...
6562     multilayer neural networks lead remarkable per...
6563     kernel regression popular nonparametric fittin...
6564     study classification problems string data hypo...
6565     recent realization twodimensional synthetic sp...
6566     characterization lung nodules benign malignant...
6567     motion electrons near solids liquids gases tra...
6568     present hardware mechanism called hourglass pr...
6569     investigated frictional effects folding rates ...
6570     object ranking learning rank important problem...
6571     modeling spatial overdispersion requires point...
6572     explore methods producing adversarial examples...
6573     study estimation covariance matrix sigma pdime...
6574     multiagent systems setting paper addresses con...
6575     compact portable insitu nmr spectrometers dipp...
6576     using different methods laying graph lead diff...
6577     introduce twostep procedure context ultrahigh ...
6578     introduce new class monte carlo based approxim...
6579     paper study symmetry properties hilbert transf...
6580     paper study largetime behavior solutions class...
6581     let g mu pair reductive group g padic integers...
6582     program synthesis class regression problems on...
6583     describe new irreducible components giesekerma...
6584     cell monolayers provide interesting example ac...
6585     long shortterm memory networks trained gradien...
6586     covering type space x defined minimal cardinal...
6587     paper deals study principal lyapunov exponents...
6588     generally difficult predict positions mutation...
6589     machine learning emerged invaluable tool many ...
6590     article develop methods estimating low rank te...
6591     seminal paper formality conjecture kontsevich ...
6592     propose new types models appearance small larg...
6593     work provide nonasymptotic probabilistic guara...
6594     transition singlecell multicellular behavior i...
6595     review aspects twistor theory aims achievement...
6596     probabilistic integration continuous dynamical...
6597     propose generalisation notion centre algebra s...
6598     random forests common nonparametric regression...
6599     wittens gauged linear sigmamodel glsm unifies ...
6600     paper address convergence stochastic approxima...
6601     paper analyze communities across united states...
6602     problem quickest change detection qcd transien...
6603     many application settings involve analysis tim...
6604     work demonstrates potential deep reinforcement...
6605     paper provides holistic study stock prices var...
6606     inference learning probabilistic generative ne...
6607     modern social media platforms facilitate rapid...
6608     explore new mechanism explain polarization phe...
6609     many realworld applications characterized numb...
6610     consider adaptive algorithm finite element met...
6611     photoluminescence polarization experimentally ...
6612     weak variancealphagamma process multivariate l...
6613     generalization coordinated transaction schedul...
6614     paper study receiver performance physical laye...
6615     tetragonal copper oxide bicuo unusual crystal ...
6616     order achieve stateoftheart performance modern...
6617     design optimization engineering systems multip...
6618     present method generating high resolution shap...
6619     policy search algorithms require thousands tra...
6620     prove exist nonlinear binary cyclic codes atta...
6621     study consistency lipschitz learning graphs li...
6622     manufacturing increasing involvement autonomou...
6623     explore inflectional morphology example relati...
6624     study genome rearrangement many flavours someh...
6625     paper novel scheme synchronizing four drive fo...
6626     wholebody torque control framework adapted bal...
6627     construct new classes selfsimilar groups sarit...
6628     estimation parameters crucial part model devel...
6629     given two infinite sequences known binomial tr...
6630     present new system handling uncertainty quanti...
6631     search runaway former companions progenitors n...
6632     introduce natural families distributions roote...
6633     dnamediated computing novel technology seeks c...
6634     discuss effect ram pressure cold clouds center...
6635     paper analyses dynamics infectious disease con...
6636     task determining item similarity crucial one r...
6637     paper provide analytical framework analyze upl...
6638     paper explain sharp phase transition phenomeno...
6639     generative adversarial networks gans class dee...
6640     consider energybased boundary condition impose...
6641     period polynomials long fruitful tools study v...
6642     context series papers study major merger two d...
6643     paper measure systematic risk new nonparametri...
6644     paper present novel method obstacle avoidance ...
6645     advances sensor technology enabled collection ...
6646     hexagonal structure graphene gives rise proper...
6647     given smooth nontrapping compact manifold stri...
6648     correlation weak lensing cosmic microwave anis...
6649     consider asymmetric orthogonal tensor decompos...
6650     prove generalization result bhargava regarding...
6651     construct analyze strongly consistent secondor...
6652     proven chen f dillen j van der veken l vrancke...
6653     paper studies stability analysis dc microgrids...
6654     fundamental purpose present research article i...
6655     paper extending past works del popolo show hig...
6656     introduce compressed suffix array representati...
6657     consider bounded block operator matrix form ll...
6658     work devoted study first order operator xtmxt ...
6659     prove l bound oscillatory integral associated ...
6660     develop quantitative theory stochastic homogen...
6661     positive integer r rfubini number parameter n ...
6662     paper solve problem posed h bommierhato engli ...
6663     review concept support vector machines svms di...
6664     introduce sequent calculus simple restriction ...
6665     clusters galaxies gravitationally lens cosmic ...
6666     present theory seebeck effect nanoscale ferrom...
6667     paper introduce generalized asymmetric fronts ...
6668     photonic technologies offer numerous advantage...
6669     article attempted develop upwind scheme based ...
6670     gating key technique used integrating informat...
6671     assumption defining graph coxeter group admits...
6672     user datagram protocol udp commonly used proto...
6673     current understanding critical outbreak condit...
6674     vision deployment massive internetofthings iot...
6675     consider attacks twoway quantum key distributi...
6676     present new method approximate posterior proba...
6677     binary onebit representations data arise natur...
6678     stationary nonlinear schrdinger equation delta...
6679     parameter reduction enable otherwise infeasibl...
6680     paper consider higher order correction entropy...
6681     report compact simple robust high brightness e...
6682     pivotal step toward understanding unconvention...
6683     propose demonstrate ultrasonic communication l...
6684     global sensitivity analysis aims determining u...
6685     report inelastic neutron scattering measuremen...
6686     agile denoting quality agile readiness motion ...
6687     deep learning form machine learning nonlinear ...
6688     report tunnelinjected deep ultraviolet light e...
6689     present method preliminary results image recon...
6690     iterationfree method domain decomposition cons...
6691     recently richter rogers proved convex geometry...
6692     effectiveness molecularbased light harvesting ...
6693     present simple method improve neural translati...
6694     using local density approximation plus dynamic...
6695     work maximum entropy distributions space stead...
6696     paper consider linear regression model arp err...
6697     relative orientation filamentary structures mo...
6698     report combined theoreticalexperimental study ...
6699     study four problems dynamics body moving fixed...
6700     analyze theoretically schrodingerpoisson equat...
6701     extend classic multiarmed bandit mab model set...
6702     paper propose new method tackle mapping challe...
6703     propose nopol approach automatic repair buggy ...
6704     parametric geometry numbers new theory recentl...
6705     study intersection theory moduli space riemann...
6706     seirs epidemic disease fatalities introduced g...
6707     paper studies new type bin packing problem bpp...
6708     describe preliminary investigations using dock...
6709     propose method called label embedding network ...
6710     current fleet spacebased solar observatories o...
6711     new features enhancements spike banded solver ...
6712     describe neutrino flavor e electron u muon tau...
6713     gpus accelerators popular devices accelerating...
6714     stabilization linear systems unknown dynamics ...
6715     compute second coefficient composition two ber...
6716     given convex integrands gammai snto mathbbr fu...
6717     kernel methods powerful learning methodologies...
6718     paper presents nonmanual design engineering me...
6719     origin lifecycle molecular clouds still poorly...
6720     ability accurately predict simulate human driv...
6721     topological nodal line semimetals characterize...
6722     paper artificial intelligence based grid harde...
6723     let mathbbfq finite field given two irreducibl...
6724     currentdriven domain wall motion ratchet memor...
6725     let rmathfrakm ddimensional cohenmacaulay loca...
6726     endtoend ee systems achieved competitive resul...
6727     lhc run alice increase data taking rate signif...
6728     let omega csmooth bounded pseudoconvex domain ...
6729     composition natural liquidity changing time an...
6730     present indepth study behaviour fast folding a...
6731     famous result jurgen moser states symplectic f...
6732     brillouin light spectroscopy powerful robust t...
6733     develop framework approximating collapsed gibb...
6734     key feature thermophotovoltaic tpv emitter enh...
6735     electric coupling surface ions bulk ferroelect...
6736     paper provide new quantum algorithms polynomia...
6737     propose datadriven algorithm maximum posterior...
6738     let hdeltav schrdinger operator lmathbb r real...
6739     bioinformatics field grows must keep pace new ...
6740     mainstream research genetics epigenetics imagi...
6741     one key differences learning mechanism humans ...
6742     humanintheloop manipulation useful autonomous ...
6743     american cities devote significant resources i...
6744     known gas bubbles surface bounding fluid flow ...
6745     inverse problems correspond certain type optim...
6746     general completeness problem hoare logic relat...
6747     paper present result similar shiftcoupling res...
6748     quantifying image distortions caused strong gr...
6749     deep neural networks dnns excellent representa...
6750     introduce elliptic regularization pde system r...
6751     paper presents system based twoway particletra...
6752     one major drawbacks modularized taskcompletion...
6753     extreme phenotype sampling selective genotypin...
6754     fundamental theory energy networks different e...
6755     idea demonstrate beauty power alexandrov geome...
6756     prove rigorously exact nelectron hohenbergkohn...
6757     paper illustrate use results proving dtriple b...
6758     technology market continuing rapid growth phas...
6759     data mining field important source largescale ...
6760     automatic speaker verification asv systems use...
6761     describe loopinvgen tool generating loop invar...
6762     topologically protected superfluid phases allo...
6763     present lowfrequency spectral energy distribut...
6764     scalable framework developed allocate radio re...
6765     study kepler metrics kepler manifolds point vi...
6766     collisions background gas perturb transition f...
6767     show weyl symbol bornjordan operator class bor...
6768     deep learning popular machine learning approac...
6769     develop theory viscous dissipation onedimensio...
6770     study existence homoclinic type solutions seco...
6771     racetrack memory nonvolatile memory engineered...
6772     spirit recent work lamm malchiodi micallef set...
6773     robust pca methods typically batch algorithms ...
6774     paper present set simulation models realistica...
6775     technological improvement important cause long...
6776     musta given conjecture graded betti numbers mi...
6777     stochastic minimization method realspace wavef...
6778     template metaprogramming popular technique imp...
6779     show recently proposed neural dependency parse...
6780     let g finite group autg automorphism group g a...
6781     systems tightlypacked inner planets stips comm...
6782     autonomous robot manipulation often involves e...
6783     structural properties larup external pressure ...
6784     hyperspectral imaging important tool remote se...
6785     work addresses onedimensional problem bloch el...
6786     thermoelectric voltage developed across atomic...
6787     understanding segregation essential develop pl...
6788     protein gammaturn prediction useful protein fu...
6789     image defined set either open closed image tra...
6790     performed electronic structure calculations ba...
6791     precision experiments search electric dipole m...
6792     paper presents investigation relation positivi...
6793     propose constraintbased flowsensitive static a...
6794     humanoid robots may require degree compliance ...
6795     paper establish baseline object symmetry detec...
6796     consider paper regularity problem timeoptimal ...
6797     important breakthroughs data centric deep lear...
6798     asteroids primitive solar system bodies evolve...
6799     bayesian nonparametrics class probabilistic mo...
6800     depth focus dff one classical illposed inverse...
6801     paper present effective method craft text adve...
6802     remains challenge efficiently extract spatialt...
6803     configuration three neutrino masses take two f...
6804     paper concerned detection objects immersed ani...
6805     documentation tomographic xray data carved che...
6806     consider entitylevel sentiment analysis arabic...
6807     paper consider problem optimizing quantiles cu...
6808     photometry minor body extrasolar origin u oumu...
6809     present model generate power spectrum noise in...
6810     let sigma sigmai iin partition set primes bbbp...
6811     paper analyzes properties solutions generalize...
6812     paper extend several time reversible numerical...
6813     since emergence two decades ago astrophotonics...
6814     assessing generative models easy task generati...
6815     results probabilistic analysis direct numerica...
6816     developers use question answer qa websites exc...
6817     spectral based heuristics belong wellknown com...
6818     accelerated magnetic resonance mr scan acquisi...
6819     since question whether markets efficient contr...
6820     analyze performance different resampling strat...
6821     variational problem comes boundary conditions ...
6822     note studies equivalencies among convergences ...
6823     music source separation deep neural networks t...
6824     mobile crowdsourcing promising service paradig...
6825     liquidsvm package written c provides svmtype s...
6826     sterile neutrinos produced oscillations well m...
6827     paper design information elicitation mechanism...
6828     three types orbits theoretically possible auto...
6829     semiprocess analog semiflow nonautonomous diff...
6830     justinfinite calgebras ie infinite dimensional...
6831     trademark retrieval tr become important yet ch...
6832     emergence new digital technologies allowed stu...
6833     analyze spectra luminous red galaxies lrgs ste...
6834     consider analysis high dimensional data given ...
6835     todays mobile phone users faced large numbers ...
6836     paper present current trends realtime music tr...
6837     consider simultaneous blind deconvolution r so...
6838     study around musical compositions western clas...
6839     paper describes r package mvlsw package contai...
6840     item coldstart classical issue recommender sys...
6841     order sample marginalized andor hardtoreach po...
6842     graphitic nitrogendoped graphene excellent pla...
6843     microsized cold atmospheric plasma ucap develo...
6844     consistently checking statistical significance...
6845     currently deep neural networks deployed lowpow...
6846     let pzaazazazcdotsanzn polynomial degree n riv...
6847     developing appropriate design process conceptu...
6848     key problem modelling evolution dynamics infec...
6849     investigate interplay charge order superconduc...
6850     prototype imaging spectrograph coronagraphic e...
6851     show standard perturbative ie cubic descriptio...
6852     accurate measurement galaxy structures prerequ...
6853     francis steel shown exists nontrivial networks...
6854     explore effects expected higher cosmic ray cr ...
6855     news recommender systems aimed personalize use...
6856     consider online nonparametric detection abrupt...
6857     paper estimate distribution hidden nodes weigh...
6858     key common bottleneck stencil codes data movem...
6859     algebraic variety x introduce generalized firs...
6860     paper consider general twistedcurved spacetime...
6861     one exciting advancements ai last decade wide ...
6862     introduce problem learning distributed represe...
6863     plenty results obtained singleparticle quantum...
6864     many modern dataintensive computational proble...
6865     study computation complexity boolean functions...
6866     spinpolarized fieldeffect transistor spinfet d...
6867     magnetic fields play important roles many astr...
6868     dynamical properties two bosonic quantum walke...
6869     paper present characterize nearestneighbors co...
6870     clostridium difficile infections cdis affect p...
6871     let c simply laced generalized cartan matrix g...
6872     stellar flares frequent occurrence young lowma...
6873     determine grosshopkins duals certain higher re...
6874     outline new approach solving optimization prob...
6875     measure planck cluster mass bias using dynamic...
6876     data sharing among partnersusers organizations...
6877     paper study zeroflux chemotaxissystem beginequ...
6878     present complete optical transmission spectrum...
6879     consider linear programming lp problems infini...
6880     key component forecasting demand consumption r...
6881     given closed oriented surface describe cohomol...
6882     concerned existence regular solutions nonnewto...
6883     zerotemperature limit continuous phase transit...
6884     climate mitigation comprehensive solution pres...
6885     study diffusion multilayer network contact dyn...
6886     study marginally compact macromolecular trees ...
6887     considerable recent activity applying deep con...
6888     spectrogram ship wake heat map visualises time...
6889     emergence lowpower wide area networks lpwans n...
6890     xray transform periodic slab timesmathbb tn ng...
6891     paper consider separable covariance model play...
6892     paper prove finitely generated malnormal subgr...
6893     global political preeminence gradually shifted...
6894     many works collaborative robotics humanrobot i...
6895     work consider association meromorphic jacobi f...
6896     active hypothesis testing problem formulated p...
6897     present framework simultaneously align smooth ...
6898     theoretically recently showed scaling relation...
6899     let mathcalc finitely complete small category ...
6900     machine learning approaches hold great potenti...
6901     sinc approximation shown high efficiency numer...
6902     recent years role epidemic models informing pu...
6903     introduce new model describing multiple resona...
6904     bayesian shrinkage methods generated lot recen...
6905     object present paper study certain properties ...
6906     investigate fundamental modeltheoretic dividin...
6907     paper presents analysis polish fireball networ...
6908     study variation iwasawa invariants anticycloto...
6909     paper study predict results ltl model checking...
6910     properties two thcrsitype materials discussed ...
6911     inverse problem spectroscopy considered object...
6912     variational autoencoders vae directed generati...
6913     consider statics dynamics stable mobile threed...
6914     one key challenge talent search translate comp...
6915     environmental impacts medium large scale build...
6916     paper derive bayesian model order selection ru...
6917     sky models used past calibrate individual low ...
6918     recurrent neural networks rnns serve fundament...
6919     biological systems typically highly open noneq...
6920     work outline entropy viscosity method discuss ...
6921     convolutional neural networks cnns similar ord...
6922     ultraviolet selfinteraction energies field the...
6923     given graphical model one essential problem ma...
6924     work investigated feasibility applying deep le...
6925     dtransitionmetals carbides zrc nbc nitrides zr...
6926     work aimed determine characteristics activity ...
6927     series expansions unknown fields phisumvarphin...
6928     prove universal limit theorem halting time ite...
6929     demonstrate residual neural networks resnets d...
6930     multilabel classification important learning p...
6931     concerned burst synchronization bs related neu...
6932     collapse collisionless selfgravitating system ...
6933     possibility realizing nonabelian excitations n...
6934     approach development models control strategies...
6935     moving sofa problem posed l moser asks planar ...
6936     introductionthe free cued selective reminding ...
6937     understanding protein function one keys unders...
6938     compressive sensing powerful technique recover...
6939     show class groups kmultiple contextfree word p...
6940     study numerically superconductorinsulator tran...
6941     use techniques functorial quantum field theory...
6942     give simple multiplicativeweight update algori...
6943     studied neutron response paris phoswich labrce...
6944     mine detection unexplored area optimization pr...
6945     present strongest known knot invariant compute...
6946     main purpose paper formalize modelling process...
6947     study biplane graphs drawn finite planar point...
6948     main goal paper design market operator mo dist...
6949     web search entityseeking queries often trigger...
6950                     show rclomegacdot equal omegacdot
6951     spatially explicit capture recapture secr mode...
6952     obtaining models capture imaging markers relev...
6953     recent advances derivativefree optimization al...
6954     work propose model estimating volatility finan...
6955     overcome travelling difficulty visually impair...
6956     poisson factorization probabilistic model user...
6957     using unfolding method given citehl prove conj...
6958     paper address bounded cardinality hub location...
6959     one recent trends network architec ture design...
6960     study gas sample galaxies e msun clusters obta...
6961     present hidden fluid mechanics hfm physics inf...
6962     study problem testing structure networks using...
6963     three dimensional magnetohydrodynamical simula...
6964     automatic meshbased shape generation great int...
6965     sunyaevzeldovich sz effect powerful probe evol...
6966     number recent works used variety combinatorial...
6967     exhaled air contains aerosol submicron droplet...
6968     expressive variations tempo dynamics important...
6969     paper deals convergence time analysis class fi...
6970     selforganization process order whole system ar...
6971     nonequilibrium workhamiltonian connection micr...
6972     study thick subcategories defined modules comp...
6973     examine whether various characteristics planet...
6974     paper study ideal structure reduced calgebras ...
6975     paper study nonparametric mean curvature type ...
6976     article develop new sequential monte carlo smc...
6977     formulate nambugoldstone theorem triangular re...
6978     large data collections required training neura...
6979     usually applying mimetic model early universe ...
6980     equilibrium thermodynamic kinetic information ...
6981     generative adversarial networks gans become wi...
6982     molecular dynamics md simulations allow explor...
6983     consider problem deep neural net compression q...
6984     threeway data conveniently modelled using matr...
6985     explore emergence persistent infection closed ...
6986     highresolution canopy height map exists global...
6987     accurate estimation regional wall thicknesses ...
6988     using threedimensional semiclassical model stu...
6989     lately wireless sensor networks wsns become em...
6990     present new frankwolfe fw type algorithm appli...
6991     problem choice boundary conditions discussed c...
6992     introduce exit time finite state projection et...
6993     data quality assessment data cleaning contextd...
6994     authentication first step toward establishing ...
6995     online dominating set problem online variant m...
6996     shanghai coherent light facility sclf quasicw ...
6997     role asymptomatically infected individuals pla...
6998     many methods automatic music transcription inv...
6999     policy gradient methods achieved remarkable su...
7000     magnetic fields quench kinetic energy two dime...
7001     consider cauchy problem gradient flow beginequ...
7002     currently thirdgeneration sequencing technique...
7003     paper proposes rebnet endtoend framework train...
7004     generalized lindelf hypothesis exponent error ...
7005     discuss latest results numerical simulations f...
7006     recently reported population protostellar cand...
7007     compared artificial neural networks anns spiki...
7008     matrix inversion interesting topic algebra mat...
7009     governing equations motion viscous incompressi...
7010     purpose note give simple proof fact certain su...
7011     key requirement routing telecommunication netw...
7012     conical functions appear large number applicat...
7013     present approach towards convex optimization r...
7014     motivated fact lowenergy properties kondo mode...
7015     paper propose adaptive framework variable powe...
7016     update issue found correctness algorithm worki...
7017     digital information encoded buildingblock sequ...
7018     artificial lighting responsible large portion ...
7019     study theory tmn existentially closed incidenc...
7020     study problem propagation regularity solutions...
7021     herewith attempt investigate cosmic rays behav...
7022     recent advances deep neural networks dnns make...
7023     study spreading information wide class quantum...
7024     present four new examples plane rational curve...
7025     study maximum likelihood estimator density n i...
7026     consider nonparametric testing nonasymptotic f...
7027     space npoint correlation functions possible ti...
7028     work provide theoretical guarantees reward dec...
7029     present endtoend system musical key estimation...
7030     introduce new approach aiming computing approx...
7031     synergies evolutionary game theory statistical...
7032     often analysis timedependent chemical biophysi...
7033     sample efficiency critical solving realworld r...
7034     many stateoftheart algorithms solving hard com...
7035     face detection methods relied face datasets tr...
7036     consider fock spaces fpellalpha entire functio...
7037     paper address problem generating elements obta...
7038     solve compressive sensing problem via convolut...
7039     present bayesian model selection approach esti...
7040     sequencetosequence models provide simple elega...
7041     consider binary classification problems positi...
7042     first part survey heuristic nontechnical discu...
7043     previous work area gesture production made ass...
7044     neural networks rational functions efficiently...
7045     analyze local properties sparse erdosrenyi gra...
7046     recent studies shown deep neural networks dnn ...
7047     paper present working model automatic pill rem...
7048     registration tremor performed two groups subje...
7049     accurate real time crime prediction fundamenta...
7050     make research chaos friendly discrete equation...
7051     submissions withdrawn arxiv administrators sub...
7052     contact processes form large highly interestin...
7053     paper first propose two types concepts almost ...
7054     paper studies remote state estimation denialof...
7055     semantic understanding localization fundamenta...
7056     ordered structures natural integer rational re...
7057     classify finite pgroups upto isoclinism two co...
7058     dutch book arguments applied beliefs outcomes ...
7059     key goal quantum chemistry methods whether ab ...
7060     give elementary combinatorial proof basss dete...
7061     electronmuon ranger emr fullyactive trackingca...
7062     photometric redshifts key component many scien...
7063     deep reinforcement learning drl methods deep q...
7064     cloud manufacturing cm concept using manufactu...
7065     theories one vacuum allow quantum transitions ...
7066     paper new series first second stieltjes consta...
7067     analyze sample complexity thresholding bandit ...
7068     nickel oxide nio studied extensively various a...
7069     area roc auc important metric binary classific...
7070     text preprocessing often first step pipeline n...
7071     develop apply new techniques order uncover gal...
7072     recent surge interest uavs civilian services i...
7073     riemann xiz function even z admits fourier tra...
7074     paper introducing kind small loop transfer spa...
7075     show existence yangmillshiggs ymh fields riema...
7076     give strong necessary conditions admissibility...
7077     stochastic ordering distributions random varia...
7078     measured quantum depletion interacting homogen...
7079     creating modeling realworld graphs crucial pro...
7080     field analytic combinatorics studies asymptoti...
7081     strong progress made image captioning last yea...
7082     paper presents novel framework accurate pedest...
7083     graphql query language thereuponbased paradigm...
7084     pressing need build architecture could subsume...
7085     linear carbon chains common various types astr...
7086     present work study charged black hole solution...
7087     note give simple proofs several results involv...
7088     chatbots one class intelligent conversational ...
7089     predictive coding attractive compression hyper...
7090     wide range electrochemical reactions practical...
7091     segmented silicon detectors micropixel microst...
7092     wearable devices enable users collect health d...
7093     paper computational aspects probability calcul...
7094     electron acceleration relativistically intense...
7095     propose use specific dynamical processes gener...
7096     study thermalization holographic dimensional c...
7097     purpose investigating coexistence magnetic ord...
7098     paper investigate questions related continuity...
7099     synopsis offered properties discrete integerva...
7100     proved certain restrictions weights pair weigh...
7101     tissue characterization long important compone...
7102     present psdbscan communication efficient paral...
7103     use elliptic system equations complex coeffici...
7104     nonnegative matrix factorization nmf prob lem ...
7105     document consists two papers submitted supplem...
7106     show two hamiltonian isotopic lagrangians cpom...
7107     spin relaxation chromium spinel oxides acro mg...
7108     biophysical model epimorphic regeneration base...
7109     established existence multiplicity solution re...
7110     babson steingrmsson generalized notion permuta...
7111     critical analysis state art necessary task ide...
7112     agentbased models abms simulate interactions a...
7113     combine bayesian prediction weighted inference...
7114     important disadvantage hindex typically cannot...
7115     every art form ultimately aims invoke emotiona...
7116     study equation beginequation deltasuvxu ialpha...
7117     paper present method unsupervised clustering h...
7118     generalize results citecapistran expected baye...
7119     order clarify hightc mechanism inhomogeneous c...
7120     paper new longterm survival distribution propo...
7121     many engineering problems require identifying ...
7122     simplified trisection trisection map manifold ...
7123     many localization algorithms use spatiotempora...
7124     present family selfconsistent axisymmetric rot...
7125     based experimental traffic data obtained germa...
7126     develop finite element method laplacebeltrami ...
7127     let x del pezzo surface degree defined field f...
7128     padic kummerleopoldt constant kappak number fi...
7129     despite impressive performance deep neural net...
7130     paper citelau shown restriction pseudoeffectiv...
7131     generalize work bourgainkontorovich zhang prov...
7132     screening surface charge electrolyte resulting...
7133     provide asymptotic expansion value function mu...
7134     probabilistic atlases provide essential spatia...
7135     present machine learning framework multiagent ...
7136     study optimal investmentconsumption problem me...
7137     consider restricted light ray transforms arisi...
7138     propose nonparametric method explicitly model ...
7139     article studies confluence pair regular singul...
7140     sequential estimation delay doppler parameters...
7141     maximally recoverable codes codes designed dis...
7142     paper focuses considering special precessional...
7143     paper presents novel physicsinformed regulariz...
7144     wavelet transform seen success incorporated ne...
7145     cardiologists main tool measuring systolic hea...
7146     study problem optimal estimation density clust...
7147     steganography collection methods hide secret i...
7148     graph g called sum graph socalled sum labeling...
7149     study exploration problem episodic mdps rich o...
7150     time converge steady state finite markov chain...
7151     generating versatile appropriate synthetic spe...
7152     rapid growth services stream groups users come...
7153     present suite reinforcement learning environme...
7154     let rhoellell system elladic representations a...
7155     apply tractor image modeling code improve upon...
7156     lifted relational neural networks lrnns descri...
7157     organisations store huge amounts data multiple...
7158     despite various debugging supports existing id...
7159     consider twoplayer game chomp posets associate...
7160     semiparametric nonlinear regression model pres...
7161     optimal transportation provides means lifting ...
7162     discussion randomprojection ensemble classific...
7163     propose deep asymmetric multitask feature lear...
7164     phasechange materials based gesbte alloys wide...
7165     let infty infty two points infty real hyperell...
7166     investigate class multidimensional twocomponen...
7167     classification problems mode conditional proba...
7168     one main benefits wristworn computer ability c...
7169     widespread use big social data pointed researc...
7170     paper introduce concept singular finsler folia...
7171     measuring airways chest computed tomography ct...
7172     time dependent quantum systems become indispen...
7173     systematic design adaptive waveform wireless p...
7174     year approximately heart valve repair replacem...
7175     gaussian process modulated poisson processes p...
7176     paper puts forth mathematical framework buildi...
7177     recent trends miniaturizing oxidebased devices...
7178     objective test hypothesis variation care coord...
7179     paper consider probabilistic setting probabili...
7180     measure statistically anisotropic signatures i...
7181     article dedicated estimation wasserstein dista...
7182     quantifying errors losses due use floatingpoin...
7183     despite significant progress made last years s...
7184     present cosegmentation technique spacetime col...
7185     many years ivector based audio embedding techn...
7186     generalization riemannian submersions horizont...
7187     recent years defect prediction received great ...
7188     extend classical notion spherical depth mathbb...
7189     utility markov chain monte carlo algorithm lar...
7190     paper presents one analytical tidal theory vis...
7191     zerocurvature representations zcrs one main to...
7192     article presents multiple sound source localiz...
7193     paper present scalable approach robustly compu...
7194     propose theoretical framework capture incremen...
7195     pseudocircle simple closed curve surface arran...
7196     modeled along truncated approach panigrahi sel...
7197     cholesky decomposition plays important role fi...
7198     combination recent emerging technologies netwo...
7199     consider network observation collection observ...
7200     paper concerned problem topk ranking pairwise ...
7201     recently modelfree reinforcement learning algo...
7202     consider problem detecting data races program ...
7203     improving effectiveness safety patient care ul...
7204     paper initiate study new problem termed functi...
7205     toric landauginzburg models giventals type fan...
7206     study role local tidal environment determining...
7207     paper general theory presented locally station...
7208     recentlyintroduced selflearning monte carlo me...
7209     optical diffraction tomography odt tomographic...
7210     rational filter functions used improve converg...
7211     maps parameter space expressing distribution f...
7212     classical ground state magnetic response heise...
7213     sparse matrix multiplication important compone...
7214     let g group acting tree finite edge stabilizer...
7215     lagrangian numerical scheme solving nonlinear ...
7216     paper studies optimal timebounded control mult...
7217     web advertising traffic operation trafficking ...
7218     randomizing fouriertransform ft phases tempora...
7219     paper addresses question whether possible gene...
7220     paper investigate simultaneous properties conv...
7221     solving partial differential equations using b...
7222     explore effect noise ballistic graphenebased s...
7223     design multistable rna molecules important app...
7224     utility notion generalized disclinations mater...
7225     emission properties pbte single crystal extens...
7226     every instance hospitalsresidents problem admi...
7227     describe procedures converging characterizing ...
7228     szilard enginesze one best example information...
7229     latest deep learning methods object detection ...
7230     emergence cloud computing sensor technologies ...
7231     recently certain qpainlev type system obtained...
7232     study statics dynamics stable mobile selfbound...
7233     lay foundations subject title build another pa...
7234     determination finite blaschke product critical...
7235     background componentbased modeling language mo...
7236     mit supercloud portal workspace enables secure...
7237     propose estimator prediction error using appro...
7238     set new speed records multiplying long polynom...
7239     metasurface gradient phase response offers new...
7240     let finitely generated subsemigroup z derive g...
7241     recent advances molecular simulations allow di...
7242     understanding influence product crucially impo...
7243     emergence oscillations models elnio effect utm...
7244     clustering undirected graph paper presents exa...
7245     hyper suprimecam subaru strategic program hsc ...
7246     propose practical method l norm regularization...
7247     interactions pm meteorological factors play cr...
7248     kgroup calgebra multipullback quantum complex ...
7249     gumbel trick method sample discrete probabilit...
7250     paper presents sequential randomized lowrank m...
7251     context convectivelydriven flows play crucial ...
7252     paper deals estimation problem misspecified er...
7253     many barred galaxies possibly including milky ...
7254     domain adaptation refers process learning pred...
7255     colocalization powerful tool study interaction...
7256     consider communication multipleinput singleout...
7257     paper investigate performance analysis synthes...
7258     formulate notions subadditivity additivity yan...
7259     hermite rank appears limit theorems involving ...
7260     extremal point positive threshold boolean func...
7261     virtual screening vs widely used computational...
7262     increasing availability big large volume socia...
7263     definition fractional integral may codified ri...
7264     assertion every definable set definable elemen...
7265     scientific community use pdes model range prob...
7266     enhanced quality service qos satisfaction mobi...
7267     rapid compression machines rcms widely used co...
7268     given elliptic curve ek galois extension kk co...
7269     basis quasipotential method quantum electrodyn...
7270     generative adversarial networks gans powerful ...
7271     show finite milnorwitt correspondences satisfy...
7272     recently wind riemannian structures wrs introd...
7273     solution implemented frame duckietown goal duc...
7274     cipher used encryption governmental communicat...
7275     deep neural networks dnns powerful machine lea...
7276     present spectra ultradiffuse galaxies udgs vic...
7277     tieline scheduling problem multiarea power sys...
7278     paper predicted stabilities several twodimensi...
7279     la transformoj de schwarzchristoffel mapas kon...
7280     humans imagine scene sound want machines using...
7281     interdisciplinary discipline data mining dm po...
7282     paper study twelve stochastic input models onl...
7283     paper addresses task learning image classifier...
7284     introduce general method improving convergence...
7285     singlephoton detectors space must retain usefu...
7286     study parameterized complexity several positio...
7287     many years lunar laser ranging llr observation...
7288     article proved existence similarity solutions ...
7289     attentionbased encoderdecoder architectures li...
7290     article consider parametric bayesian inference...
7291     despite recent advances reputation technologie...
7292     focus cohomology kth nilpotent quotient free g...
7293     kontsevich soibelman reformulated slightly gen...
7294     important challenge humanlike ai compositional...
7295     boltzmann provided scenario explain individual...
7296     threedimensional couette flow parallel plates ...
7297     existing dimensionality reduction methods adep...
7298     pipelined krylov subspace methods avoid commun...
7299     ananthnarayan avramov moore gave new construct...
7300     trigonometric time integrators introduced clas...
7301     around year centenary plancks thermal radiatio...
7302     highlyefficient multiresonant rf energyharvest...
7303     graphical causal models important tool knowled...
7304     paper concerns quantile oriented sensitivity a...
7305     intensity noise crosscorrelation polarization ...
7306     amino acid sequence portrays intrinsic form pr...
7307     experimental numerical study steadystate cyclo...
7308     theoretically study josephson current supercon...
7309     according tastes person could show preference ...
7310     purpose paper construct confidence intervals r...
7311     consider godunov numerical method phasetransit...
7312     let f holomorphic curve mathbbpnmathbbc let ma...
7313     present safe active incremental feature select...
7314     social graph construction various sources inte...
7315     show fluidflow interpretation service curve ea...
7316     using firstprinciples density functional calcu...
7317     present method construct numberconserving hami...
7318     present new parallel corpus jhu fluencyextende...
7319     address single machine problems optional jobs ...
7320     novel datadriven stochastic robust optimizatio...
7321     paper introduces algebraic multiscale method s...
7322     software processes improvement spi challenging...
7323     analysis bayesian mixture model matrix langevi...
7324     cycloids hipocycloids epicycloids often forgot...
7325     paper algorithm multicolor image compressionen...
7326     gaussian graphical models used throughout natu...
7327     chariklo small solar system body confirmed rin...
7328     powerful tool asynchronous event sequence anal...
7329     studies response sid silicontungsten electroma...
7330     study multiple hypothesis tracking mht algorit...
7331     nfold darboux transformation tn focusing real ...
7332     goodnessoffit test discrimination two tail dis...
7333     belief propagation algorithms instruments used...
7334     interpolation jointly infeasible predicates pl...
7335     oneparametric stochastic dynamics interface qu...
7336     lesion segmentation first step automatic melan...
7337     support vector data description svdd popular t...
7338     recent years supervised learning using convolu...
7339     main focus analysts deal clustered data usuall...
7340     magnetic anisotropies ferromagnetic thin films...
7341     create release first publicly available commer...
7342     aim present manuscript present novel proposal ...
7343     sometimes enough dnn produce outcome example a...
7344     propose variational shape learner vsl generati...
7345     study cubic wave equation adsd closely related...
7346     bag words bow represents corpus matrix whose e...
7347     formation singularity compressible gas describ...
7348     paper investigates far deep neural network att...
7349     set bousfield classes important subsets distri...
7350     potential benefits applying machine learning m...
7351     class actively calibrated line mounted capacit...
7352     present aircode technique allows user tag phys...
7353     paper advances state art text understanding me...
7354     paper drawing intuition turing test propose us...
7355     origin phobos deimos giant impact generated di...
7356     sales applications characterized competition l...
7357     paper present simple modularized neural networ...
7358     establish general connection ballistic diffusi...
7359     report present new face detection scheme using...
7360     endtoend control robot manipulation grasping e...
7361     twenty years term cosmic web guided understand...
7362     present regression technique data driven probl...
7363     arguably biggest challenge applying neural net...
7364     magnetohydrodynamic mhd ships represent clear ...
7365     rapidly increasing number devices connected in...
7366     investigate timeoptimal control problem sir su...
7367     consider fundamental open problem parametric b...
7368     adaptive gradientbased optimization methods ad...
7369     magnetic response related paramagnetic meissne...
7370     credal network epistemic irrelevance generalis...
7371     mollow spectrum light scattered driven twoleve...
7372     paper use approach based dynamics prove ksubse...
7373     extreme mass ratio inspiral emri events vulner...
7374     companies populating stock market along connec...
7375     offensive antagonistic language targeted indiv...
7376     paper devoted study infinite horizon optimal c...
7377     present general analytical formalism determine...
7378     intrinsic stochasticity induce highly nontrivi...
7379     five year posttransplant survival rate importa...
7380     investigate loss surface neural networks prove...
7381     well known functions involution respect poisso...
7382     decades contextdependent phonemes dominant sub...
7383     common problem applications linear finite dyna...
7384     measured resistivity thermopower specific heat...
7385     quantum walks virtue coherent superposition qu...
7386     resonant inelastic xray scattering rixs experi...
7387     mathematical modelling tumor growth one useful...
7388     rise digital mobile communications recently ma...
7389     todays education systems deep concern importan...
7390     propose statistical inferential procedures pan...
7391     onebit measurements widely exist real world us...
7392     computational complexity kernel methods often ...
7393     automl serves bridge varying levels expertise ...
7394     presence renewable resources distribution netw...
7395     assortative mixing networks tendency nodes att...
7396     neural machine translation models rely beam se...
7397     upstroke normal eye blink upper lid moves pain...
7398     kmappability problem given string x length n i...
7399     music creation typically composed two parts co...
7400     simulation optimization refers optimization ob...
7401     variational autoencoders vaes learn representa...
7402     examine conditions material martian moons phob...
7403     diffusion information widely modeled stochasti...
7404     propose fundamental techniques obtain effectiv...
7405     loopaugmented forest labeled rooted forest loo...
7406     reproducing experiments important instrument v...
7407     recently proposed adversarial training methods...
7408     parameterised boolean equation system pbes set...
7409     present measurement kinematic sunyaevzeldovich...
7410     statistical relational frameworks markov logic...
7411     contrast simple monatomic alkali halide ions c...
7412     modern operating systems android ios windows p...
7413     conditional independence treatment assignment ...
7414     describe first ever implementation emulsion mu...
7415     magnetic resonance image mri reconstruction se...
7416     give lower bounds degree multiplicative combin...
7417     important application haptic technology digita...
7418     study topological dynamics horocycle flow hmat...
7419     waist size cusp orientable hyperbolic manifold...
7420     motivated recent work straininduced pseudomagn...
7421     abstract separation logics family extensions h...
7422     consider two polytopes quadratic assignment po...
7423     xgboost often presented algorithm wins every m...
7424     investigate superfluid behavior twodimensional...
7425     game analytics supports game development provi...
7426     look bohemian matrices specifically entries sp...
7427     past years distributed energy resources der ob...
7428     dynamic evidence logics logics reasoning evide...
7429     researchers often interested assessing impact ...
7430     point location problems n points ddimensional ...
7431     consider statistical inverse problem recoverin...
7432     recently proposed models learn write computer ...
7433     paper presents design experimental evaluations...
7434     aainfty estimate improving previous result arx...
7435     state ramsey property classes ordered structur...
7436     investigate cognitive radio system secondary u...
7437     homophily put minority groups disadvantage res...
7438     imprecise incomplete specification system text...
7439     discuss unique existence microlocal regularity...
7440     correspondence propose new receiver design hig...
7441     one major open problems computer vision detect...
7442     given two deep neural networks dnns similar ar...
7443     quantification qoe subjects often provide indi...
7444     observations highlyeccentric e hotjupiter hd b...
7445     many biological data analysis processes like c...
7446     study josephson effect rmt f junction consisti...
7447     version information plays important role sprea...
7448     multiband systems ironbased superconductors su...
7449     pervasive belief regard differences human lang...
7450     paper present unified endtoend approach build ...
7451     critical temperature tc mgb one key factors li...
7452     article describes motivation design progress j...
7453     reinforcement learning promising approach lear...
7454     neodeterministic seismic hazard assessment nds...
7455     syllabification seem improve wordlevel rnn lan...
7456     persistent homology studies evolution kdimensi...
7457     measure alignment shapes galaxy clusters trace...
7458     paper consider degenerate stirling polynomials...
7459     useful machine learning quantum laboratory rai...
7460     spatial distribution elemental abundances disc...
7461     doseresponse functions drfs widely used estima...
7462     present work addressed thesis introduces first...
7463     paper presents solution persistent monitoring ...
7464     paper propose novel sufficient decrease techni...
7465     unified gas kinetic scheme ugks direct modelin...
7466     legged robots pose one greatest challenges rob...
7467     work prove existence result optimal partition ...
7468     note establish following second main theorem t...
7469     prove range new sumproduct type growth estimat...
7470     computing inverse covariance matrix precision ...
7471     date germanene synthesized metallic substrates...
7472     introduce quiver gauge theory associated nonsi...
7473     image vortex creep low temperatures using scan...
7474     strategic interactions competitive entities ge...
7475     investigate pivotbased translation related lan...
7476     semiconductor quantum dots qds doped magnetic ...
7477     chapter show use differential coding presence ...
7478     develop new approach solving classification pr...
7479     paper randomizations scattered sentences keisl...
7480     kaplansky zero divisor conjecture states g tor...
7481     describe relation mostly conjectural seibergwi...
7482     word embeddings provide point representations ...
7483     many areas practitioners seek use observationa...
7484     reinforcement algorithm solves classical optim...
7485     present approach accelerating wide variety ima...
7486     hiv rna viral load vl important outcome variab...
7487     consider relativistic charged particle backgro...
7488     paper presents distributed stochastic model pr...
7489     transform methods like laplace fourier frequen...
7490     consider dynamics belief propagation decoding ...
7491     entity resolution er presents unique challenge...
7492     since corot observations unveiled low amplitud...
7493     certain analytical expressions feel divisors n...
7494     paper presents problem model learning purpose ...
7495     topological insulator bise doped electrons sup...
7496     show mathbbqgorenstein flat family klt singula...
7497     let gr denote metaplectic covering group linea...
7498     paper introduces generalization convolutional ...
7499     investigate standard model sm ubl gauge extens...
7500     deep neural networks coupled fast simulation i...
7501     surfactant solutions exhibit multilamellar sur...
7502     topological group g bamenable every continuous...
7503     new generation silicon pixel detectors small p...
7504     microwave kinetic inductance devices mkids poi...
7505     practical impact abstractionbased controller s...
7506     propose novel denoising framework task functio...
7507     consider three dimensional vlasovpoisson syste...
7508     photography usually requires optics conjunctio...
7509     paper brings novel idea paying utility winning...
7510     consider problem individualspecific medication...
7511     emergent field probabilistic numerics thus far...
7512     study effect cavity collapse nonideal explosiv...
7513     present simple quantile regressionbased foreca...
7514     let b left bleft xright xin mathbbsright fract...
7515     named entity classification task classifying t...
7516     latent space models effective tools statistica...
7517     tackle challenge topic classification tweets c...
7518     context research testing building software sys...
7519     work studies storage mechanisms automata permi...
7520     nonconvex optimization local search heuristics...
7521     performed joule power loss calculations flat d...
7522     report exact likelihood computation linear gau...
7523     experimental design problem concerns selection...
7524     machine learning statistics often desirable re...
7525     establish correspondence riemann surface hyper...
7526     nonnegative matrix factorization nmf actively ...
7527     modern search techniques either cannot efficie...
7528     obtain new uniform bounds symmetric tensor ran...
7529     present several continued fraction algorithms ...
7530     neuralnetwork based speakeradaptive acoustic m...
7531     paper considers problem statistical inference ...
7532     show social dynamics responsible formation con...
7533     fusion iterative closest point icp reg istrati...
7534     paper use theory computing study fractal dimen...
7535     pairing symmetry interacting dirac fermions pi...
7536     study causal inference multienvironment settin...
7537     notion linear exponential comonads symmetric m...
7538     paper proposes original statistical decision t...
7539     domain adaptation refers problem leveraging la...
7540     atomically thin semiconductors dimensions comm...
7541     conceptual computational framework proposed mo...
7542     paper introduces colossus public opensource py...
7543     second generation sequencing technologies incr...
7544     many modern video processing pipelines rely ed...
7545     since matrix formed nonlocal similar patches n...
7546     contextual bandit algorithms class multiarmed ...
7547     demonstrate lightinduced localization coulombi...
7548     variety realworld processes networks produce s...
7549     search binary sequences low autocorrelations l...
7550     study asymptotic behavior marginal expected sh...
7551     securitycritical tasks require proper isolatio...
7552     data rates percentages proportions arise frequ...
7553     pagerank numerous applications information ret...
7554     remote sensing experiments require highaccurac...
7555     discuss git moduli semistable pairs consisting...
7556     provide novel simple description schellekens s...
7557     describe method reconstructing air showers ind...
7558     weyls original scale geometry purely infinites...
7559     paper explores discrete dynamic causal modelin...
7560     effort scale existing quantum hardware proceed...
7561     allan variance av widely used quantity areas f...
7562     current tools exploratory data analysis eda re...
7563     consider stochastic composition optimization p...
7564     enabling artificial agents automatically learn...
7565     paper adapts large deformation diffeomorphic m...
7566     determination morphology galaxy clusters impor...
7567     spin triangular lattice antiferromagnet ybmgga...
7568     location radio pulsars periodperiod derivative...
7569     paper prove immersed stable capillary hypersur...
7570     carried systematic search recoiling supermassi...
7571     days several organizations moving lan foundati...
7572     brazilian ministry health selected openehr mod...
7573     minimum volume enclosing ellipsoid mvee proble...
7574     interest memristors risen due possible applica...
7575     biological artificial neural systems composed ...
7576     major investment made telecom operator goes in...
7577     consider problem detecting outofdistribution i...
7578     possibility solving bethesalpeter equation min...
7579     paper show novel underlying connections fracti...
7580     prove smooth well formed fano weighted complet...
7581     examine relationship social structure sentimen...
7582     fabrication atomic scale metallic wire remains...
7583     universal homogeneous trianglefree graph const...
7584     let f nonarchimedean local field study restric...
7585     let qnn unit cube mathbb rn n mathbb n nondege...
7586     recent experimental results point existence co...
7587     sensors present various forms around world mob...
7588     study problem edit similarity joins given set ...
7589     study introduce new approach curve pairs using...
7590     consider general statistical linear inverse pr...
7591     short high charge electron bunches drive high ...
7592     magnetic systems spins sitting lattice corner ...
7593     let r homogeneous coordinate ring grassmannian...
7594     wasserstein metric introduced probabilistic me...
7595     word embeddings representations individual wor...
7596     theoretically investigate normalstate properti...
7597     goal machine learning automatically learn data...
7598     noh verification test problem extended beyond ...
7599     associate infinite cyclic cover punctured neig...
7600     recent years seen sharp increase number relate...
7601     coherent uncertainty quantification key streng...
7602     inference presence outliers important field re...
7603     universal labeling graph g labeling edge set g...
7604     online games provide rich recording interactio...
7605     study theoretically topological surface states...
7606     given crossing minimal chart gamma minimal cha...
7607     assistive robotics particularly robot coaches ...
7608     study superconvergence property linear finite ...
7609     paper proposes multichannel source separation ...
7610     pore space characteristics biochars may vary d...
7611     present firstprinciplesbased manybody typical ...
7612     upon thermal annealing room temperature rt hig...
7613     parametric imaging compartmental approach proc...
7614     current recommender systems exploit user item ...
7615     consider properties integrals considered hardy...
7616     give complexity analysis class short generatin...
7617     thermodynamic potential neutral twodimensional...
7618     redis inmemory data structure store often used...
7619     discuss existence ground state solutions choqu...
7620     present study dark soliton dynamics inhomogeno...
7621     exchange interaction magnetic ions charge carr...
7622     perform polarimetry analysis active galactic n...
7623     let n closed enlargeable manifold sense gromov...
7624     programmable optical computer remained elusive...
7625     main theorem jain et aljain k singh sharma str...
7626     nmethylformamide chnhcho may important molecul...
7627     paper study development anisotropy strong mhd ...
7628     alternative density functional theory wavefunc...
7629     identification minimal set nodes maximizes pro...
7630     let x g asymptotically hyperbolic manifold hat...
7631     clinical nlp immense potential contributing cl...
7632     propose novel online predictor discrete labels...
7633     article deals markov process related fundament...
7634     look enhancement correspondence model peridyna...
7635     active learning long topic study machine learn...
7636     report orbitalfree densityfunctional theory df...
7637     contribution summarize progress made investiga...
7638     given leq k leq say kuniform hypergraph cks ti...
7639     among different biomarkers aging based omics c...
7640     effective efficient mitigation malware longtim...
7641     holes clumps interstellar gas dwarf irregular ...
7642     paper report visualization capabilities explai...
7643     present neural network architecture based upon...
7644     interested attributeguided face generation giv...
7645     unsupervised data generation tasks besides gen...
7646     extend certain classical theorems pluripotenti...
7647     report inconsistency found probability theory ...
7648     recently test signchanging gap function candid...
7649     handheld augmented reality commonly implements...
7650     paper propose distributed primaldual algorithm...
7651     consider inverse dynamic spectral problems one...
7652     let x quasiaffine algebraic variety isomorphic...
7653     gaussian process gp regression powerful interp...
7654     study probable trajectories concentration evol...
7655     many topics planetary studies demand estimate ...
7656     scanning microwave impedance microscopy mim me...
7657     long known feedback vertex set solved time mat...
7658     mechanisms strong electronphonon coupling pred...
7659     competitive equilibrium equal incomes ceei wel...
7660     author showed homogeneous algebraic diophantin...
7661     automatic sleep staging challenging problem st...
7662     onedimensional wakefield generation equations ...
7663     show permutation complexity image sturmian wor...
7664     propose predictability computability stability...
7665     let atomic monoid let x nonunit element elasti...
7666     stable topological invariants cornerstone pers...
7667     consider minimal nonnegative jacobi operator p...
7668     geodesic monte carlo gmc powerful algorithm ba...
7669     recently review concluded google scholar gs su...
7670     problem gas detection relevant many realworld ...
7671     discuss correspondence knizhnikzamolodchikov e...
7672     experimentally numerically investigate effect ...
7673     paper presents combinatorial construction lowd...
7674     statistics derived eigenvalues sample covarian...
7675     show artintits group spherical type intersecti...
7676     explore probabilistic model artistic text word...
7677     machine learning algorithms become increasingl...
7678     customer retention campaigns increasingly rely...
7679     quite general device analysis method allows di...
7680     wide class hermitian random matrices limit dis...
7681     paper proposes power slow feature analysis gra...
7682     behavior matter near quantum critical point qc...
7683     biological systems cell human brain inherently...
7684     one challenging tasks flying robot autonomousl...
7685     efforts reduce numerical precision computation...
7686     prove functor associating rigid analytic varie...
7687     determinantal point processes dpps wideranging...
7688     theoretically propose weyl semimetals may exhi...
7689     variability management process models major ch...
7690     propose use threedimensional dirac materials t...
7691     objective paper use transfer functions compreh...
7692     many modern applications deal multilabel data ...
7693     training robots operation real world complex t...
7694     need efficiently calculate first higherorder d...
7695     paper propose method importing tensor index no...
7696     wave theories heating chromosphere corona sola...
7697     unconventional spinrotation mode emerging quan...
7698     interesting significant importance investigate...
7699     given two continuous functions fgitomathbbr g ...
7700     study effective versions unlikely intersection...
7701     recommenders become widely popular recent year...
7702     let nilmanifold fundamental group free step ni...
7703     fog computing enables use cases data produced ...
7704     document describes code perform parameter esti...
7705     paper describes approach bosch production line...
7706     spherical symmetry radial coordinate r classic...
7707     audio events quite often overlapping nature pr...
7708     study exact solutions quasionedimensional gros...
7709     novel textindependent speaker identification s...
7710     argue hardware modularity plays key role conve...
7711     give new bound number collinear triples two ar...
7712     visinelli gondolo hereafter vg derived analyti...
7713     poisson structures admit resolutions symplecti...
7714     interest replace computed tomography ct images...
7715     calculate specific heat weakly interacting dil...
7716     inference models key component scaling variati...
7717     many statisticians citizens outcome recent us ...
7718     paper aims solving onedimensional backward sto...
7719     study spectrophotometric properties highly mag...
7720     study n interacting random walks positive inte...
7721     paper addresses problem estimating presence ra...
7722     recent note author provides counterexample glo...
7723     memristor one four fundamental twoterminal sol...
7724     ratio medians suitable quantiles two distribut...
7725     give new proof salvatis theorem group language...
7726     propose compare several projection methods app...
7727     propose novel approach using unsupervised boos...
7728     koszul algebras quadratic groebner bases calle...
7729     community discovery social network one tremend...
7730     debugging transactions understanding execution...
7731     linkedin salary product launched late goal pro...
7732     quantum bits based individual trapped atomic i...
7733     fault detection problem closed loop uncertain ...
7734     given nsample drawn submanifold subset mathbbr...
7735     learning optimize recently proposed framework ...
7736     present analyze new spacetime finite element m...
7737     packing kcoloring integer k graph gve mapping ...
7738     social networks involve positive negative rela...
7739     significance topological phases widely recogni...
7740     measured absolute frequency p transition yb at...
7741     paper gives foundational results application q...
7742     identifying meaningful signal buried noise pro...
7743     hyperspectral analysis gained popularity recen...
7744     antihydrogen forefront antimatter research cer...
7745     control ultracold collisions neutral atoms ext...
7746     paper develops nonparametric rotation invarian...
7747     mechanism behind angular momentum transport pr...
7748     context robotic underwater operations visual d...
7749     introduce casper proof stakebased finality sys...
7750     crowdsourcing emerged paradigm leveraging huma...
7751     apply nested algebraic bethe ansatz models gl ...
7752     find epolynomials family parabolic mathrmspnch...
7753     discuss derivation lowenergy effective field t...
7754     prove two knots concordant involutive knot flo...
7755     spectrally efficient multiantenna wireless com...
7756     study kernel leastsquares estimation norm cons...
7757     present novel method determining surface densi...
7758     paper show motive hpn quaternionic grassmannia...
7759     continuation completion program initiated cite...
7760     paper shows authors consistent way characteriz...
7761     consider interaction distinct superradiance sr...
7762     paper prove given cliquewidth kexpression nver...
7763     functional window experimentally observed prop...
7764     practice evidencebased medicine ebm urges medi...
7765     article provide systematic way creating genera...
7766     paper investigates lateral pullin effect inpla...
7767     answer mark kacs famous question one hear shap...
7768     machine learning models vulnerable adversarial...
7769     paper propose novel energy efficient adaptive ...
7770     discriminative correlation filter dcf based me...
7771     investigate multitarget search complex network...
7772     set new upper limit abundance primordial black...
7773     hierarchical clustering class algorithms seeks...
7774     introduce physics informed neural networks neu...
7775     escard simpson defined notion interval object ...
7776     apply basic statistical reasoning signal recon...
7777     root cause analysis anomalies challenging trad...
7778     neural networks shown remarkable ability uncov...
7779     bayesian inference requires approximation meth...
7780     two node variables determine evolution cascade...
7781     nowadays major challenge machine learning big ...
7782     problem constrained coverage path planning inv...
7783     design next generation computer systems suppor...
7784     let lk finite galois extension number fields g...
7785     paper explore possibility use alternative data...
7786     survey article based authors lectures current ...
7787     consider double layered prestrained elastic ro...
7788     heterogeneous information networks hins ubiqui...
7789     information bottleneck ib technique extracting...
7790     central problem graph mining finding dense sub...
7791     present complete resolution abrahamminkowski c...
7792     process induced efficiency variation major con...
7793     paper serve introduction body work robust subs...
7794     orthogonal matching pursuit omp widely used co...
7795     linear complementarydual lcd short codes linea...
7796     report joint work e jrvenp jrvenp rajala rogov...
7797     theoretically investigate possibility achievin...
7798     family quasiarithmetic means natural partial o...
7799     explicitly construct families integrable sigma...
7800     existing deep multitask learning mtl approache...
7801     execution logs used process mining practice of...
7802     consider initial value problem fractional nonl...
7803     framework variational principles stochastic fl...
7804     inspired recent work pl lions conditional opti...
7805     allosteric proteins transmit mechanical signal...
7806     discuss application agapito curtarolo buongior...
7807     sensl microfcsmt x mm silicon photomultiplier ...
7808     propose reduction nonconvex optimization turn ...
7809     learning algorithms implicit generative models...
7810     network coding based peertopeer streaming repr...
7811     baryonacoustic oscillation bao feature lymanal...
7812     means present geometrical dynamical observatio...
7813     paper describes infocatvae extension variation...
7814     study parity selmer ranks family quadratic twi...
7815     social networks often provide binary perspecti...
7816     marketing power grid management purposes many ...
7817     classify ulrich vector bundles arbitrary rank ...
7818     paper show kshellable simplicial complex expan...
7819     commonly used weighted least square state esti...
7820     closed four dimensional manifold cannot posses...
7821     demonstrate potential deep learning methods me...
7822     consider task identifying attitudes towards gi...
7823     training step variational autoencoder vae requ...
7824     introduce new audio processing technique incre...
7825     thermoelectric te measurements performed workh...
7826     autonomous systems substantially enhance human...
7827     interaction thin structures incompressible new...
7828     suspensions selfpropelled bodies generate uniq...
7829     manuscript discuss construction covariant deri...
7830     work formulate fixedlength distribution matchi...
7831     predicting ground state alloy systems challeng...
7832     paper gives short survey basic results related...
7833     opposed manual feature engineering tedious dif...
7834     spin ice research small variations structure i...
7835     present hybrid neural network rulebased system...
7836     creation smart future information society inte...
7837     acceptable quantum gravity theory must allow u...
7838     develop method estimate data travel latency co...
7839     selftaught learning technique uses large numbe...
7840     develop computational method regiosqm predicti...
7841     note discusses proofs convergence firstorder m...
7842     give new class multidimensional padic continue...
7843     present new sinfoni nearinfrared integral fiel...
7844     present several formulae larget asymptotics mo...
7845     propose distributed version stochastic approxi...
7846     propose expected policy gradients epg unify st...
7847     behavior new hysteretic nonlinear energy sink ...
7848     paper demonstrates designing developing ultral...
7849     support scientific visualization multiplemissi...
7850     learning auxiliary tasks shown improve general...
7851     highaltitude watercherenkov hawc experiment te...
7852     work study two models arbitrarily varying chan...
7853     propose three properties related stationary po...
7854     propose generative neural network methods gene...
7855     radioactive daughters isotope rn one highest r...
7856     consider problem provably optimal exploration ...
7857     citehillmotegi present new general asymptotic ...
7858     applications safety security rescue robotics m...
7859     theoretical study optical properties te tm mod...
7860     high dimensional superposition models characte...
7861     developers spend significant amount time searc...
7862     tens millions new variable objects expected id...
7863     multivariate nonlinear granger causality devel...
7864     dynamic dielectric nonlinearity barium stronti...
7865     nonlinear modal decoupling nmd recently propos...
7866     report discovery keltb transiting hot jupiter ...
7867     statistical analyses directional angular data ...
7868     twotimescale stochastic approximation sa algor...
7869     consider ysystem functional equations form ynx...
7870     address problem estimating statistics hidden u...
7871     ground state spin heisenberg antiferromagnet d...
7872     work extends results known delta sets nonsymme...
7873     study riemannhilbert problems associated donal...
7874     provide new theoretical insights overparametri...
7875     task multilabel learning predict set relevant ...
7876     iterative supervised learning algorithms commo...
7877     propose general framework learn deep generativ...
7878     based meteorological data investigated tempera...
7879     video popularity essential reference optimizin...
7880     many artificial intelligence ai applications o...
7881     complete foundational discussion acceleration ...
7882     consider stochastic multiarmed bandit problems...
7883     supervised object detection semantic segmentat...
7884     aim paper characterize nonnegative functions v...
7885     threedimensional color codes advantages faultt...
7886     paper explores supervised techniques continuou...
7887     early environmental scan conducted research li...
7888     demonstrate nonvolatile ntype backgated mos tr...
7889     memristive crossbars become popular means real...
7890     cholanaikkans diminishing tribe india populati...
7891     light transport simulation reinforcement learn...
7892     using high energy electron beam imaging high d...
7893     developmental robotics offers new approach num...
7894     even todays advanced machine learning models e...
7895     simulate boron pb surface using ab initio evol...
7896     modelbased reinforcement learning rl methods b...
7897     use color qr codes brings extra data capacity ...
7898     emission molecular ion h powerful diagnostic u...
7899     show well known rules back propagation arise w...
7900     large collections videos grouped clusters topi...
7901     requirements elicitation requires extensive kn...
7902     present results neutron scattering experiments...
7903     kickstarter crowdfunding campaigns successfull...
7904     franceschi et al proposed unified mathematical...
7905     potential functionals introduced recently impo...
7906     present simple deterministic algorithms subgra...
7907     consider finitedimensional irreducible transit...
7908     instruments visualize transient structural cha...
7909     highthroughput biological sequencing becomes f...
7910     present realtime featurebased slam simultaneou...
7911     purpose paper carry classical construction non...
7912     present set full evolutionary sequences white ...
7913     study uniqueness complete biconservative surfa...
7914     present mapping class simplified air traffic m...
7915     junior machado zuluaga studied model understan...
7916     monte carlo simulations using mcnp performed s...
7917     present new approach deal first order ordinary...
7918     significant research conducted recent years de...
7919     paper prove strong consistency several methods...
7920     besides huge technological importance fluidize...
7921     neural network based machine learning emerging...
7922     paper conducts rigorous analysis provable esti...
7923     distance true numerical solutions metric consi...
7924     article prove first eigenvalue inftylaplacian ...
7925     variety complex decisionmaking tasks doctors p...
7926     network embedding aims projecting network data...
7927     research aims identify bitcoinrelated news pub...
7928     optical properties photonic crystal covered pe...
7929     many settings involve sequential decisionmakin...
7930     existing methods dealing knowledge updates dif...
7931     seminal work several macroscopic market observ...
7932     paper approach controller design based cloud m...
7933     recent planet nine hypothesis led many observa...
7934     consider differentialdifference equations dete...
7935     random forests become important tool improving...
7936     two complex vector bundles admitting homomorph...
7937     resources natural environment concepts semanti...
7938     propose novel technique analyzing adaptive sam...
7939     computing polarised intensities noisy data sto...
7940     spatial point process context kernel intensity...
7941     study cr geometry arbitrary codimension introd...
7942     widespread use information technologies inform...
7943     receiver operating characteristic roc curves w...
7944     maximum entropy modeling flexible popular fram...
7945     variational tensor network renormalization app...
7946     propose general framework nonasymptotic covari...
7947     regular language l unionfree represented regul...
7948     piecewise deterministic markov processes pdmps...
7949     language models lm powerful lipreading systems...
7950     millisecond pulsars msps great potential set s...
7951     propose use optical antennas made natural hype...
7952     following success type ia supernovae constrain...
7953     highprecision modeling subatomic particle inte...
7954     entropy search es predictive entropy search pe...
7955     recent article jentzen mllergronbach yaroslavt...
7956     advancement nanoscale electronics limited ener...
7957     article studies recovery graphons convolution ...
7958     g millimeter wave mmwave technology envisioned...
7959     plants monitor surrounding environment control...
7960     humans able identify referred visual object co...
7961     present novel technique learning mass matrices...
7962     characteristics gravitational collapse superno...
7963     consider multicell joint power control schedul...
7964     copy article published imrn describe noncommut...
7965     propose new expression response quadrant detec...
7966     paper propose novel algorithm combine two cell...
7967     paper discuss nacuteeel kekulacutee valence bo...
7968     since multimedia streaming become popular rese...
7969     paper complete determination brauer trees unip...
7970     manuscript proposes novel empirical bayes tech...
7971     distributed cloud storage systems used reliabl...
7972     moedal experiment lhc optimised detect highly ...
7973     likely protostellar systems undergo brief phas...
7974     review recent progress modeling credit risk co...
7975     many scientific domains face fundamental probl...
7976     despite increasing focus data publication disc...
7977     classic approach learning bayesian networks da...
7978     new method simulate heat transport multiphase ...
7979     show nonempty open set hyperbolic surface prov...
7980     paper shall prove grand fujiifujiinakamoto ope...
7981     prove continuity controlled sde solution skoro...
7982     analyze evolution fe xii coronal plasma upflow...
7983     investigate size scaling macroscopic fracture ...
7984     consider timedependent viscous meanfield games...
7985     highresolution imaging reveals large morpholog...
7986     fix sets x write mathcalptxy set partial funct...
7987     exploiting others beneficial individually coul...
7988     theory graph limits represents large graphs an...
7989     dispersal ubiquitous throughout tree life fact...
7990     vortex boseeinstein condensate ring undergoes ...
7991     hidden quantum markov models hqmms thought qua...
7992     gradient descent commonly used solve optimizat...
7993     largescale deep neural networks memory intensi...
7994     stochastic variance reduction algorithms recen...
7995     give proof conjecture raised michael finkelber...
7996     note prove instability blowup ground state sol...
7997     study stochastic particle system logarithmical...
7998     paper applies hes new amplitudefrequency relat...
7999     complex lie superalgebras mathfrakg type da al...
8000     report magnetotransport measurements magnetica...
8001     address general mathematical problem computing...
8002     article proposes mixture modeling approach est...
8003     dual fabryperotcavitybased optical refractomet...
8004     develop theory modulated operators general pri...
8005     galex detected significant fraction earlytype ...
8006     present new decision procedure logic wss origi...
8007     given polynomial qzaazdotsanzn vector positive...
8008     paper analyzes directional tracking extended k...
8009     study shows software developers spend time loo...
8010     many current future exoplanet missions pushing...
8011     modern topic identification topic id systems s...
8012     spiking neural networks snns enable powereffic...
8013     determinantal point processes dpps distributio...
8014     brownian motion served pilot studies diffusion...
8015     paper describes use idea natural time propose ...
8016     owing connection generative adversarial networ...
8017     precision robotic pollination systems fill gap...
8018     theoretical existence nonclassical schottky gr...
8019     keyword spottingor wakeword detectionis essent...
8020     radiobiology studies effects galactic cosmic r...
8021     pose graph optimization involves estimation se...
8022     extending notion frobeniussplitting prove ever...
8023     latent block model lbm modelbased method clust...
8024     note point basic link generative adversarial g...
8025     paper introduce new framework detect elephant ...
8026     coresets compact representations data sets mod...
8027     recent work fluid infiltration heleshaw cell p...
8028     case linear state space model implement mcmc s...
8029     new class functions called information sensiti...
8030     main inspiration paper paper elek introduces c...
8031     exploratory data analysis crucial developing u...
8032     work investigate surface thermophysical proper...
8033     present new approach generating cluster states...
8034     earths climate mantle core interact geologic t...
8035     find form refractive index solution eikonal eq...
8036     semantic textual similarity sts measures meani...
8037     observations show luminous blue variables lbvs...
8038     collective behaviour people adopting innovatio...
8039     phase tensor pt marked breakthrough understand...
8040     paper propose implement general convolutional ...
8041     compoundspecific chlorine isotope analysis csi...
8042     advent new materials van der waals heterostruc...
8043     paper establish equivariant mirror symmetry we...
8044     generative adversarial networks gans transform...
8045     report results twelve simulations collapse mol...
8046     currentvoltage characteristics new range devic...
8047     discriminative approach classification using d...
8048     recurrent neural networks extensively studied ...
8049     scanning probe microscopy spm extensively appl...
8050     sgd stochastic gradient descent popular algori...
8051     occasion th anniversary first observation ce v...
8052     mobile adhoc networks manets identified key em...
8053     real world significant relation human behavior...
8054     message importance measure mim applicable char...
8055     paper addresses problem multiview people occup...
8056     bakground proliferation available microarray h...
8057     falling oil revenues rapid urbanization puttin...
8058     wide range humanrobot collaborative applicatio...
8059     cosi recently reported exhibit remarkable magn...
8060     construct examples modular rigid calabiyau thr...
8061     consider infinitebuffer singleserver queue int...
8062     minimal number rooted subtree prune regraft rs...
8063     analytical model humanrobot hr coordination pr...
8064     aim akaike information criterion aic widely us...
8065     order understand exoplanet need understand par...
8066     use drug combinations termed polypharmacy comm...
8067     musical intervals multiple semitones note equa...
8068     show knowledge dirichlet neumann map rough q d...
8069     part collection discussion pieces david donoho...
8070     paper consider control problem partially obser...
8071     binomial random intersection graphs used parsi...
8072     present new compressed representation free tra...
8073     multivariate linear regression model shuffled ...
8074     present model instantaneous collisions solid m...
8075     todays highperformance computing hpc systems h...
8076     realworld networks often powerlaw degrees scal...
8077     word similarities affect language acquisition ...
8078     prove weighted lpqestimates divergence type hi...
8079     give several sharp estimates class combination...
8080     phase retrieval refers problem recovering real...
8081     derive representation formula tensorial wave e...
8082     consider problem sequential detection change s...
8083     lacasa type system programming model enforce o...
8084     autonomous control systems onboard planetary r...
8085     paper study boundary layer problems incompress...
8086     scientific experiments online ab testing previ...
8087     introduction advanced machine learning methods...
8088     part work developed exact diffusion algorithm ...
8089     much combinatorial optimisation problems const...
8090     bismut zhang establish mod z embedding formula...
8091     sparse deep neural networksdnns efficient memo...
8092     syntactic structure sentence modelled tree ver...
8093     paper aim establish new shape theory compact h...
8094     article use strong law large numbers give proo...
8095     using enthalpybased thermal evolution loops eb...
8096     particle filters popular flexible class numeri...
8097     paper presents hybrid control framework motion...
8098     performed realistic atomistic simulations fini...
8099     paper investigate effective sketching schemes ...
8100     recommender systems widely used predict person...
8101     nonrelativistic variational calculation comple...
8102     formulate optimization problem control large n...
8103     free lunch single learning algorithm outperfor...
8104     given multiplatform genome data prior knowledg...
8105     spin torque oscillators placed onto nonmagneti...
8106     study complementary information set codes leng...
8107     objectives discussions fairness criminal justi...
8108     article analysis carried within confines repli...
8109     investigate spinbrauer diagram algebra denoted...
8110     using muon spin rotation shown field first flu...
8111     paper studies contraction properties nonlinear...
8112     let h hopf quasigroup bijective antipode let a...
8113     sparse dictionary learning sdl become popular ...
8114     consider problem identifying profitable produc...
8115     present various identities involving classical...
8116     work magnetoresistance mr ultrathin wtebn hete...
8117     morpheo transparent secure machine learning pl...
8118     obtain hlder regularity time derivative soluti...
8119     based third allotropic form carbon fullerenes ...
8120     topics machine learning commonly addressed res...
8121     study proposes mixed logit model multivariate ...
8122     tuning band gaps twodimensional materials grea...
8123     michaelismenten mechanism probably best known ...
8124     given unconstrained stream images captured wea...
8125     graphene potential make significant impact soc...
8126     using brownian motion periodic potentials vx t...
8127     observe breakup dynamics elongated cloud conde...
8128     conical density theorems used geometric measur...
8129     despite wealth planck results difficulties dis...
8130     giant impacts gis common late stage planet for...
8131     expectation emergence higher functions getting...
8132     generative adversarial network gan variants ex...
8133     fairness decisionmakers believed auditable thi...
8134     paper presents stochastic logic time delay res...
8135     photosynthetic organisms rely series selfassem...
8136     prove chernofftype bound sums matrixvalued ran...
8137     cognitive neuroscience enjoying rapid increase...
8138     automatic body part recognition ct slices bene...
8139     word obfuscation substitution means replacing ...
8140     one remaining obstacles approaching theoretica...
8141     recent developments imaging techniques enable ...
8142     consider semiparametric transformation models ...
8143     mathfrakp subseteq mathbbzzeta prime ideal p p...
8144     one big challenge hinders transition braincomp...
8145     present study social networks based analysis b...
8146     platinum diselenide ptse exciting new member t...
8147     oneparameter family longrange resonating valen...
8148     loggaussian cox process flexible popular class...
8149     misra project started mission providing worldl...
8150     estimation hand grip force essential understan...
8151     investigate probabilistic graphical models all...
8152     article investigates fast stable method solve ...
8153     article us mean curvature flow surgery derive ...
8154     extend idea conformal attractors inflation non...
8155     conventional wisdom holds modelbased planning ...
8156     prefrontal cortex known involved many highleve...
8157     atomicsize spin defects solids unique quantum ...
8158     pairwise samecluster queries one widely used f...
8159     light pseudoscalar fields promising candidates...
8160     tor lowlatency anonymity system intended provi...
8161     paper presents machine learning experiments pe...
8162     lrs locally rotationally symmetric bianchi typ...
8163     learning many realworld datasets limited probl...
8164     family sets said emphsymmetric automorphism gr...
8165     last fifteen subset sampling method often used...
8166     work consider solutions maxwell equations schw...
8167     consider problem diagnostic pattern recognitio...
8168     riesz spotentials kxyxys investigate separatio...
8169     show algebraically locally finite countable ho...
8170     multiway rendezvous introduced theoretical csp...
8171     study online multiple testing problem hypothes...
8172     paper characterize set polynomials finmathbb f...
8173     consider class kinetic models polymeric fluids...
8174     maximal equilibriumindependent passivity meip ...
8175     volume data generated modern astronomical tele...
8176     quasid heavyfermion system ybnipxasx presence ...
8177     wildland fire dynamics complex turbulent dimen...
8178     recently deep reinforcement learning rl method...
8179     evaluating computational reproducibility data ...
8180     propose deep learning model identifying struct...
8181     p speller braincomputer interface enables peop...
8182     functions functionnings enable give structure ...
8183     reducedorder models roms popular efficiently s...
8184     ranking ordered sequence items item higher ran...
8185     dark matter axions generate peculiar effects s...
8186     let randomized query complexity relation error...
8187     article investigate first order reparametrizat...
8188     study unique network dataset including periodi...
8189     explicitly describe isomorphism two combinator...
8190     propose ensemble clustering algorithm graphs e...
8191     feature selection highdimensional data small p...
8192     paper considers multipleinput multipleoutput m...
8193     observations powerful xray telescopes xmmnewto...
8194     paper consider onedimensional coxingersollross...
8195     context solar observatories providing worldwid...
8196     based firstprinciples calculations effective m...
8197     paper presents modelbased design evaluation in...
8198     present chemical abundance analysis tidally di...
8199     transition metal carbides include wide variety...
8200     programming languages besides c provide native...
8201     article proposed new probability distribution ...
8202     propose algorithm deep learning networks graph...
8203     paper study stochastic optimal control problem...
8204     recent years use adjoint vectors computational...
8205     present new methodology computing incremental ...
8206     prior knowledge objects object features helps ...
8207     light carrying orbital angular momentum oam sh...
8208     theorem gekeler compares number nonisomorphic ...
8209     modelfree policy learning enabled robust perfo...
8210     investigate series learning kernel problems po...
8211     paper study following critical system fraction...
8212     skin cancer one major types cancers incidence ...
8213     paper investigate extent results z wang daigle...
8214     novel approach based notion altruism presented...
8215     maximum entropy method mem well known deconvol...
8216     paper construct green function classical orrso...
8217     proposed life earth might descend seeding earl...
8218     time integration transient eddy current proble...
8219     prove transversality result necessary defining...
8220     let mu measure mathbb rd compact support conti...
8221     schmidt wrote seminal paper heights subspaces ...
8222     paper establish optimal rates adaptive estimat...
8223     voltage control plays important role operation...
8224     work derive generic overcomplete frame thresho...
8225     work presents methodology design trajectory tr...
8226     system application availability continues fund...
8227     current tools exploratory data analysis eda re...
8228     rotationally coherent lagrangian vortices rclv...
8229     present novel method convex unconstrained opti...
8230     problem finding good approximations arbitrary ...
8231     many machine learning tasks desirable models p...
8232     consider stochastic bandit problem sublinear s...
8233     paper devoted study max karmed bandit problem ...
8234     paper centers comparison three different model...
8235     initialboundary value problems bounded rectang...
8236     study stability pwave superfluidity quantum fl...
8237     stochastic allencahn equation multiplicative n...
8238     work consider quantum generalization task cons...
8239     popular approach modeling inference spatial st...
8240     study inhomogeneous neumann boundary value pro...
8241     optical spectroscopy primary tool study electr...
8242     known essential spectrum schrdinger operator h...
8243     investigate impact external pressure structure...
8244     pumpprobe experiments turned powerful tool ord...
8245     investigate impact filament void environments ...
8246     area distributed graph algorithms number netwo...
8247     order machine learning deployed trusted many a...
8248     monolayer films fese grown srtio substrates ex...
8249     automatic summarisation popular approach reduc...
8250     channel feedback essential frequency division ...
8251     study electron phonon thermalization simple me...
8252     prove free boltzmann quadrangulation simple bo...
8253     canonically quantize od nonlinear sigma models...
8254     propose novel dirichletbased plya tree dp tree...
8255     paper present model predictive control mpc fra...
8256     predicting cheapest sample size optimal strati...
8257     article propose novel technique classification...
8258     possibility perform highresolution timeresolve...
8259     work establish relation optimal control traini...
8260     article consider following capacitated coverin...
8261     coherent phonon cp generation undoped si cryst...
8262     recent advances neural networks nns exhibit un...
8263     classicalinput quantumoutput cq wiretap channe...
8264     alternative voting scheme proposed fill democr...
8265     double dirac fermions recently identified poss...
8266     although recent progress control multijoint pr...
8267     paper establish new explicit upper lower bound...
8268     performing numerical integration integrand can...
8269     spatially dependent parameters twocomponent ch...
8270     dm tool used hundreds researchers perform comp...
8271     building largescale globally consistent maps c...
8272     velocity dispersion cold interstellar gas sigm...
8273     framework statistical inference successfully u...
8274     x real valued random variables first moments x...
8275     classical involutive division theory janet dec...
8276     synchronous computation models simplify design...
8277     swarms robots revolutionize many industrial ap...
8278     oxidation process simulated bundle metal tubes...
8279     present panorama hpc architectures extremely h...
8280     study nodetrix planarity testing problem flat ...
8281     present exact analytical results degree distri...
8282     exor objects young variables show episodic var...
8283     paper first introduce new kinds weighted amalg...
8284     propose method estimating coefficients multiva...
8285     achieving highfidelity control quantum systems...
8286     online job boards one central components moder...
8287     understanding semantic similarity among images...
8288     detection gravitational waves ligo virgo requi...
8289     blackbox variational inference tries approxima...
8290     paper proposes clustering procedure samples mu...
8291     wasp hot jupiter system orbital period p textr...
8292     many machine learning systems rely data collec...
8293     chemicalchemical interaction cci plays key rol...
8294     paper improve moment estimates gaps numbers re...
8295     realize family generalized cluster algebras ca...
8296     ricean channel model widely used wireless comm...
8297     paper consider framework projected gradient it...
8298     homoclinic unstable periodic orbits chaotic sy...
8299     motivated recent experiments twocomponent bose...
8300     high planetary multiplicity revealed kepler im...
8301     neuronal network dynamics depends network stru...
8302     study beurlingselberg problem finding bandlimi...
8303     understanding developing correlation measure d...
8304     outoftimeorder oto operators recently become p...
8305     distribution scientific citations publications...
8306     monocular camera systems prevailing intelligen...
8307     architecture patterns capture architectural de...
8308     consider certain definite integral involving p...
8309     describe second generalized fengrao distance e...
8310     given sample poisson point process intensity l...
8311     image simulation scanning transmission electro...
8312     study point sources astronomical images specia...
8313     consider pac learning probability distribution...
8314     ontologybased data access obda popular approac...
8315     multiplex networks describe large number compl...
8316     discuss emergence pwave superfluidity identica...
8317     functions proteins rnas determined myriad inte...
8318     extraordinary progress made towards developing...
8319     twodimensional materials significant potential...
8320     rapid growth social media massive misinformati...
8321     setidentified models often restrict number cov...
8322     given integer base b set integers represented ...
8323     plasmonic metasurfaces employed tuning control...
8324     context stochastic twophase flow porous media ...
8325     medical research facilitates acquire diverse t...
8326     derived geometry defined universal way adjoin ...
8327     feature model widely used capture commonalitie...
8328     emerging problem computer vision reconstructio...
8329     earlier work katz exhibited simple one paramet...
8330     linked beneficial deleterious mutations known ...
8331     extend vector configurations general objects n...
8332     survey contains main results rational homotopy...
8333     latetype star beta cmi remarkably stable compa...
8334     sapirovskii proved xleqpichixcxpsix regular sp...
8335     incompressible periodic statistically stationa...
8336     distribution grids constitute complex networks...
8337     paper construct analogue luries unstraightenin...
8338     approximate string matching fundamental recurr...
8339     present strain temperature dependence anomalou...
8340     present system covert automated deception dete...
8341     recent work degenerate stirling polynomials se...
8342     integration multiple viewpoints became increas...
8343     acousticstoword models endtoend speech recogni...
8344     smart sensing expected become pervasive techno...
8345     designers modern readerwriter locks confront d...
8346     internal diffusionlimited aggregation idla sto...
8347     groundbased observations thermal infrared wave...
8348     article presents various weak laws large numbe...
8349     develop algorithm synthesizing spatial pattern...
8350     extended biquaternionic diracs equation includ...
8351     describe framework deriving analyzing online o...
8352     often claimed error cancellation plays essenti...
8353     consider spectral clustering algorithms commun...
8354     thermal gradients induce concentration gradien...
8355     annihilating dark matter dm models offer promi...
8356     convolution trees loopy belief propagation fas...
8357     levelsensitive latches widely used high perfor...
8358     paper give method construct momentangle manifo...
8359     heuristic tools statistical physics used past ...
8360     xu et al j asian earth sci bf reported approxi...
8361     consider conservative hnon family perioddoubli...
8362     analyze stylized model coevolution two purely ...
8363     propose use neural networks simultaneous detec...
8364     work give first algorithms tolerant testing no...
8365     simplified model example regional rf hyperther...
8366     topological dirac semimetals tdss represent ne...
8367     classic arcsine law number nnnsumknmathbfsk po...
8368     demand response aims stimulate electricity con...
8369     first two detections late astrophysics officia...
8370     paper considers distributed multiagent optimiz...
8371     audeep python toolkit deep unsupervised repres...
8372     annotation training data major bottleneck crea...
8373     extreme cold weather living organisms produce ...
8374     powerful method pioneered swinnertondyer allow...
8375     previous work questioned conditions decision r...
8376     note show backwards uniqueness theorem mean cu...
8377     classical habitable zone circular region aroun...
8378     paper use inverse mean curvature flow establis...
8379     errortolerant applications approximate adders ...
8380     totally new energy harvesting architecture exp...
8381     stochastic computer simulations enable users g...
8382     nonorthogonal multiple access noma candidate m...
8383     backgroundintroduction zipfs law establishes w...
8384     online reviews provide viewpoints strengths sh...
8385     develop local theory construction singular spa...
8386     manuscript discusses still preliminary conside...
8387     first review classical results cloaking mirage...
8388     well known multivariate rogersszeg polynomials...
8389     using methods statistical physics analyse erro...
8390     paper present parallelization strategy distrib...
8391     paper present method initialize feasible point...
8392     paper explores four different visualization te...
8393     discovery accurate causal bayesian network str...
8394     paper proposes approach rapid bounding box ann...
8395     social media provides political news informati...
8396     seaquest spectrometer fermilab designed detect...
8397     recent successes deep learning led wave intere...
8398     many samples sufficient guarantee eigenvectors...
8399     wavefronts nonlinear nonlocal bistable reactio...
8400     neural networks generally built interleaving a...
8401     inviscid computational results presented selfp...
8402     aim chapter provide adequate graph theoretic f...
8403     dependent object types dot calculus formalizes...
8404     information web dialogic facebook newsfeeds fo...
8405     detecting light extrasolar planetswe measure c...
8406     uncovering modular structure networks fundamen...
8407     properties cold interstellar medium lowmetalli...
8408     provide novel theoretical insights structured ...
8409     sharir welzl derived bound crossingfree matchi...
8410     spectral renormalization method introduced eff...
8411     wild bootstrap resampling method choice surviv...
8412     paper consider soft measure block sparsity kal...
8413     fundamental question reinforcement learning wh...
8414     properly benchmarking automated program repair...
8415     spatial understanding fundamental problem wide...
8416     paper concerned design capacity approaching en...
8417     refractory organic compounds formed molecular ...
8418     greek aperitif ouzo famous specific aniseflavo...
8419     article semianalytical approach demonstrating ...
8420     one key challenges revenue management unconstr...
8421     paper devoted dimensional relative differentia...
8422     subject thesis uniqueness theory meromorphic f...
8423     transfer learning methods address situation li...
8424     recent observations revealed massive galactic ...
8425     volume manuscripts submitted publication growi...
8426     paper search existence invariant solutions bia...
8427     study nonsymmetric macdonald polynomials speci...
8428     paper aims address two issues existing current...
8429     quanta image sensor qis binary imaging device ...
8430     odd prime p conjecture distribution ptorsion s...
8431     present novel approach shared control humanmac...
8432     following rapidly growing digital image usage ...
8433     address reduction compact band forms via unita...
8434     provide counterexample wentes inequality conte...
8435     let mathfrako complete discrete valuation ring...
8436     comparison study high pressure superconducting...
8437     dozen ultracool dwarfs ucds lowmass objects sp...
8438     side channel attacks major class attacks crypt...
8439     suggested adversarial examples cause deep lear...
8440     clear em spectrum rapidly reaching saturation ...
8441     topological linkprediction exploit entire netw...
8442     theoretically demonstrated emission circularly...
8443     scenario recently reported order stabilize com...
8444     paper propose opportunistic downlink interfere...
8445     let n nonnull positive integer dn number posit...
8446     generalize notion selfsimilar groups infinite ...
8447     aim thesis find solution nonparametric indepen...
8448     present novel tractable generative model exten...
8449     exponential growth smartphone adoption contrib...
8450     revisit algebraic description shape invariance...
8451     present continuous time state estimation frame...
8452     search digital biomarkers parkinsons disease o...
8453     study invasion fronts spreading speeds two com...
8454     neural networks commonly trained make predicti...
8455     objective model presented evaluate viability u...
8456     ultracold atomic gases realised numerous parad...
8457     identifying anomalous patterns realworld data ...
8458     analyze isolated resonance curves ircs singled...
8459     air pollution becoming largest environmental h...
8460     interaction electron system strong electromagn...
8461     increasing practice engaging crowds organizati...
8462     survey explores procedural content generation ...
8463     increasing numbers software vulnerabilities di...
8464     dependence mass accretion rate stellar propert...
8465     limitations matrix factorization losing spatia...
8466     letter reports successful use feedback spin po...
8467     recent years witnessed widespread increase int...
8468     modified camassaholm equation also called forq...
8469     representation learning algorithms designed le...
8470     use large amounts unlabeled video learn models...
8471     valley pseudospin labeling quantum states ener...
8472     paper introduces schurconstant equilibrium dis...
8473     let g semisimple real lie group finite center ...
8474     dirichlet kpartition domain u subseteq mathbbr...
8475     wake behind sphere rotating axis aligned strea...
8476     large size air cherenkov telescope lst prototy...
8477     basic firstorder differential operators spin g...
8478     gravitational wave observations eccentric bina...
8479     paper proposes novel joint computation communi...
8480     describe novel approach computing wave correla...
8481     paper investigates one fundamental issues cach...
8482     experimentally demonstrate operation josephson...
8483     introduce new model formation evolution superm...
8484     point matching refers process finding spatial ...
8485     call efficient computer architectures introduc...
8486     possibility constructing lorenzs concept avail...
8487     anisotropy magnetic properties commonly introd...
8488     high coefficient performance zero local emissi...
8489     developing safe efficient collision avoidance ...
8490     betweenness centrality important index widely ...
8491     design gaits robot locomotion daunting process...
8492     study random networks neuroscientific context ...
8493     paper present perturbed lawbased sensitivity i...
8494     show counting class lwpp ffk remains unchanged...
8495     currentinduced spinorbit torques sots represen...
8496     explored evolution cold debris disk gravitatio...
8497     concept derivative coordinate functions proved...
8498     revisit wellknown objectpool design pattern ja...
8499     recent quasar surveys revealed supermassive bl...
8500     idea reusing information previously learned ta...
8501     paper presents distributed model predictive co...
8502     direct imaging exoplanets circumstellar disk m...
8503     relationship communicating automata session ty...
8504     present phase induced transparency based schem...
8505     twisted torus knot knot obtained torus knot tw...
8506     many online applications interactions user web...
8507     endtoend learning refers training possibly com...
8508     necessarily selfadjoint quantum graphs differe...
8509     paper completely solve diophantine equations f...
8510     combine sullivan models rational homotopy theo...
8511     deep learning based speech enhancement source ...
8512     ranking used wide array problems notably infor...
8513     alice farultraviolet imaging spectrograph onbo...
8514     adsorption hydrogen nonpolar gan surfaces impa...
8515     study fast multipole method fmm used decrease ...
8516     present quantitative characterization electric...
8517     describe novel iterative strategy kohnsham den...
8518     medical applications challenge todays text cat...
8519     supervised learning specifically convolutional...
8520     observe electricdipole forbidden srightarrows ...
8521     paper propose integrated framework autonomous ...
8522     motility mechanism certain rodshaped bacteria ...
8523     designing pseudorandom number generator prng d...
8524     present warp hardware platform support researc...
8525     atomistic effective hamiltonian simulations us...
8526     permutation testing nonparametric method obtai...
8527     recording spectra ground atmospheric turbulenc...
8528     data often labeled many different experts expe...
8529     sparse tiling technique fuse loops access comm...
8530     paper concerned modeling dependence structure ...
8531     defining mth stratum closed subset n dimension...
8532     regression problems assume every instance anno...
8533     traditional models question answering optimize...
8534     study learning problems involving arbitrary cl...
8535     open new field one define means infinite sets ...
8536     paper proves tamed closed almost complex fourm...
8537     contours may viewed outline image object type ...
8538     discuss systematic expansion solution fokkerpl...
8539     cspe specification language runtime monitors d...
8540     study properties entanglement twodimensional t...
8541     fully exploiting properties crystals requires ...
8542     traditionally problem researchers access enoug...
8543     study thermal diffusivity dt models metals wit...
8544     paper presents methodology simulating internet...
8545     symmetry operators twistor spinors harmonic sp...
8546     consider marked empirical processes indexed ra...
8547     exist wide range effective methods community d...
8548     discovery pluto presaged discoveries kuiper be...
8549     study strichartz estimates schrdinger equation...
8550     visualizing highdimensional data focus data an...
8551     voltage control effects provide energyefficien...
8552     present expectationmaximization algorithm frac...
8553     paper focuses recently introduced successive c...
8554     numerical simulations beamplasma instabilities...
8555     article introduce variable exponent fock space...
8556     despite originally inspired central nervous sy...
8557     set economic entities embedded network graph c...
8558     survey article dedicated families fractals int...
8559     work proposes novel approach restricting acces...
8560     paper hybrid measurement modelbased method pro...
8561     running highresolution physical models computa...
8562     work consider open quantum random walks nonneg...
8563     introduce nevanlinna classes holomorphic funct...
8564     current article explores interesting significa...
8565     style transfer among images recently emerged a...
8566     kinematics robot manipulator described terms m...
8567     technical report provides description derivati...
8568     set points mathbbrd acute three points set for...
8569     paper presents preliminary results work major ...
8570     stress seen physiological response everyday em...
8571     study problem causal structure learning experi...
8572     rogue waves periodic counterparts shown exist ...
8573     study following control problem fish bounded a...
8574     classify betti tables indecomposable graded ma...
8575     possible understand whether given bps spectrum...
8576     order scale standard gaussian process gp regre...
8577     present new inference method based approximate...
8578     explore recently proposed variational dropout ...
8579     note contains additions paper clustered cell d...
8580     review recent advances record statistics stron...
8581     paper study prandtls boundary layer asymptotic...
8582     given full partial information collection poin...
8583     techniques approximately contracting tensor ne...
8584     rapid advances development nanotechnology nowa...
8585     let g abelian group subset g cyca denotes set ...
8586     poor road conditions public nuisance causing p...
8587     introduce concrete autoencoder endtoend differ...
8588     thesis present theoretical studies models self...
8589     many algorithms used solve minimization proble...
8590     explore relation urban road network characteri...
8591     complement msetminus l lagrange spectrum l mar...
8592     compare six models including baryonic model tw...
8593     clustering data set one core tasks data analyt...
8594     solve regularity problem milnors infinite dime...
8595     paper focus online reviews employ artificial i...
8596     study exponential convergence stationary state...
8597     fermionic natural occupation numbers obey paul...
8598     high dimensional sparse learning imposed great...
8599     paper introduce new characterizations spectral...
8600     article reformulate cobordism map embedded con...
8601     study stability recently proposed model scalar...
8602     topological phases matter considered bedrock n...
8603     discuss production evolution cosmological grav...
8604     investigate effect cylindrical nanoconfinement...
8605     paper propose unsupervised reinforcement learn...
8606     main results note concern characterization len...
8607     provide sufficient criterion unique parameter ...
8608     develop theory diophantine approximation syste...
8609     present generative framework generalized zeros...
8610     distance multivariance multivariate dependence...
8611     develop simulation scheme class spatial stocha...
8612     present paper extends thermodynamic dislocatio...
8613     propose experimentally demonstrate enhancement...
8614     dark matter particle spin two types wimpnucleo...
8615     gottschalk vygen proved every solution subtour...
8616     recently deep neural networks demonstrated exc...
8617     consider controlconstrained parabolic optimal ...
8618     increase use resilient control algorithms base...
8619     classification high dimensional data finds wid...
8620     effect spinorbit coupling soc electronic prope...
8621     clustering integers equal total stopping times...
8622     construct model galactic globular cluster syst...
8623     video summarization approaches focused extract...
8624     show duality relation sum multiple zeta values...
8625     statistical pattern recognition methods provid...
8626     paper walgebras presented canonical colimits d...
8627     obtain estimates mean squared error mse multit...
8628     embarrassingly communicationfree parallel mark...
8629     network models increasingly used past years su...
8630     paper studies performance multihop mesh networ...
8631     possible draw circle manhattan using discrete ...
8632     article present bernstein inequality sums rand...
8633     chipscale integrated light sources crucial com...
8634     recent experiments revealed striking asymmetry...
8635     establishing connection bidirectional helmholt...
8636     consider fiberwise singly generated fellbundle...
8637     need large annotated image datasets training c...
8638     prove every set n points mathbbr spans onepsil...
8639     periodic solutions three body problem importan...
8640     observations solar photosphere ground encounte...
8641     multidimensional item response theory widely u...
8642     statistical learning using imprecise probabili...
8643     paper deals planar segment processes given den...
8644     consider problem choosing parametric models di...
8645     construct local generalizations state potts mo...
8646     shortcoming existing reachability approaches n...
8647     crowdsourced video systems like youtube twitch...
8648     intracellular bidirectional transport cargo mi...
8649     study asymptotic distributions spiked eigenval...
8650     consider nonparametric poisson regression prob...
8651     typelevel word embeddings use set parameters r...
8652     cell division timing critical cell fate specif...
8653     confluence nondeterministic program ensures fu...
8654     propose novel projection based way incorporate...
8655     qlbs model discretetime option hedging pricing...
8656     demonstrate approach face attribute detection ...
8657     melamed harrell simpson recently reported expe...
8658     critical applications anomaly detection includ...
8659     lithium ion batteries libs proper design catho...
8660     study massive two dimensional dirac operator e...
8661     paper present novel formal agentbased simulati...
8662     consider asep stochastic six vertex model star...
8663     selforganizing logic recentlysuggested framewo...
8664     robot carry naturallanguage instruction dream ...
8665     gain control magnetic order ultrafast time sca...
8666     automated classification methods disease diagn...
8667     richclub concept introduced order characterize...
8668     sparse variational approximations allow princi...
8669     anyons exotic quasiparticles fractional charge...
8670     former paper authors introduced two new system...
8671     bounce universe model known coupledscalartachy...
8672     intelligent infrastructure critically rely den...
8673     foundations equilibrium thermodynamics equatio...
8674     obtain optimal proxy variance subgaussianity b...
8675     starting anosov chaotic dynamics geodesic flow...
8676     article novel analytical approach presented an...
8677     causal effects commonly defined comparisons po...
8678     applying certain flexible geometric sampling m...
8679     discriminative power modern deep learning mode...
8680     tdistributed stochastic neighborhood embedding...
8681     construct imaginary quadratic number fields cl...
8682     increased application modelbased wholebody con...
8683     paper consider blocksparse signals recovery pr...
8684     dwarf stars masses less per cent sun make per ...
8685     consider gas independent brownian particles bo...
8686     purpose paper continues development comprehens...
8687     hierarchical scheme clustering data presented ...
8688     forecast political elections popular pollsters...
8689     vast majority optimization online learning alg...
8690     introduce low complexity machine learning base...
8691     performing statistical analysis singlesubject ...
8692     present randomizationbased inferential framewo...
8693     negative index materials artificial structures...
8694     factor analysis principal component analysis p...
8695     paper compute laplacian spectrum noncommuting ...
8696     test coulomb exchange correlation energy densi...
8697     paper proposes centralized distributed subopti...
8698     unsupervised learning generalized hopfield ass...
8699     biocompatible microencapsulation widespread in...
8700     work define solve fair topk ranking problem wa...
8701     entangled states notoriously nonseparable sube...
8702     remarkable success machine learning especially...
8703     structures properties many inorganic compounds...
8704     symmetry breaking responsible axion dark matte...
8705     performing analytic household load curves lcs ...
8706     prove two general theorems determine lie noeth...
8707     new model thermal inflation introduced mass th...
8708     present novel humanaware navigation approach r...
8709     paper prove fourmoment theorems multidimension...
8710     paper study finite walgebra queer lie superalg...
8711     motivation integratively analyze largescale mu...
8712     unified modeling framework nonfunctional prope...
8713     obtaining magnetic resonance images mri high r...
8714     continue study problem modeling substitution p...
8715     study superconducting properties populationimb...
8716     establish analogy superconductormetal interfac...
8717     chain late roman fortified settlements built k...
8718     let x smooth manifold smooth involution sigmax...
8719     pilot system development metrescale negative l...
8720     paper propose novel methodology static analysi...
8721     aim paper provide several novel upper bounds e...
8722     since unveiling schemaorg become de facto stan...
8723     give extension rubio de francias extrapolation...
8724     carbon solubility facecentered cubic niw alloy...
8725     paper linear sigma model studied using method ...
8726     fundamental challenge multiagent systems desig...
8727     foreign policy analysis struggling find ways m...
8728     problems searchbased software engineering invo...
8729     j makowsky b zilber showed many variations gra...
8730     twoline elements tles continue sole public sou...
8731     paper present initial attempt learn evolution ...
8732     study parameter planes certain onedimensional ...
8733     providing frequency regulation payforperforman...
8734     let real bott manifold khler structure using i...
8735     kecknirc imaging survey searches stellar compa...
8736     regression context relevant subset explanatory...
8737     cavitybased axion dark matter search experimen...
8738     physical unclonable function puf analogous hum...
8739     since concept spin superconductor proposed rel...
8740     order understand mechanisms behind emergence s...
8741     training deep neural networks dnns efficiently...
8742     measurement zeta potential ga nface gallium ni...
8743     wikipedia articles representing entity topic d...
8744     building upon hoveys work smith ideals monoids...
8745     phase power control methods satisfy requiremen...
8746     study morsenovikov cohomology almostsymplectic...
8747     novel frequency domain training sequence corre...
8748     show set cusp shapes hyperbolic tunnel number ...
8749     consider dtimes tensors ax symmetric positive ...
8750     purpose siemens developed several iterative re...
8751     let smooth manifold ksubset simplicial complex...
8752     predictive process monitoring concerned analys...
8753     line field manifold smooth map assigns tangent...
8754     propose novel automaton model uses arithmetic ...
8755     increasing use wearables smart telehealth gene...
8756     letter presents new spectralclusteringbased ap...
8757     closure partitioning principles used build var...
8758     certain systems inviscid fluid dynamics proper...
8759     proper choice collective variables cvs central...
8760     let g inner form general linear group nonarchi...
8761     concepts sketching subsampling recently receiv...
8762     small drops impinging angularly thin flowing s...
8763     integral scheme efficient evaluation twocenter...
8764     integrating product linear forms unit simplex ...
8765     consider modification covariance function gaus...
8766     interpret augmented racks certain kind multipl...
8767     determine modular curves xdeltan curves lying ...
8768     many households developing countries lack form...
8769     ergodicity output controllability shown fundam...
8770     propose effective method solve event sequence ...
8771     let g finite group let cg number cyclic subgro...
8772     provide novel accelerated firstorder method ac...
8773     calculate disruption scale lambdarm sheetlike ...
8774     neutrinos coming suns core measured high preci...
8775     standard graph clusteringcommunity detection o...
8776     let n compact connected nonorientable surface ...
8777     present gofmm geometryoblivious fmm novel meth...
8778     identifying coordinate transformations make st...
8779     neuronal correlates parkinsons disease pd incl...
8780     heterosis improved increased function biologic...
8781     paper propose novel cs approach acquisition no...
8782     general small bodies solar system eg asteroids...
8783     let omega bounded open set mathbb rn nge paper...
8784     paper introduces parametric levelset method to...
8785     large volume genomics data produced daily basi...
8786     hexagonal manganites remno rare earths attract...
8787     fully pseudospectral solver direct numerical s...
8788     paper two purposes first study several structu...
8789     noncommuting graph gammag nonabelian group g d...
8790     linearquadraticgaussian lqg control concerned ...
8791     subspace learning important problem many appli...
8792     objective purpose work analyse knowledge struc...
8793     concept balance two state preserving quantum m...
8794     paper develops randomized approach incremental...
8795     study four different notions convergence graph...
8796     paper presents analysis impact floatingpoint n...
8797     let lk extension complete discrete valuation f...
8798     shown mcmullen coefficients ehrhart polynomial...
8799     heart rate variability hrv vital measure auton...
8800     demonstrate fabrication photonic crystal nanob...
8801     block coordinate update bcu methods enjoy low ...
8802     overhead depth map measurements capture suffic...
8803     discovered novel candidate spin liquid state r...
8804     spherical principal series representations pin...
8805     lidar extensively used industry massmarket due...
8806     fuzz programming language reed pierce uses ele...
8807     study padic families eigenforms pth hecke eige...
8808     report size dependence surface tension free su...
8809     epileptic seizure activity shows complicated d...
8810     present formal model fragmentation reassembly ...
8811     developed efficient active galactic nucleus ag...
8812     feature selection procedures spatial point pro...
8813     effective representation proteins crucial task...
8814     introduce class distributed control policies n...
8815     version liouvilles theorem proved solutions de...
8816     study optimal boundary control problem twodime...
8817     small solids embedded gaseous protoplanetary d...
8818     paper show shear modulus mu isotropic elastic ...
8819     paper study rational sections relative picard ...
8820     recent years great interest variational analys...
8821     alzheimers disease major cause dementia diagno...
8822     quantity interest system governed ordinary dif...
8823     learning unlabeled noisy data one grand challe...
8824     reliable physiological function maintained cel...
8825     programmable packet processors p programming l...
8826     use group theoretic ideas coset space methods ...
8827     present framework calculate large deviations n...
8828     every university introductory physics course c...
8829     imaging form probabilistic belief change could...
8830     paper give new sparse interpolation algorithms...
8831     improving health nations population increasing...
8832     lregularized models widely used sparse regress...
8833     zerodelay transmission gaussian source additiv...
8834     paper proposes novel nonoscillatory pattern no...
8835     main aim paper development lyapunov function b...
8836     scheduling surgeries challenging task due fund...
8837     field speech recognition midst paradigm shift ...
8838     recently deep learning based natural language ...
8839     carried synthetic observations interstellar at...
8840     social approach exploited internet things iot ...
8841     paper introduce powerful technique leaveoneout...
8842     paper introduce weyl functional calculus mapst...
8843     recent modelfree reinforcement learning algori...
8844     paper propose new method joint nonparametric e...
8845     convolutional neural nets cnns become practica...
8846     investigated transport magnetotransport broadb...
8847     present cosmological constraints scalartensor ...
8848     government agencies offer economic incentives ...
8849     gaussian polytope mathcal pnd convex hull n in...
8850     news spread internet media outlets seen contag...
8851     market asymmetric information viewed repeated ...
8852     domain shift refers well known problem model t...
8853     android users suffering serious threats variou...
8854     classify number symmetry protected phases usin...
8855     kidney function evaluation using dynamic contr...
8856     problem construction quantum mechanical evolut...
8857     numerous geological observations evidence inel...
8858     study screening bounded body gamma effect wind...
8859     vertices graph edges may partitioned two parts...
8860     full squashed flat antichain fsfa boolean latt...
8861     paper investigate called phantom barrier cross...
8862     introduce notion tropical defects certificates...
8863     paper introduces wasserstein variational infer...
8864     let g real linear semisimple algebraic group w...
8865     consider ensemble random density matrices dist...
8866     fermion localization functions used discuss el...
8867     randomized experiments gold standard evaluatin...
8868     standard approach assessing performance partit...
8869     propose madgan intuitive generalization genera...
8870     aetiology polygenic obesity multifactorial ind...
8871     develop analytical framework perfor mance comp...
8872     consider problem variable selection highdimens...
8873     breakthrough starshot aims sending nearspeedof...
8874     investigate relation fermi sea fs zerofield ca...
8875     propose monaural intrusive instrumental intell...
8876     study model described single real scalar field...
8877     dynamic architectures component activation con...
8878     forwardlooking sonar capture high resolution i...
8879     rgtsvm provides fast flexible support vector m...
8880     let regular matroid jacobian group rm jacm fin...
8881     collaborative filtering cf widely adopted tech...
8882     clickthrough rate prediction essential task in...
8883     physics arising twodimensionald dirac cones to...
8884     consider fractional version heston volatility ...
8885     determine systematic regions bigraded homotopy...
8886     investigate prime character degree graphs solv...
8887     present method computing table marks direct pr...
8888     article use combinatorial geometric structure ...
8889     deep neural networks specifically fullyconnect...
8890     analyzing multivariate time series data import...
8891     describe mathematical link aspects information...
8892     reproducibility computational studies hallmark...
8893     users rarely familiar content data source quer...
8894     crystal plasticity mediated dislocations form ...
8895     brownian motion twodimensional wedge negative ...
8896     cold load pickup clpu critical concern utiliti...
8897     wellknown theorem eilenberg ganea expresses lu...
8898     investigate structures consist countable set t...
8899     modern applications operating systems vary gre...
8900     consider maximum likelihood estimation gaussia...
8901     paper introduce study coprime quantum chain ie...
8902     kraichnan seminal ideas inverse cascades yield...
8903     proposal improve routing securityroute origin ...
8904     present primaldual memory efficient algorithm ...
8905     establish conceptual framework identification ...
8906     fiducial unique general prove restricted class...
8907     statistical thinking partially depends upon it...
8908     present conceptually simple flexible general f...
8909     fishing activities broad impacts affect althou...
8910     recently authors present work together n kolou...
8911     distributed generation dg units increasingly i...
8912     little little newspapers revealing bright futu...
8913     famous twofold cost sex really cost anisogamy ...
8914     consider pair plane straightline graphs whose ...
8915     industries integrate machine learning socially...
8916     note announces results relations approach beil...
8917     new regularisation shallow water isentropic eu...
8918     recently andrews dixit yee defined two partiti...
8919     examine nonlinear dynamical systems ordinary d...
8920     provide algorithm computes set generators comp...
8921     last decade digital media web app publishers g...
8922     dyonic bps states type iib string theory compa...
8923     introduce family tensor network states term se...
8924     single atoms form model system understanding l...
8925     verbal autopsy va consists survey relative clo...
8926     report versatile highly controllable hybrid co...
8927     planetary systems orbital periods two members ...
8928     consider motion nonrelativistic electron field...
8929     renewed interest weak model sets due connectio...
8930     citation metrics analytic measures used evalua...
8931     physical properties polycrystalline materials ...
8932     introduce study new categories tgkof integrabl...
8933     using situ grazingincidence xray scattering me...
8934     wellknown komlsmajortusndy inequalities z wahr...
8935     consider problem learning level set noisy blac...
8936     last decade many business applications moved c...
8937     introduce kinetx fully automated metaalgorithm...
8938     present contribution study landaulifshitzgilbe...
8939     new approach perform analog optical differenti...
8940     review problem defining inferring state contro...
8941     quantization improve execution latency energy ...
8942     paper provide new results weibullr family dist...
8943     principle material frame indifference shown in...
8944     recently introduced notion flow depending time...
8945     aims present new iram plateau de bure interfer...
8946     recent years mobile devices eg smartphones tab...
8947     consider rosenzweigporter model h v sqrtt phi ...
8948     seminal paper mcafee presented truthful mechan...
8949     paper propose multivariable lstm capable accur...
8950     spectral images captured satellites radioteles...
8951     introduce simulations aimed assessing well wea...
8952     selfrepelling random walk token graph one step...
8953     propose algorithm impute forecast time series ...
8954     consider motionplanning problem planning colli...
8955     orthogonal frequency division multiplexing ofd...
8956     paper study generalized meanfield stochastic c...
8957     extend grangerjohansen representation theorems...
8958     number density field galaxies per rotation vel...
8959     study signs fourier coefficients newform let f...
8960     germanium telluride features special spinelect...
8961     objects may appear arbitrary scales perspectiv...
8962     use standard platforms field humanoid robotics...
8963     paper studies complexity solving two classes n...
8964     angle spin star planets orbital planes traces ...
8965     analysed fluxflow region isofield magneto resi...
8966     algorithmic issues concerning elliott local se...
8967     show absolute constant c mahler measure fekete...
8968     recently supervised hashing methods attracted ...
8969     paper provides results application boundary fe...
8970     accurate efficient entity resolution open chal...
8971     admittance two types josephson weak links calc...
8972     paper propose efficient algorithm protodash se...
8973     consider variant classic multiarmed bandit pro...
8974     asteroseismic parameters allow us measure basi...
8975     polarised drellyan experiment compass facility...
8976     early approaches multipleoutput gaussian proce...
8977     personal recollection events preceded construc...
8978     demonstrate five vortex equations recently int...
8979     humans develop common sense style compatibilit...
8980     study problem learning latent variable model s...
8981     aim introduce generalized multiindex bessel fu...
8982     show assuming mild settheoretic hypothesis abs...
8983     motivated rm psiriemannliouville rm psirl frac...
8984     illicit online pharmacies allow purchase presc...
8985     use dimension lie algebra structure first hoch...
8986     analyze convergence stochastic gradient descen...
8987     large body compelling evidence accumulated dem...
8988     skyrmions topologically protected twodimension...
8989     using modification shapiro scaling approach de...
8990     phase retrieval attractive difficult problem r...
8991     show smooth bilipschitz h represented exactly ...
8992     start recently conjectured bosonization dualit...
8993     deep learning emerged powerful machine learnin...
8994     differential privacy mechanisms also make reco...
8995     employing spin degree freedom charge carriers ...
8996     biodiversity ecosystem functioning bef researc...
8997     developed datadriven magnetohydrodynamic mhd m...
8998     neural network based approximate computing uni...
8999     deep learning methods useful highdimensional d...
9000     report ab initio discovery novel putative grou...
9001     basic considerations lie group preserves targe...
9002     r ellpartition graph g partition vertex set r ...
9003     series papers bartelt coworkers developed nove...
9004     mobile devices become indispensable modern lif...
9005     massimbalanced threebody recombination process...
9006     partially observable markov decision processes...
9007     anais experiment aims confirmation damalibra s...
9008     logarithmic strain measures lvertlog urvert lo...
9009     present interpretable neural network predictin...
9010     paper presents new way design fuzzy terminal i...
9011     purpose present paper investigate generalized ...
9012     two recent publications int j quant chem molec...
9013     understanding structural controllability compl...
9014     heat generally transfer via thermal conduction...
9015     report highly efficient tunable thz reflector ...
9016     kernel online convex optimization koco framewo...
9017     endofunctor h hyperextensive category preservi...
9018     article representation theory inner formg gene...
9019     propose method build quantum memristors quantu...
9020     exciton spin dynamics investigated experimenta...
9021     resonant inelastic xray scattering n k edge re...
9022     present dynamic thermodynamic study orientatio...
9023     data augmentation usually used supervised lear...
9024     paper deals regression problems nonsmooth targ...
9025     civil asset forfeiture caf longstanding contro...
9026     modern biotechnologies produced vast amount hi...
9027     deal finite dimensional differentiable manifol...
9028     nearly previous work smallfootprint keyword sp...
9029     paper prove functorial aspect formal geometric...
9030     using risk dependence measures based given und...
9031     twoway relay nonorthogonal multiple access twr...
9032     show two involutions variety nn upper triangul...
9033     li wei studied density zeros gaussian harmonic...
9034     deforestation detection using satellite images...
9035     distributed computation recent trend engineeri...
9036     context use defect prediction models classifie...
9037     graphlets small connected induced subgraphs la...
9038     review didactic point view definition toric se...
9039     demonstrate one see quantization geometry quan...
9040     embedded continual learning autonomous adaptiv...
9041     paper proposes application discrete wavelet tr...
9042     context upcoming weak lensing surveys euclid p...
9043     study charge spin transport along grain bounda...
9044     lagrangian meshfree methods underlying spatial...
9045     consider problem optimally designing body wire...
9046     negatively charged nitrogenvacancy nv center d...
9047     convolution neural network cnn gained tremendo...
9048     present catalogue candidate halpha emission ab...
9049     using age information aoi metric examine trans...
9050     analyze optical continuum starforming galaxies...
9051     eigenvector method umbrella sampling emus belo...
9052     markov chain monte carlo mcmc methods widely u...
9053     describe opensource global fitting package gam...
9054     complexity testing whether graph contains indu...
9055     well known external magnetic fields magnetic m...
9056     completely characterize unimodal category func...
9057     counting formulae general primary fields free ...
9058     paraphrase generation important problem nlp es...
9059     collective motion chemotactic bacteria e coli ...
9060     landau level mixing plays important role pfaff...
9061     shear dilation based hydraulic stimulations en...
9062     treat emerging power systems direct current dc...
9063     avian influenza breakouts cause millions dolla...
9064     new approach jiukang yus construction tame sup...
9065     review cohomological aspects complex hypercomp...
9066     paper study different questions concerning aut...
9067     paper introduce new form amortized variational...
9068     latest results benchmarking research presented...
9069     argue important elements current cosmological ...
9070     standard clustering algorithms usually find re...
9071     exploration difficult challenge reinforcement ...
9072     paper propose stochastic optimization method a...
9073     large literature asymptotic distribution numbe...
9074     study effects assuming power series ring dx vd...
9075     autoregressive models among best performing ne...
9076     due exceptional plasmonic properties noble met...
9077     consider wellstudied partial sums problem succ...
9078     propose approaches based deep learning localiz...
9079     recent years noticeable interest study shape d...
9080     propose new approach model ground penetrating ...
9081     glass corrosion crucial problem keeping conser...
9082     abridged infrared rovibrational emission lines...
9083     elections seem simplearent counting unique cha...
9084     observations stars solar vicinity show clear t...
9085     random column sampling guaranteed yield data s...
9086     recently dinitriles ncchncn especially adiponi...
9087     practical solutions bootstrap security todays ...
9088     proposed computerized method calculating relat...
9089     discovered formal analogy nevanlinna theory di...
9090     unlike conventional firstorder network fon hig...
9091     dissolution porous media geologic formation in...
9092     paper study algebraic symplectic geometry sing...
9093     properties defect modes cholesteric liquid cry...
9094     reported growth mmsized singlecrystals lowdime...
9095     controlling confining light exciting plasmons ...
9096     codes galois rings studied extensively last th...
9097     prove version onsagers conjecture conservation...
9098     geometric brownian motion gbm key model repres...
9099     identify emerging microscopic structures low t...
9100     empirical investigation activecontinuous authe...
9101     constraining linear layers neural networks res...
9102     study behavior deep policy gradient algorithms...
9103     paper improve previously best known regret bou...
9104     variational inference powerful approach approx...
9105     propose encoderclassifier framework model mand...
9106     modify nonlinear shallow water equations korte...
9107     solve tensor balancing rescaling nth order non...
9108     consider problem learning unknown markov decis...
9109     study knots links probabilistic viewpoint prov...
9110     revival structures xm exceptional orthogonal p...
9111     autonomous aerial cinematography potential ena...
9112     high order reconstruction finite volume fv app...
9113     given statistical model request frequencies si...
9114     use language uninformative bayesian prior choi...
9115     aging process growing old maturing one widely ...
9116     present apply generalpurpose multistart algori...
9117     introduce novel method train agents reinforcem...
9118     paper set forth ocean model radioactive trace ...
9119     girards geometry interaction goi semantics des...
9120     determine structure wgroup mathcalgf small gal...
9121     principal component pursuit pcp stateoftheart ...
9122     kepler photometry hot neptune host star hatp s...
9123     number weak consistency mechanisms developed r...
9124     andreev conductance across normal metal nsuper...
9125     contextual bandits form multiarmed bandit agen...
9126     let z two given topological spaces cal oy resp...
9127     consider spherical mean generated multidimensi...
9128     tabu search ts metaheuristic proposed kmeans c...
9129     synthetic toggle switch first proposed gardner...
9130     study segre varieties associated leviflat subs...
9131     event cameras paradigm shift camera technology...
9132     apply nonlinear reconstruction method simulate...
9133     establishing metallic hydrogen goal intensive ...
9134     relative performance competing point forecasts...
9135     present paper generic parameterfree algorithm ...
9136     paper investigate potential estimating soilmoi...
9137     deep neural networks proved effective way perf...
9138     paper propose implicit force control scheme on...
9139     casual conversations involving multiple speake...
9140     tool manipulation vital facilitating robots co...
9141     consider surface let msubset ssetminus connect...
9142     noninvasive steadystate visual evoked potentia...
9143     iuis aim incorporate intelligent automated cap...
9144     graphs widely used model execution dependencie...
9145     efficient sublineartime indexing algorithms hi...
9146     recent work proposed lempelziv jaccard distanc...
9147     study category left unital graded modules stei...
9148     consider cauchy problem damped wave equation i...
9149     time series prediction studied variety domains...
9150     extend previous results characterizing loading...
9151     commercial onesun solar modules incoming sunli...
9152     present clustering properties lyman break gala...
9153     prove leastarea unitvolume tetrahedral tile eu...
9154     motivated multihop communication unreliable wi...
9155     investigate fewbody mixture two bosonic compon...
9156     natural uranium assembly quinta irradiated gev...
9157     let operatornameconmathbf trestrictionx denote...
9158     recent study entitled cell nuclei lower refrac...
9159     whole enterprise spin compositions recast simp...
9160     clearly one likes webpages poor quality experi...
9161     investigate properties entanglement onedimensi...
9162     revisit problem robust principal component ana...
9163     show self orbit equivalence transitive anosov ...
9164     use chandra xray data measure metallicity intr...
9165     work consider extension graphical models rando...
9166     framework application boundary control method ...
9167     traditional view morphologyspin connection cha...
9168     present method systematically study multiphoto...
9169     method presented solving discretetime finiteho...
9170     size modern data sets exceeds disk memory capa...
9171     hybrid inflation driven fayetiliopoulos fi ter...
9172     paper study recovery signal set noisy linear p...
9173     study piecewise linear codimension two embeddi...
9174     problem population recovery refers estimating ...
9175     consider first exit time shiryaevroberts diffu...
9176     article study transfer learning model action a...
9177     barocaloric effect still incipient scientific ...
9178     establish mathfrakglm mathfrakglndualities qua...
9179     propose method efficiently coupling finite ele...
9180     noise affecting time series colored unknown st...
9181     present efficient deep learning technique mode...
9182     paper describes efficient algorithm computing ...
9183     python r scientific packages incorporate compi...
9184     investigate effect incommensurate potential we...
9185     word equations important problem intersection ...
9186     paper addresses problem minimum cost resilient...
9187     introduce new algorithm reinforcement learning...
9188     geometric approach optimal transport informati...
9189     history humanhood included competitive activit...
9190     virtual reality simulation becoming popular tr...
9191     paper presents novel deep learning architectur...
9192     ability generate natural language sequences so...
9193     explore problem learning decompose spatial tas...
9194     prove zero set nonnegative plurisubharmonic fu...
9195     autonomous driving systems broadly used equipm...
9196     achieving relativistic flight enable extrasola...
9197     estimating cascade size nodes influence fundam...
9198     high frequency based estimation methods semipa...
9199     kagra km cryogenic interferometric gravitation...
9200     using observations made mosfire keck part zfir...
9201     organisms ability move freely fundamental beha...
9202     inverse relationship length word frequency use...
9203     recent years number artificial intelligent ser...
9204     recent empirical success crossdomain mapping a...
9205     calculate scrambling rate lambdal butterfly ve...
9206     recently blanchet kang murhy showed several ma...
9207     propose new formal criterion secure compilatio...
9208     machine learning models increasingly used indu...
9209     misalignment solar rotation axis magnetic axis...
9210     paper consider filtering smoothing partially o...
9211     paper presents longhcpulse software enables he...
9212     zvector method relativistic coupledcluster fra...
9213     modeling interpreting spike train data task ce...
9214     dimerized kanemele model withwithout strong in...
9215     understanding model makes certain prediction c...
9216     consider largescale markov decision processes ...
9217     overview dataflow matrix machines turing compl...
9218     neural machine translation nmt models usually ...
9219     purpose develop rapid imaging framework balanc...
9220     generalization use graphs describe pairwise in...
9221     paper consider class k surfaces defined hypers...
9222     although deep learning models proven effective...
9223     consider set bp parametric block correlation m...
9224     develop twodimensional lattice boltzmann model...
9225     shown mathbbzcolorable link diagram admits non...
9226     automatic machine learning performs predictive...
9227     recommender systems play important role many s...
9228     last decades notion cities state equilibrium c...
9229     simplest model magnetized infinitely thin elec...
9230     system dynamic equations boseeinstein condensa...
9231     polyellipse curve euclidean plane whose points...
9232     lda method selfenergy correction powerful tool...
9233     investigate scaling ground state energy optima...
9234     object tracking essential task computer vision...
9235     study family spins quantum spin chains nearest...
9236     next generation radiointerferometers like squa...
9237     optimized substrate temperature ts phosphorus ...
9238     solving peierlsboltzmann transport equation in...
9239     region interest roi alignment medical images p...
9240     past years use cameraequipped robotic platform...
9241     trilobites exotic giant dimers enormous dipole...
9242     many debris discs reveal twocomponent structur...
9243     multiple root estimation problems statistical ...
9244     let mathbbg locally compact quantum group give...
9245     temperaturedependent optical response excitons...
9246     lowest landau level lll equation emerges accur...
9247     work present novel framework uses deep learnin...
9248     recently renault studied dual bin packing prob...
9249     algorithmic proof general nron desingularizati...
9250     study problem listdecodable gaussian mean esti...
9251     possibly infinite fixed family graphs f say gr...
9252     using new general method prove existence rando...
9253     consider chemotaxis problem onedimensional sys...
9254     possible generally construct dynamical system ...
9255     implementation algebraic bethe ansatz xxz heis...
9256     graphenebased spindiffusive grsd neural networ...
9257     quasicyclic qc lowdensity paritycheck ldpc cod...
9258     gw method manybody approach capable providing ...
9259     paper considers problem predicting number clai...
9260     solution inverse problems variational setting ...
9261     study geometry finsler submanifolds using pull...
9262     pet image reconstruction challenging due illpo...
9263     round functions used building blocks iterated ...
9264     time crystals phase showing spontaneous breaki...
9265     paper devoted development control procedures g...
9266     investigate role tachysterol photophysicalchem...
9267     online social platforms beset hateful speech c...
9268     integral power series called lacunary modulo a...
9269     describe sofic groupoids elementary terms prov...
9270     paper propose new combined message passing alg...
9271     lsst software systems make extensive use pytho...
9272     paper study methods estimating causal effects ...
9273     give explicit formula singular surfaces revolu...
9274     kappamechanism successful explaining origin ob...
9275     classify cubic extensions field arbitrary char...
9276     installation argus pixel receiver covering ghz...
9277     challenging develop stochastic gradient based ...
9278     two general views causal analysis experimental...
9279     recent years significant progress made solving...
9280     main goal article compare performance penaltie...
9281     present first realworld application methods im...
9282     demonstrate successful experimental implementa...
9283     simulationbased training sbt gaining popularit...
9284     present gravitational lens models multiply ima...
9285     variable selection plays fundamental role high...
9286     investigate formation early evolution star clu...
9287     sleep stage classification constitutes importa...
9288     gambler moves vertices ldots n graph using pro...
9289     efficient reliable trapping execution program ...
9290     paper studies mechanism preconcentration charg...
9291     present models embedding words context surroun...
9292     data storage systems availability play crucial...
9293     theory sparse stochastic processes offers broa...
9294     princess kaguya heroine famous folk tale every...
9295     descriptor system tools dstools collection mat...
9296     classic sparsitydriven problems fundamental l ...
9297     work propose contentbased recommendation appro...
9298     work describes firstprinciplesbased computatio...
9299     v jimenez j llibre characterized homeomorphism...
9300     adoption distributed paradigm allowed applicat...
9301     spatial distributions cell interference ocif i...
9302     order understand underlying processes governin...
9303     introduce method learning dynamics complex non...
9304     artificial intelligence ai intrinsically datad...
9305     deep stacked rnns usually hard train adding sh...
9306     using nbody hydrodynamical cosmological simula...
9307     one big restrictions brain computer interface ...
9308     goal learn semantic parser maps natural langua...
9309     object transfiguration replaces object image a...
9310     segmenting foreground object video challenging...
9311     paper develop novel paradigm namely hypergraph...
9312     set points ddimensional euclidean space almost...
9313     investigate extent weak equivalences model cat...
9314     treewidth parameter measures treelike relation...
9315     many microbial systems known actively reshape ...
9316     unsupervised machine learning data mining tech...
9317     paper consider defocusing energy critical wave...
9318     deep neural networks impressive classification...
9319     crucial problem robotics field cage object usi...
9320     graph models relevant many fields distributed ...
9321     metric space phylogenetic trees defined biller...
9322     social media offer great communication opportu...
9323     discuss cyclic cosmology visible universe intr...
9324     electronic health records ehrs contributed com...
9325     investigate stability statistically stationary...
9326     construct statistical indicator detection shor...
9327     one central notions emerge study persistent ho...
9328     article investigates evidencebased semantics e...
9329     paper study linear complementarity problems ex...
9330     prove bernsteinvon mises theorem general class...
9331     word evolution refers changing meanings associ...
9332     fraenkel simpson showed number distinct square...
9333     article propound question annihilator koszul h...
9334     analyze knowledge autonomously handle one type...
9335     note describe objects generalized geometry app...
9336     recently experience replay widely used various...
9337     study behavior spectrum dirac operator togethe...
9338     studied impact lowfrequency magnetic flux nois...
9339     start riemannhilbert problem rhp related bdity...
9340     extending results raistauvel macedosavage arak...
9341     timing channels significant growing security t...
9342     show deciding whether given graph g size uniqu...
9343     paper studies optimal outputfeedback control l...
9344     graphene zerobandgap twodimensional semiconduc...
9345     path integrals describing quantum manybody sys...
9346     bcml system beam monitoring device cms experim...
9347     paper deal timeinvariant spatially coupled low...
9348     prediction organic reaction outcomes fundament...
9349     paper legendre curves unit tangent bundle give...
9350     giant vortices higher phasewinding pi usually ...
9351     study vortex patterns prototype nonlinear opti...
9352     recent work imitation learning generated polic...
9353     introduce seven families stochastic systems in...
9354     recent studies shown closein brown dwarfs mass...
9355     dirac equation requires treatment step potenti...
9356     recent years real estate industry captured gov...
9357     present new atacama large millimetersubmillime...
9358     report first time observation bunching monoato...
9359     bandit framework designing sequential experime...
9360     present new algorithm sliding window discrete ...
9361     study investigate limits current state art ai ...
9362     general neural networks currently capable lear...
9363     scale invariance commonly observed component r...
9364     present easytoimplement efficient analytical i...
9365     superregular sr breathers nonlinear wave struc...
9366     real network datasets provide significant bene...
9367     define two algebra automorphisms qonsager alge...
9368     examine lagrangian techniques computing undera...
9369     domainspecific languages dsls increasing impor...
9370     paper study nystrm type subsampling large scal...
9371     work novel ring polymer representation multile...
9372     nonlinear thinshell instability ntsi may expla...
9373     multivariate contaminated normal mcn distribut...
9374     present new determinations stellartohalo mass ...
9375     article proposes depth comparative study popul...
9376     consider problem packing family disks shelf di...
9377     randomized rumor spreading problem generates b...
9378     due severe mathematical modeling calibration d...
9379     employ generic threewave system chi interactio...
9380     note proposes penalty criterion assessing corr...
9381     identification differentially expressed genes ...
9382     derive expressions finitesample distribution l...
9383     present transductive boltzmann machines tbms f...
9384     paper presents humanrobot trust integrated tas...
9385     statistical test seen procedure produce decisi...
9386     present pubmed k rct new dataset based pubmed ...
9387     address problem analyzing radius convergence p...
9388     customarily inplane auxeticity synclastic bend...
9389     scheme making use isolated feedback loop recen...
9390     directional data constrained lie unit sphere o...
9391     boseeinstein condensates becs confined twodime...
9392     paper construct two groupoids morphisms groupo...
9393     stellar clusters form gravitational collapse t...
9394     paper prove global wellposedness critical surf...
9395     understanding characterizing subspaces adversa...
9396     paper construct properly embedded holomorphic ...
9397     given dimensional scheme projective space math...
9398     dft used throughout nanoscience especially mod...
9399     investigate birth diffusion lexical innovation...
9400     give complete formula characteristic polynomia...
9401     largescale wireless testbeds setup last years ...
9402     nonrapid eye movement nrem sleep desaturation ...
9403     paper present fptalgorithms special cases shor...
9404     purpose improve kidney segmentation clinical u...
9405     human mobility known distributed across severa...
9406     thz timedomain spectroscopy transmission mode ...
9407     advancement treatment modalities radiation the...
9408     bacterial dna gyrase introduces negative super...
9409     selfdriving vehicles backflipping robots virtu...
9410     imidazolium based porous cationic polymers syn...
9411     discuss similarity oscillons oscillational mod...
9412     highly eccentric binary systems appear many as...
9413     study threefolds fibred k surfaces admitting l...
9414     paper deal lipschitz continuous perturbations ...
9415     human trafficking one atrocious crimes among c...
9416     may einstein published two coauthors famous ep...
9417     rising interest construction quality business ...
9418     study performance least squares estimator lse ...
9419     kriging widely employed technique particular c...
9420     inspired matching supply demand logistical pro...
9421     prospect next generation groundbased telescope...
9422     emojis new way conveying nonverbal cues widely...
9423     investigate selfshielding intergalactic hydrog...
9424     propose single neural probabilistic model base...
9425     present systematic study higherorder penalty t...
9426     prospective chapter gives view evolution study...
9427     nonlinear ordinary differential equation solve...
9428     paper presents research polar cap ionosphere s...
9429     report large linear magnetoresistance cuxte re...
9430     given samples unknown distribution p descripti...
9431     study relaxation dynamics photocarriers parama...
9432     two popular modelling paradigms computer visio...
9433     let b ge integer among results establish quant...
9434     paper study constraint qualifications nonconve...
9435     propose framework employing stochastic differe...
9436     kimura yoshida treated model finite variation ...
9437     liquid scintillators common choice neutrino ph...
9438     consider lie group psl group orientation prese...
9439     relation extraction fundamental task informati...
9440     anelastic pseudoincompressible equations two w...
9441     bayesian optimization sampleefficient approach...
9442     making predictions ecosystems often available ...
9443     consider longitudinal nonlinear atomic vibrati...
9444     smooth manifold possibly boundary corners lie ...
9445     cyclic proof system called clkidomega gives us...
9446     let theta inner function unit disk let kptheta...
9447     web request query strings queries pass paramet...
9448     introduce signature payoffs family pathdepende...
9449     present deep alma co observations main sequenc...
9450     paper demonstrate new datadriven framework rea...
9451     turbulent mixing chemical elements convection ...
9452     duke imamoglu toth constructed polyharmonic ma...
9453     consider system r cubic forms n variables inte...
9454     selfsupported electrocatalysts generated emplo...
9455     exponential growth cyberphysical systems cps n...
9456     standard web browser programming model thirdpa...
9457     pseudomarginal algorithm variant metropolishas...
9458     present contribution investigates dynamics gen...
9459     failure rates high performance computers rapid...
9460     long assumed high dimensional continuous contr...
9461     sampling errors nested sampling parameter esti...
9462     paper explores design development class robust...
9463     bitcoin underlying technology blockchain becom...
9464     results presented direct numerical simulations...
9465     integration largescale renewable generation ma...
9466     recent results supercomputers show beyond k co...
9467     aims density waves often considered triggering...
9468     according traditional point view boltzmann ent...
9469     mathematical model variable selection function...
9470     report development multichannel microscopy who...
9471     trinity socalled canonical wallbounded turbule...
9472     paper consider problem learning object manipul...
9473     paper addresses important control observabilit...
9474     present theoretical investigation dynamic dens...
9475     let x compact metrizable group gamma countable...
9476     novel diverse domain dctsvd dwtsvd watermarkin...
9477     solving largescale regularized linear inverse ...
9478     important property statistical estimators qual...
9479     kernelbased regularization method two core iss...
9480     despite accelerating convolutional neural netw...
9481     present numerical implementation infiniterange...
9482     use large sample sim galaxies constructed comb...
9483     present generic framework trading fidelity cos...
9484     phase compensated optical fiber links enable h...
9485     spin atomic gas optical lattice unitfilling mo...
9486     paper prove existence classical solutions seco...
9487     paper wellposedness realizability kinetic equa...
9488     note construct series small subsets containing...
9489     paper suggest framework make use mutual inform...
9490     let q odd prime power set monic irreducible po...
9491     consider situation signal propagating arm inte...
9492     start study glider representations setting sem...
9493     emphab initio langevin dynamics approach devel...
9494     biological plastic neural networks systems ext...
9495     recently graph neural networks attracted great...
9496     former paper concept bipartite pagerank introd...
9497     method introduction secondorder derivatives lo...
9498     sample coma cluster ultradiffuse galaxies udgs...
9499     reliable realtime reconstruction localization ...
9500     work first step towards description gromov bou...
9501     present transient source detection efficiencie...
9502     paper consider isotropic stationary maxstable ...
9503     given direct system hilbert spaces smapsto mat...
9504     plethora available classification performance ...
9505     modern large displacement optical flow algorit...
9506     grew lixnhyfetese single crystals successfully...
9507     electronelectron correlation forms basis diffi...
9508     present semianalytical correction seminal solu...
9509     making informed correct quick decision lifesav...
9510     paper investigates stability distancebased tex...
9511     general spacetime evolution scattering inciden...
9512     subspace estimation unknown colored noise fact...
9513     resilience complex interconnected system conce...
9514     paper presents several test cases intended ben...
9515     authorship attribution natural language proces...
9516     building voice conversion vc system nonparalle...
9517     numerous institutions organizations need prese...
9518     timetriggered eventtriggered control strategie...
9519     study lipschitz positively homogeneous finite ...
9520     online social networks people often express at...
9521     prove elimination field quantifiers strongly d...
9522     several domains adopted increasing use iotbase...
9523     demand metals modern technology shifting commo...
9524     high speed quasidistributed demodulation metho...
9525     study loss coherence electrochemical oscillati...
9526     present new algorithm constructive recognition...
9527     display entire structure cal r coding sigma si...
9528     new radical cnn design approach presented pape...
9529     journals central eugene garfields research int...
9530     partially observable environments present impo...
9531     context creating akari midinfrared allsky diff...
9532     convective mixing heliumcoreburning hecb stars...
9533     neurons networks cerebral cortex must operate ...
9534     extended air showers produced cosmic rays impi...
9535     argued concept technical tie electoral polls q...
9536     recent discovery pyrite feo important ingredie...
9537     despite recent progress automatic theorem prov...
9538     study active learning problem topk ranking mul...
9539     first concise formulation inverse problem cons...
9540     consider exclusion process long jumps box lamb...
9541     paper introduce new property twodimensional in...
9542     initial conditions clustered star formation no...
9543     common architecture torque controlled humanoid...
9544     actual causation concerned question caused con...
9545     consider minimax setup gaussian onearmed bandi...
9546     machine learning become pervasive multiple dom...
9547     indexes models btreeindex seen model map key p...
9548     compute leading postnewtonian pn contributions...
9549     hybrid unmanned aircraft combine hover capabil...
9550     harmonic product tensorsleading concept harmon...
9551     incorrect operations multirobot system mrs may...
9552     show revenueoptimal deterministic mechanism de...
9553     present constraints variations initial mass fu...
9554     study static spherically symmetric black hole ...
9555     paper presents reliable method verify existenc...
9556     chemical evolution essential understanding ori...
9557     simple analytically correct algorithm develope...
9558     graph g called bkvpg resp bkepg constant kgeq ...
9559     study two identical fermions two hardcore boso...
9560     group synchronization requires estimate unknow...
9561     stability power networks increasingly importan...
9562     since majority massive stars members binary sy...
9563     networks observed real world like social netwo...
9564     investigate contextual online learning nonpara...
9565     investigate robust multiperiod network design ...
9566     deep learning architecture proposed predict gr...
9567     fault tolerance random graphs unbounded degree...
9568     factor graphs important models succinctly repr...
9569     correct treatment vibronic effects vital model...
9570     endowing dialogue system particular personalit...
9571     motivated results mestre voisin note mainly co...
9572     orthogonal matching pursuit omp orthogonal lea...
9573     many physical problems involve spatial tempora...
9574     success conflict driven clause learning cdcl b...
9575     paper provides analysis voting method known de...
9576     exceptional point two eigenstates coalesce ope...
9577     main topic considered maximizing number cycles...
9578     article introduces new concept structure defin...
9579     robots state insecurity onstage emerging conce...
9580     tungsten w widely considered promising plasma ...
9581     consider necessarily nearcritical random graph...
9582     designing logo new brand lengthy tedious backa...
9583     study notion consistency shape observation pro...
9584     rank minimization rm wildly investigated task ...
9585     study properties stanleyreisner rings simplici...
9586     propose analyze theoretically approach realizi...
9587     human visual object recognition typically rapi...
9588     discuss dynamical response functions near quan...
9589     study testing highdimensional covariance matri...
9590     exist several successful techniques supporting...
9591     show certain family cohomogeneity one manifold...
9592     investigate regularized algorithms combining p...
9593     paper study scaling properties legendre polyno...
9594     important problem machine learning statistics ...
9595     report phases corresponding critical lines qua...
9596     categorical equivalences block algebras finite...
9597     arithmetic function fields drinfeld modules pl...
9598     paper explore effectiveness dynamic analysis t...
9599     note concerned accurate computationally effici...
9600     investigated morphology lateral surfaces pbte ...
9601     highly oscillatory integrals involving bessel ...
9602     volume contains proceedings fourteenth interna...
9603     paper considers mean field games multiagent ma...
9604     develop framework downlink heterogeneous cellu...
9605     goulds belt flat local system composed young o...
9606     recent years correntropy applications machine ...
9607     evidence surface magnetism observed increasing...
9608     consider content delivery fading broadcast cha...
9609     dynamics nonlinear conservation laws long pose...
9610     combined allelectron twostep approach applied ...
9611     adaptive information gathering problem policy ...
9612     report experimental numerical demonstration di...
9613     arctic coastal morphology governed multiple fa...
9614     classification problems sampling bias training...
9615     fastdeclining type ia supernovae sn ia separat...
9616     architectures debris disks encode history plan...
9617     prove nonlinear modulational instability perio...
9618     present new model drnet learns disentangled im...
9619     photodissociation molecule produces spatial di...
9620     new generative adversarial network developed j...
9621     mapreduce programming model used extensively p...
9622     investigated formation circumstellar wideorbit...
9623     symmetric nonnegative matrix factorization fou...
9624     paper present new light field representation e...
9625     networks become de facto diagram big data age ...
9626     study problem policy evaluation learning batch...
9627     work investigates geometry nonconvex reformula...
9628     methods described extend fields reconstructed ...
9629     let lcdot loop let al group automorphisms lcdo...
9630     multiobjective recommender systems address dif...
9631     decide madrid civic technology madrid city cou...
9632     modeling physiological timeseries icu high cli...
9633     paper study spectral properties dirichlettoneu...
9634     work used recent cosmic chronometers data alon...
9635     statistical tts systems directly predict speec...
9636     stability complex system generally decreases i...
9637     timeresolved ultrafast xray scattering photoex...
9638     critical overdensity deltac key concept estima...
9639     consider finite point subsets distributions co...
9640     paper concerned partitioned iterative formulat...
9641     hubble catalog variables hcv year esa funded p...
9642     design general purpose processors relies heavi...
9643     traditional video summarization methods design...
9644     federated clouds raise variety challenges mana...
9645     wellestablished cognitive neuroscience human p...
9646     drying colloidal droplets solid rigid substrat...
9647     autonomous underwater vehicle auv carry comple...
9648     random attacks jointly minimize amount informa...
9649     paper present alternative strategy finetuning ...
9650     work presents joint selfconsistent bayesian tr...
9651     paper give lowdimensional examples local cocyc...
9652     highresolution wide fieldofview fov microscopi...
9653     address personalization issues image captionin...
9654     map fcolon kto mathbb rd simplicial complex al...
9655     optimization energy cost determines average va...
9656     anyangle pathfinding problem goal find shortes...
9657     scenario generation important step operation p...
9658     give new proof ciocanfontanine kims wallcrossi...
9659     undertaking cyber security risk assessments mu...
9660     paper continuation arxiv exploded layered trop...
9661     using image context effective approach improvi...
9662     spectral renormalization method introduced abl...
9663     present novel approach robust manipulation hig...
9664     discuss bayesian formulation coarsegraining cg...
9665     accurate protein structural ensembles determin...
9666     optimal learner prediction modeling varies dep...
9667     context transit events extrasolar planets offe...
9668     markov decision processes mdps popular model p...
9669     paper give novel certificates triangular equiv...
9670     tf boosted trees tfbt new opensourced framewor...
9671     evaluation query probabilistic database boils ...
9672     paper considers problem inliers empty cells re...
9673     determine connected homogeneous kobayashihyper...
9674     one important problem network locate invisible...
9675     show even mild improvements polyavinogradov in...
9676     phenomenon polarization nuclei process stimula...
9677     existence string functions polynomial time com...
9678     paper outline vision chatbots facilitate inter...
9679     define distance edges graphs study coarse ricc...
9680     present milabot deep reinforcement learning ch...
9681     propose datadriven method solve stochastic opt...
9682     realtime crime forecasting important however a...
9683     investigated physical properties cometlike obj...
9684     availability validated realistic fuel cost mod...
9685     work show model timed discreteevent systems td...
9686     functional significance resting state networks...
9687     report development versatile cryogenfree labor...
9688     present new proof kirchbergs mathcal ostable c...
9689     paper analyse profile land use population dens...
9690     let h semisimple algebraic group k maximal com...
9691     present results empirical studies positive spe...
9692     almost geostatistical analysis one underlying ...
9693     kernel methods median heuristic widely used wa...
9694     similar real world data ubiquitous presence no...
9695     principal component analysis pca one powerful ...
9696     present results threedimensional ideal magneto...
9697     along advance opinion mining techniques public...
9698     article consider static bayesian parameter est...
9699     many applications interdependencies among set ...
9700     detecting defection alarming partners possible...
9701     paper aims design quadrotor swarm performances...
9702     paper consider multivariate hawkes processes b...
9703     datacenters main infrastructure top cloud comp...
9704     halting theorem establishes program turing mac...
9705     skyrmions localized magnetic spin textures who...
9706     feval fetisn full heusler compounds nonmagneti...
9707     paper find integers c least two representation...
9708     profound vitamin b deficiency known cause dise...
9709     de trevisan tulsiani crypto show every distrib...
9710     study observed relation accretion rate terms l...
9711     deep reinforcement learning rl tasks efficient...
9712     use new xray data obtained nuclear spectroscop...
9713     quantum machine learning witnesses increasing ...
9714     introduce recurrent additive networks rans new...
9715     origin colossal magnetoresistance cmr still co...
9716     optical memory effect wellknown type wave corr...
9717     investigate geometry optimal memoryless time i...
9718     emerging class microfluidic bioreactors posses...
9719     prove triangulation theorem semialgebraic sets...
9720     paper consider positioning observedtimediffere...
9721     show dense ogle kmtnet iband survey data requi...
9722     cms apparatus identified years start lhc opera...
9723     paper proposes discontinuitysensitive approach...
9724     delays important phenomenon arising wide varie...
9725     came attention posting paper yu ding proved re...
9726     paper deal task building dynamic ensemble chai...
9727     scaling regression large datasets common probl...
9728     current study mechanism extract traffic relate...
9729     using form descent stable category mathcalamod...
9730     blind deconvolution methods usually predefine ...
9731     provide new results noisetolerant sampleeffici...
9732     consider three notions connectivity interactio...
9733     prove positive integer n exist boundarysum irr...
9734     neural networks grow deeper wider learning net...
9735     paper presents novel datadriven approach predi...
9736     impact developmental aging processes brain con...
9737     online game involves large number users interc...
9738     prove general existence result stochastic opti...
9739     monocular visualinertial system vins consistin...
9740     gravitational waves gws generated axisymmetric...
9741     theoretically study threedimensional weaklyint...
9742     written version closing talk nd los alamos ste...
9743     grouping objects clusters based similarities w...
9744     edge structure graphene significant influence ...
9745     study certain qdeformed analogues maximal abel...
9746     discuss computational procedures based descrip...
9747     directedloop quantum monte carlo method genera...
9748     paper presents study use convolutional neural ...
9749     paper unravel fundamental connection weighted ...
9750     model evaluation process making inferences per...
9751     starting graph two players take turns either d...
9752     cyclization dna sticky ends commonly used cons...
9753     give counter example new theorem appeared surv...
9754     paper present distributed testing algorithms g...
9755     bipartite data common data engineering brings ...
9756     present systematic study coreshell aufeo nanop...
9757     borondoped diamond undergoes insulatormetal tr...
9758     use sloan digital sky survey data release larg...
9759     paper geometric approach trajectory tracking c...
9760     effect spatial localization states distributed...
9761     propose twostage neural model tackle question ...
9762     radio tomographic imaging rti recently propose...
9763     prove low noise assumptions support vector mac...
9764     propose kernel mixture polynomials prior bayes...
9765     mobile edge computing new computing paradigm p...
9766     achievement gaps refer difference performance ...
9767     debris discs evidence ongoing destructive coll...
9768     paper propose novel endtoend approach scalable...
9769     introduce topology space isomorphism types rep...
9770     numerical experimental turbulence simulations ...
9771     convexity network graph recently defined prope...
9772     achieving high spatial resolution contact sens...
9773     paper study parallel space complexity graph is...
9774     study energy transport properties heterogeneou...
9775     theoretical paper introduces new way view char...
9776     decades research neural code underlying spatia...
9777     introduce discrete affine group regular tree f...
9778     spin filter superconducting sin tunnel junctio...
9779     correct double spend race analysis given nakam...
9780     understanding delayed information impacts queu...
9781     report influence crystalline defects introduce...
9782     given large number unlabeled face images face ...
9783     study problem identifying causal relationship ...
9784     unlike organs thymus gonads generate nonunifor...
9785     geometric approaches monocular visual odometry...
9786     published paper sengupta proposed brain selfor...
9787     watermarking techniques proposed last years ap...
9788     small cells deployment one significant longter...
9789     although generative adversarial networks gans ...
9790     advancement autonomous vehicles avs created en...
9791     extend urbans construction eigenvarieties redu...
9792     consider problem identifying groups mutually a...
9793     many aspects progenitor systems environments e...
9794     paper proposes novel approach stereo visual od...
9795     past decade cities experienced rapid growth ex...
9796     quantum phase transitions sudden changes groun...
9797     study sequences scaled edgecorrected empirical...
9798     purpose study evaluation relationship differen...
9799     worldwide web webpages connected source code s...
9800     technology become advanced design use otherwis...
9801     present work deals study structural ferroelect...
9802     paper introduce notion cdpfunctor waldhausen c...
9803     monograph aims providing introduction key conc...
9804     jed harrison full professor department chemist...
9805     liquid helium spin coldatom fermi gases exhibi...
9806     present probabilistic las vegas algorithm comp...
9807     prove sharp schwarz type inequality weierstras...
9808     period estimation one central topics astronomi...
9809     propose new algorithm mean actorcritic mac dis...
9810     recent measurements geminga b pulsars gammaray...
9811     deep neural networks require large amount labe...
9812     development robotics growing needs real time m...
9813     event cameras bioinspired vision sensors outpu...
9814     show analogy high curvature fr r arn br theory...
9815     introduce solve new type quadratic backward st...
9816     due recent advances technology recording analy...
9817     give parametrization simple bernstein componen...
9818     injury heals embryo develops carcinoma spreads...
9819     among sequential monte carlo smc methodssampli...
9820     approach truth society may depend various fact...
9821     increasing evidence shown theorybased health b...
9822     recent publication appl opt method twodimensio...
9823     derive new approximations value risk expected ...
9824     computational methods predict differential gen...
9825     modern datasets models notoriously difficult e...
9826     matching members coma cluster catalogue ultrad...
9827     work discuss related challenges describe appro...
9828     recently inference highdimensional integrated ...
9829     online communities become increasingly importa...
9830     show known classical adversary lower bounds ra...
9831     shortspacing problem describes inherent inabil...
9832     estimation tail quantities expected shortfall ...
9833     derive flow equations cold atomic gases one ma...
9834     dynamic selforganized morphology hallmark netw...
9835     note investigate existence frames exponentials...
9836     growth interest network data across fields exp...
9837     paper present study critical behavior stochast...
9838     study covariances positive definite functions ...
9839     many cloud applications rely fast nonrelationa...
9840     long standing problem area error correcting co...
9841     drones also known miniunmanned aerial vehicles...
9842     investigate weak excitations system made two c...
9843     find plane models xn ngeq observe map modular ...
9844     neural networks shown great potential many app...
9845     transient response power grids external distur...
9846     present family mutually orthogonal polynomials...
9847     automatic differentiation ad essential primiti...
9848     describe procedure combine measurements nm ca ...
9849     microwave cavities sikivietype axion search su...
9850     determine connected homogeneous kobayashihyper...
9851     paper first establish new explicit estimates c...
9852     explosion number experimentally determined ato...
9853     test whether advanced galaxy models analysis t...
9854     friction plays key role manipulating objects h...
9855     turkish wikipedia namedentity recognition text...
9856     biintuitionistic stable tense logics bist logi...
9857     demonstrate students use modeling examined ass...
9858     despite numerical challenges finite element me...
9859     progress machine learning measured careful eva...
9860     bayesian framework formulate fully sequential ...
9861     concept gammasemigroup introduced mridul kanti...
9862     formally deduce closedform expressions transmi...
9863     graph perfect chromatic number every induced s...
9864     paper show synchronization group output passiv...
9865     present method emgdriven teleoperation nonanth...
9866     introduce novel numerical method integrate par...
9867     xray magnetic circular dichroism xmcd measurem...
9868     many activation functions proposed past select...
9869     traditionally social sciences interested struc...
9870     entropic regularization quickly emerging new s...
9871     eigenvalue hermitic hamiltonian real undoubted...
9872     let x finite collection sets clusters consider...
9873     every observation astrophysical objects involv...
9874     generalize support vector machine support spin...
9875     recall group pslmathbb r isomorphic pspmathbb ...
9876     paper proposes signaturebased approach solving...
9877     study fr theory gravity anisotropic metric eff...
9878     visual tracking fundamental problem computer v...
9879     design deterministic polynomial time cn approx...
9880     recent advances policy gradient methods deep l...
9881     primarily study special weighted lowrank appro...
9882     derive markov process equivalent sheleveque sc...
9883     dynamic mott insulatortometal transition dmt k...
9884     although compelling assessments examined recen...
9885     decoding human brain activities via functional...
9886     neural networks equal excitatory inhibitory fe...
9887     efficient communication qubits relies robust n...
9888     whereas relationship criticality gene regulato...
9889     feedforward convolutional neural networks cnns...
9890     dynamic patterning specific proteins essential...
9891     pick n random points uniformly connect point k...
9892     formation selforganized patterns key morphogen...
9893     biophysical modelling diffusion mri necessary ...
9894     paper shows conditional independence reasoning...
9895     agile localization anomalous events plays pivo...
9896     tensor train decomposition decomposes tensor t...
9897     understanding thermally activated escape metas...
9898     sparse exchangeable graphs resolve pathologies...
9899     ttette graphs relative ttette graphs introduce...
9900     characterize cesroorlicz function spaces cesva...
9901     modeling joint distribution extreme weather ev...
9902     moems deformable mirrors dm key components nex...
9903     remote sensing image scene classification play...
9904     network theory proved recently useful quantifi...
9905     efficient adaptive algorithm removal salt pepp...
9906     strong product efficient way construct larger ...
9907     paper prove existence global weak solutions co...
9908     energy increasingly generated collected differ...
9909     word embeddings use vectors represent words ge...
9910     work develop novel bayesian estimation method ...
9911     introduce psiec local spectral exterior calcul...
9912     report transverse relaxation rates ts cu nucle...
9913     limitedangle computed tomography ct often used...
9914     renewed greens function approach calculating a...
9915     paper proposes new algorithm controlling class...
9916     analyze secrecy outage probability downlink wi...
9917     introduce novel method defining geographic dis...
9918     computer aided diagnostic cad system crucial m...
9919     recently shown feedback effects decisions igno...
9920     predictions inflationary schemes influenced pr...
9921     characterize class rfd calgebras containing de...
9922     let mathbfb cdot real separable banach space l...
9923     difficult humans efficiently teach robots corr...
9924     perform tasks specified natural language instr...
9925     automatic classification trees using remotely ...
9926     known individuals social networks tend exhibit...
9927     last decade deep learning contributed advances...
9928     na fixedtarget experiment cern sps dedicated m...
9929     let ksubset knot x ssetminus k complement math...
9930     paper presents automated supervised method per...
9931     bose condensation central understanding quantu...
9932     physics phenomena multisoliton complexes enric...
9933     visual question answering vqa new exciting pro...
9934     rise endtoend learning deep learning person de...
9935     medical charts national census healthcare trad...
9936     autonomous racing vehicles operate close limit...
9937     experimentally studied effects spin hall angle...
9938     deep neural networks dnns begun pervasive impa...
9939     identify study number new rapidly growing inst...
9940     automatically determining optimal size neural ...
9941     traffic internet video streaming rapidly incre...
9942     hierarchicallyorganized data arise naturally m...
9943     paper concerned channel estimation problem mul...
9944     policy maker faces sequence unknown outcomes s...
9945     shearing transitions multilayer molecularly th...
9946     chiral magnetic materials numerous intriguing ...
9947     graphene emerged promising building block mode...
9948     transfer learning finetuning pretrained neural...
9949     work present analysis burst failure effect hin...
9950     architecture exascale computing facilities inv...
9951     study time evolution onedimensional interactin...
9952     game chess widelystudied domain history artifi...
9953     discuss monotone quantity related huiskens mon...
9954     consider forecasting single time series using ...
9955     present new radio continuum observations ngc m...
9956     fractons emergent particles immobile isolation...
9957     generating function cubic hodge integrals sati...
9958     explore simplification widely used metageneral...
9959     prove counting copies graph f another graph g ...
9960     densityfunctional theory calculations spinpola...
9961     introduce notion nodal domains positivity pres...
9962     notifications provide unique mechanism increas...
9963     novel matching based heuristic algorithm desig...
9964     neuroinflammation utero may result lifelong ne...
9965     skyrmions disklike objects typically form tria...
9966     deep convolution neural networks demonstrate i...
9967     formulate simple assumptions implying robbinsm...
9968     holstein model describes motion tightbinding t...
9969     key challenge complex visuomotor control learn...
9970     recent advances representation learning advers...
9971     theoretically analyze effect parameter fluctua...
9972     exploratory testing neither black white rather...
9973     paper suggest framework category theory possib...
9974     accurately predicting ambulance callouts occur...
9975     curated web archive collections contain focuse...
9976     learning network representations variety appli...
9977     superconductivity noncentrosymmetric compounds...
9978     article pessential dimension generic symbols f...
9979     market research generally performed surveying ...
9980     optimization riemannian manifolds widely arise...
9981     paper formalize notion distributed sensitive s...
9982     propose new approach problem optimizing autoen...
9983     present slow control system gather relevant en...
9984     studied nonequilibrium response initial nel st...
9985     propose datadriven framework optimizing privac...
9986     chromium arsenides bacras bacrfeas thcrsi type...
9987     development high strength carbon fibers cfs re...
9988     model cosmological inflation proposed field sp...
9989     often time spent finding model works well rath...
9990     show convergence rate ellregularization linear...
9991     mue experiment search coherent neutrinoless co...
9992     current prominence future promises internet th...
9993     adversarial examples perturbed inputs designed...
9994     construct sample xray bright optically faint a...
9995     article second pair articles goldman symplecti...
9996     tus worlds first orbital detector extreme ener...
9997     thesis present novel semisupervised networkbas...
9998     derive naturally important distributions high ...
9999     give generalization theorem silverman stephens...
10000    consider characterization well construction qu...
10001    kinetically constrained lattice gases kclg int...
10002    molecular fingerprints ie feature vectors desc...
10003    present generalized times matrix formalism des...
10004    paper chua circuit five linear elements satura...
10005    loglinear models arguably successful class gra...
10006    recent quantumgas microscopy ultracold atoms s...
10007    discrete particle simulations widely used stud...
10008    describe mergerevent gammaray mergr telescope ...
10009    proved graham witten conformal invariants subm...
10010    genealogical networks also known family trees ...
10011    paper prove small data global existence soluti...
10012    concentration biochemical oxygen demand bod st...
10013    matched observational studies treatment assign...
10014    tte approach computable analysis study socalle...
10015    data mining machine learning techniques classi...
10016    paper investigate computational complexity dec...
10017    trace tau separable calgebra called matricial ...
10018    fock representation propose framework construc...
10019    fractal tridyn ftridyn modified version widely...
10020    precisely measure radon concentrations purifie...
10021    development neural networks based machine lear...
10022    show leibnitzs indiscernibility principle gent...
10023    main purpose article fix several aspects aspec...
10024    investigate level spacing distribution quantum...
10025    note remember friend maria krawczyk passed awa...
10026    training deep neural networks known require la...
10027    introduce multimodal attentionbased neural mac...
10028    coprime hypergraph integers n vertices chikn d...
10029    since largest ebola virus disease outbreak wes...
10030    nonnegative matrix factorization nmf widely us...
10031    consider problem recovering superposition r di...
10032    quest scalable bayesian computational algorith...
10033    choosing indium gallium nitride ingan ternary ...
10034    wide application machine learning algorithms r...
10035    nonlinear dynamics graphs rapidly become topic...
10036    synthesis dna molecules offers unprecedented a...
10037    excitation relativistic electron beam driven w...
10038    kernel pca widely used nonlinear dimension red...
10039    organized crime inflicts human suffering genoc...
10040    present work describe results obtained large a...
10041    micrornas mirnas small noncoding rnas function...
10042    shape completion problem estimating complete g...
10043    paper establish connection nonconvex optimizat...
10044    note define circular ksuccessions permutations...
10045    study weighted particle systems new generation...
10046    nodal effectively relativistic dispersion feat...
10047    predicting outcome sports events hard task qua...
10048    propose generalization neural network sequence...
10049    spite intrinsic onedimensional nature matrix p...
10050    last years microblogging platforms twitter giv...
10051    large amounts insight social discovery potenti...
10052    undergraduate level abstract algebra texts use...
10053    paper studies heat equation utdelta u bounded ...
10054    paper addresses challenge humanoid robot teleo...
10055    novel device used tunable supportfree phase pl...
10056    paper problem tracking desired longitudinal la...
10057    present development genetic algorithm fitting ...
10058    large datasets represented multidimensional da...
10059    explore nonequilibrium evolution stationary st...
10060    grip control robotic inhand manipulation usual...
10061    several recent studies reported different intr...
10062    show every bounded subset euclidean space appr...
10063    study fairness within stochastic emphmultiarme...
10064    virtual reality immersive technology replicate...
10065    note provide conceptual explanation wellknown ...
10066    examine effect stress tensor quantum matter fi...
10067    article introduce new geometric object called ...
10068    consider problem adversarial nonstochastic onl...
10069    qcoloring problem asks whether vertices graph ...
10070    planar object tracking actively studied proble...
10071    operation atomtronic battery demonstrated fini...
10072    address two fundamental problems spatial field...
10073    paper prove smooth projective variety x charac...
10074    study predictive density estimation kullbackle...
10075    many systems structured argumentation explicit...
10076    independent tests aiming constrain value cosmo...
10077    construct examples flat fiber bundles hopf sur...
10078    fields astronomy astrophysics currently engage...
10079    living organisms process information interact ...
10080    work analyses surprising elections attempts qu...
10081    kinetic plasma turbulence cascade spans multip...
10082    explore relationship human migration oecds for...
10083    weyl semimetal nbp exhibits extremely large ma...
10084    continuous cultures mammalian cells complex sy...
10085    technique propagating spin wave spectroscopy a...
10086    paper demonstrate genetic algorithms used reve...
10087    social conventions govern countless behaviors ...
10088    work devoted elaboration idea use block term d...
10089    paper reviews historic chalearn looking people...
10090    chaos associated bifurcation makes new science...
10091    bazhin analyzed atp coupling terms quasiequili...
10092    explosive increase number smart devices hostin...
10093    believed thermalization closed systems interac...
10094    interface phonon modes cplane oriented alngan ...
10095    transitions multiple stable states nonlinear s...
10096    sieve rational points suitable varieties devel...
10097    neural responses cortex change time systematic...
10098    present general formalism multipole descriptio...
10099    columnsparse packing problems arise several co...
10100    doppler effect shift frequency waves emitted o...
10101    propose new linear algebraic approach computat...
10102    investigate relation disk mass mass accretion ...
10103    present characterword long shortterm memory la...
10104    machine learning methods found many applicatio...
10105    effect monolayers oxygen hydrogen h possibilit...
10106    early recognition abnormal rhythm ecg signals ...
10107    currently speech processing techniques use mag...
10108    many classical results relativity theory conce...
10109    present alma observations system young binary ...
10110    class methods based multichannel linear predic...
10111    many successful methods proposed learning low ...
10112    present user model interaction based physics k...
10113    consider supervised learning problem shallow n...
10114    software engineering considers performance eva...
10115    porous silicon layers ps prepared work via pho...
10116    connectivity patterns relevance neuroscience s...
10117    deep convolutional neural networks dcnns curre...
10118    study translation invariant stochastic process...
10119    study highfrequency behavior dirichlettoneuman...
10120    using lyapunovschmidt reduction method without...
10121    general formalism introduced allow steady stat...
10122    neural networks lowprecision weights activatio...
10123    stable marriage fundamental problem computer s...
10124    electricity market price predictions enable en...
10125    community detection clustering fundamental tas...
10126    topological interference management tim proble...
10127    paper studies robust regression settings huber...
10128    introduce structures model quotients buildings...
10129    paper origin generalized uncertainty principle...
10130    consider nonparametric inference finite dimens...
10131    knowledge base completion kbc aims predict mis...
10132    feature engineering crucial step process predi...
10133    shown two cellular automata ca rule space conn...
10134    discuss operational approach testing convex co...
10135    present experimental data simulations effects ...
10136    frequent pattern mining one field significant ...
10137    study dynamics fermihubbard model driven timep...
10138    exhibit olog kcompetitive randomized algorithm...
10139    provide physical definition new homological in...
10140    prove topological methods new results existenc...
10141    paper proposes approach detect emotion human s...
10142    article basic principles put basis algorithmic...
10143    cone spherical metrics conformal metrics const...
10144    suggest new type ultrasensitive detector elect...
10145    new upper bounds pointwise behaviour christoff...
10146    string theory notion deformed hermitian yangmi...
10147    present introduction periodic stochastic homog...
10148    yttriastabilized zirconia ysz zroyo solid solu...
10149    reactive power compensation important challeng...
10150    investigate additional properties protolocaliz...
10151    consider dirichlet laplacian straight three di...
10152    liquid film wetting interior long circular cyl...
10153    existing brain network distances often based m...
10154    online trust systems playing important role to...
10155    study collapse pebble clouds statistical model...
10156    accurate path integral monte carlo molecular d...
10157    constrained application protocol coap speciali...
10158    physics active systems selfpropelled particles...
10159    letter present theorem dynamics generalized hu...
10160    realistic evolutionary fitness landscapes noto...
10161    datadriven modeling plays increasingly importa...
10162    many domains latent competition among differen...
10163    analogtodigital converters adcs major contribu...
10164    design controllers formal specifications posit...
10165    progress deep learning slowed days weeks takes...
10166    sensing reciprocating cellular systems sars im...
10167    new threeparameter cumulative distribution fun...
10168    paper proposes new scheme secure transmissions...
10169    investigate deep neural network performance te...
10170    bayesian model selection model averaging rely ...
10171    analyze subway arrival times new york city sub...
10172    superconducting transition fesexsx three disti...
10173    paper explores incremental training strategy s...
10174    treating optimization methods dynamical system...
10175    processing sequential data variable length maj...
10176    multiaccess channel simple model channel outpu...
10177    social media platforms contain great wealth in...
10178    transparency user trust human comprehension po...
10179    paper reconsider unfoldingbased technique intr...
10180    present study investigates different strategie...
10181    random fourier features one popular techniques...
10182    dark matter particle explorer dampe one four s...
10183    superconducting nanowire single photon detecto...
10184    like atiyah lie algebroids encode infinitesima...
10185    demonstrate creation electroformingfree taox m...
10186    present paper considers testing erdosrenyi ran...
10187    paper propose new loss function called general...
10188    regularization approach variable selection wel...
10189    learning interpretable features complex multil...
10190    recent years witnessed growing demands resolvi...
10191    graphenebased photodetectors demonstrated mech...
10192    paper propose efficient transfer leaning metho...
10193    consider nonlinear schrdinger equation delta u...
10194    paper concerned convergence longterm stability...
10195    recent media blitz cohort mathematicians valia...
10196    temporary earth retaining structures ters help...
10197    subset mathcalg generating calgebra said hyper...
10198    study fully gapped chiral mott insulator cmi f...
10199    establish functional weak law large numbers ob...
10200    nature nematic state fese remains one major un...
10201    propose simple modification existing neural ma...
10202    consider problem optimizing placement stubborn...
10203    work fits context community microgrids members...
10204    formulate type b extended nilhecke algebra fol...
10205    unsupervised domain mapping learner given two ...
10206    present approach adaptively utilize deep neura...
10207    phylogenetic effective sample size parameter g...
10208    paper construct additional symmetries fermioni...
10209    measuring full distribution individual particl...
10210    branch provability logic investigates provabil...
10211    physical emergence crystals rocks sandpiles tu...
10212    interplay geometric frustration gf bond disord...
10213    acoustic scene classification researches audio...
10214    new definition continuoustime equilibrium cont...
10215    alpha signals statistical arbitrage strategies...
10216    deep convolutional networks achieved great suc...
10217    current study applies deep learning herbalism ...
10218    privacy amplification two mutually trusted par...
10219    reversible language forward computation undone...
10220    paper investigate convergence consistency prop...
10221    nanotubes various kinds prepared last decade s...
10222    classic statistics functional regression model...
10223    star chromatic index multigraph g denoted chis...
10224    absolutely koszul algebras class rings finite ...
10225    online advertisement main source revenue inter...
10226    smooth symmetric function f defined symmetric ...
10227    demonstrate enhancement vortex generation arti...
10228    investigate subgaussian property almost surely...
10229    finding maximum cut fundamental task many comp...
10230    let pgroup odd prime p oliver proposed conject...
10231    suppose elliptic curve number field whose mod ...
10232    precise modeling subatomic particle interactio...
10233    demonstrate temporal measurements subpicosecon...
10234    paper present several values nexttominimal wei...
10235    alien alice environment file catalogue global ...
10236    report versatile mini ultrahigh vacuum uhv cha...
10237    dislocationmediated quantum melting solids qua...
10238    mechanical properties deformation mechanisms c...
10239    give necessary sufficient conditions embedding...
10240    variable graph selection problems finding righ...
10241    propose definition vafawitten invariants count...
10242    aggregation many independent estimates outperf...
10243    temperate climates mortality seasonal winterdo...
10244    address problem verifying satisfiability const...
10245    investigate power nondeterminism purely functi...
10246    advanced virgo detector uses two monolithic op...
10247    use mobile impurity depleton model study eleme...
10248    study applicability timedependent variational ...
10249    paper presents topology optimization approach ...
10250    reward shaping one effective methods tackle cr...
10251    among recently introduced new notions real alg...
10252    revise operatornorm convergence trotter produc...
10253    nowadays data compressors applied many problem...
10254    twodimensional embeddings remain dominant appr...
10255    graph matching quadratic assignment problem la...
10256    extensive cooperation among unrelated individu...
10257    study bayesian hypernetworks framework approxi...
10258    plate motions governed equilibrium basal edge ...
10259    one challenging tasks adopting bayesian networ...
10260    simulate stresses induced temperature changes ...
10261    forwarding data name assumed necessary aspect ...
10262    delay tolerant networking dtn approach network...
10263    regularization techniques lasso tibshirani ela...
10264    multiobject tracking applications model parame...
10265    consider general monotone regression estimatio...
10266    distributed network optimization studied well ...
10267    purpose note revive lp spaces original markov ...
10268    paper apply empirical likelihood method infere...
10269    obtain uncertainty estimates realworld bayesia...
10270    article propose two classes semiparametric mix...
10271    apply convolutional neural network cnn classif...
10272    analyze source intermodel scatter surface temp...
10273    paper proposes novel representation decomposab...
10274    causal inference problem consists determining ...
10275    complexity embedded condensed matter fertilize...
10276    robotic systems working together team becoming...
10277    model precision classification task highly dep...
10278    goal improve variance reducing stochastic meth...
10279    consider plasmon resonances cloaking elastosta...
10280    introduce hybridizable discontinuous galerkin ...
10281    artificial neural networks anns gained welldes...
10282    connectionist temporal classification recently...
10283    paper presents novel method describe battery d...
10284    consider problem locating pointsource heart ar...
10285    note propose method based artificial neural ne...
10286    possibility calculation conditional unconditio...
10287    let g finite simple graph x subset vg differen...
10288    collisionionization mechanism nonsequential do...
10289    chaos despite several decades research ubiquit...
10290    context first gaia data release dr delivered c...
10291    applications require substantial computational...
10292    kiva online nonprofit crowdsouring microfinanc...
10293    ics wut platform simulation cooperation physic...
10294    analytically derive expressions structure inne...
10295    xray emission spectrum liquid ethanol calculat...
10296    class labels empirically shown useful improvin...
10297    high performance computing often performed sca...
10298    propose new method detect offpulse unpulsed an...
10299    structural topological information play key ro...
10300    taking image question input method output text...
10301    paper examine physical layer security cooperat...
10302    superconducting bulks acting highfield permane...
10303    inability efficiently tune optical properties ...
10304    traditionally blind speech separation techniqu...
10305    inelastic neutron scattering used study magnet...
10306    present novel methodology enable control neuro...
10307    introduce variants frankwolfe style algorithms...
10308    theoretically investigate ultrastronglycoupled...
10309    work merle e manis introduced valuations commu...
10310    electron cryotomography ect allows visualizati...
10311    existing characterizations integral inputtosta...
10312    introduce new ferromagnetic model capable repr...
10313    paper present short scientific biography guido...
10314    work addresses problem segmentation time serie...
10315    propose article mgcc state dependent queuing m...
10316    paper considers laplace method derive approxim...
10317    study fixed point theory nvalued maps space x ...
10318    large synoptic survey telescope lsst enable re...
10319    co capture storage important technology mitiga...
10320    gelsight sensor uses elastomeric slab covered ...
10321    visual perception surroundings ultimately limi...
10322    paper consider community detection problem eit...
10323    paper build upon previous work designing infor...
10324    vehicletovehicle communications change driving...
10325    show twoweight estimate dyadic square function...
10326    observations nine transits wasp k mission reve...
10327    article give reviews concerning negative proba...
10328    advances virtual reality generated substantial...
10329    understanding dynamical behavior complex syste...
10330    quantum gas microscopes promising tool study i...
10331    multivariate normal set well known maximum lik...
10332    cloud computing new era remote computing inter...
10333    astrophysics community uses different tools co...
10334    based bcs model external pair potential formul...
10335    introduce emphpnrandom qnproportion bulgarian ...
10336    introducing simplified transport model outer l...
10337    present novel approach estimating conditional ...
10338    volume eptcs contains proceedings fifth worksh...
10339    transient quantum dynamics interacting fermion...
10340    prove automorphism group topological paralleli...
10341    paper presents first md simulations model desi...
10342    software service cloud computing model favorit...
10343    efficiently exploiting gpus increasingly essen...
10344    study height spanning tree graph g obtained st...
10345    propose theoretically effective scheme braidin...
10346    motion planning core problem solve developing ...
10347    assume ctm zfcch containing simplified omegamo...
10348    use resonant depolarization suggested precise ...
10349    learningbased approaches robotic grasping usin...
10350    generalize translation invariant tensorvalued ...
10351    develop maximum likelihood estimator mle measu...
10352    work highlight connection incremental proximal...
10353    list decoding insertions deletions levenshtein...
10354    prove almost sure global existence scattering ...
10355    boltzmann exploration widely used reinforcemen...
10356    gps wifi based localization exploited recent y...
10357    since advent online real estate database compa...
10358    neuromorphic hardware tends pose limits connec...
10359    internet things iot community wireless sensor ...
10360    proved replica symmetry broken transverse long...
10361    implemented optimization specializes typegener...
10362    obtain first polynomialtime algorithm exact te...
10363    outlier detection cluster number estimation im...
10364    general expressions stored energies timeharmon...
10365    inference network topologies relational data i...
10366    paper introduce iterative linearization scheme...
10367    important class realworld networks directed ed...
10368    report experimental observation multiple corot...
10369    paper presents results topic modeling network ...
10370    construct countable bounded sublattice lattice...
10371    work issue bayesian inference stationary data ...
10372    aim study investigate reason low productivity ...
10373    merging mobile edge computing dense deployment...
10374    experimental particle physics forefront analyz...
10375    guided critical systems found nature develop n...
10376    introduce analyze extension matching problem w...
10377    present detailed spectral analysis brightest a...
10378    ndhfo belonging family geometrically frustrate...
10379    noncritical softfaults model deviations challe...
10380    study sis epidemic spreading processes unfoldi...
10381    present model anisotropic compact star general...
10382    paper describe evaluate mixed reality system a...
10383    benefited widely deployed infrastructure lte n...
10384    disagreementbased approaches generate multiple...
10385    someone built box applies quantum superpositio...
10386    unmanned aircraft decreased cost required coll...
10387    paper present approach select subset requireme...
10388    chapter present stateoftheart generation noncl...
10389    recent years number biomedical publications st...
10390    transfer learning popular practice deep neural...
10391    paper presents construction particle filter in...
10392    enabling robots autonomously navigate complex ...
10393    study magnetization reversal varphi josephson ...
10394    computational astrophysics comes pressure beco...
10395    deep neural networks built generalize outside ...
10396    simply typed lambdacalculus statman investigat...
10397    used brillouin light scattering spectroscopy i...
10398    paper shows detailed modeling threelink roboti...
10399    key task bayesian statistics sampling distribu...
10400    provide compositional coalgebraic semantics st...
10401    anytime almostsurely asymptotically optimal pl...
10402    propose novel approach human pose estimation s...
10403    selection appropriate collective variables enh...
10404    study random conductance model lattice mathbbz...
10405    important problem combinatorial optimization p...
10406    estimating influence given feature model predi...
10407    largescale industrial processes closedloop con...
10408    problem highdimensional largescale representat...
10409    recently czumaj etal arxiv presented parallel ...
10410    present eldar new method exploits potential me...
10411    hard xray emission solar flare typically chara...
10412    propose general framework interactively learni...
10413    gravitational lensing provides means measure m...
10414    three separation properties closed subgroup h ...
10415    machine learning ml increasingly deployed real...
10416    paper presents solution boltzmann kinetic equa...
10417    first step realize automatic experimental data...
10418    article expands research done develop recurren...
10419    present physhare new haptic user interface bas...
10420    every graph gve induced subgraph kneser graph ...
10421    graph drawings useful tools exploring structur...
10422    one ultimate goals biology understand design p...
10423    epilepsy common neurological diseases affectin...
10424    maintenance software developers deal numerous ...
10425    consider weighted beliefpropagation wbp decode...
10426    study pattern forming instability laser driven...
10427    study electronic spin structures giant rashbas...
10428    technological developments alongside vlsi achi...
10429    quantum phase transitions ubiquitous many exot...
10430    future observations cosmic microwave backgroun...
10431    detailed thermal analysis niobium nb based sup...
10432    shear viscosity plays important role studies t...
10433    cyclic proof system gives us another way repre...
10434    paper revisit recently established theoretical...
10435    employ grand canonical adaptive resolution mol...
10436    daily operation largescale experiment challeng...
10437    aim paper find approximate solution hiv infect...
10438    well known store language every pushdown autom...
10439    cupyzno quasi onedimensional molecular antifer...
10440    session search task aims best serving users in...
10441    recently graph neural networks gnns revolution...
10442    people participate activate online social netw...
10443    note continues previous work special secant de...
10444    met offices weather climate simulation code un...
10445    self organizing networks sons considered vital...
10446    topological semimetals dirac points form zerod...
10447    manyvalued modal logic introduced combines usu...
10448    construct sequence compact oriented embedded t...
10449    let pi irreducible smooth complex representati...
10450    purpose paper show functions derivate twovaria...
10451    rnio perovskites known order antiferromagnetic...
10452    routine state space circuit analysis arbitrari...
10453    discuss practical problems arising constructin...
10454    let v minimal valuation overring integral doma...
10455    present finitetemperature extension retarded c...
10456    given graph g n vertices set n points plane po...
10457    despite significant recent progress area brain...
10458    paper investigate parametric knapsack problem ...
10459    dozens new models fixation prediction publishe...
10460    study focusses selfbalancing microgrids smartl...
10461    optical frequency combs ofc provide convenient...
10462    linear operator two latticenormed spaces said ...
10463    present results pilot nearinfrared nir spectro...
10464    mining relationships treatments medical proble...
10465    internet things iot changing daily life rapidl...
10466    probabilistic description essential understand...
10467    steiner forest problem given graph collection ...
10468    antenna current optimization often used analyz...
10469    knowledge regarding function proteins necessar...
10470    recent years several powerful techniques devel...
10471    let string length n paper introduce notion emp...
10472    purpose review paper presents review current s...
10473    study problem testing community structure netw...
10474    magnetic activity strongly impacts stellar rvs...
10475    differential testing solve oracle problem appl...
10476    explicitly implicitly dimensionality reduction...
10477    blind source separation bss challenging matrix...
10478    monomorphism category mathscrsa b induced bimo...
10479    focus paper analysis boundary layer associated...
10480    recent experimental discovery threedimensional...
10481    high quality gene models necessary expand mole...
10482    past years convolutional neural networks cnns ...
10483    computing medoid large number points highdimen...
10484    consider truncated svd spectral cutoff project...
10485    sampling logconcave functions arising statisti...
10486    celebrated integer relation finding algorithm ...
10487    tensor completion problem filling missing unob...
10488    path resp cycle decomposition graph g set edge...
10489    investigate transport properties neutral fermi...
10490    increasing body evidence suggests trialtotrial...
10491    current searches dark photon mass range gev re...
10492           paper gave properties binomial coefficient
10493    paper present method determine global horizont...
10494    anisotropy febased superconductors much smalle...
10495    simple polytope p said emphbrigid combinatoria...
10496    concept emergence powerful concept explain com...
10497    trouv group mathcal gmathcal image analysis co...
10498    motion planning classically concerns problem a...
10499    paper present new r package coreclust dedicate...
10500    deep neural networks dnns universal function a...
10501    international rosetta mission launched consist...
10502    describe new cardinality estimation algorithm ...
10503    object tracking systems play important roles t...
10504    using nasairtf spex bass spectrometers obtaine...
10505    flyby anomaly unexpected variation asymptotic ...
10506    two dimensional materials provide unique platf...
10507    consider incompressible euler navierstokes equ...
10508    wheeled ground robots limited exploring extrem...
10509    currently lower limb robotic rehabilitation wi...
10510    tetrachiral materials characterized cellular m...
10511    twitter provided great opportunity public libr...
10512    dynamic boltzmann machine dybm shown highly ef...
10513    discussed effects basics graph transformations...
10514    paper focus applications machine learning opti...
10515    paper presents laser amplifier based antirefle...
10516    paper study entire radial solutions quasilinea...
10517    automatically detecting sound units humpback w...
10518    given input string specific lindenmayer system...
10519    generalization multiscale entanglement renorma...
10520    geotags microblog posts shown useful many data...
10521    aim present paper contribute development study...
10522    symmetric lvy processes local times exist tana...
10523    study classical complexity exact boson samplin...
10524    study carrier transport magnetic properties gr...
10525    purpose note attract attention following conje...
10526    studies theories ideas influenced eugene garfi...
10527    paper focus online representation learning non...
10528    recent pumpprobe experiments reported enhancem...
10529    advent modern communications systems much atte...
10530    neural style transfer based convolutional neur...
10531    quantized physical framework called fiveanchor...
10532    reinforcement learning emerged promising metho...
10533    construct contour function entanglement entrop...
10534    topic discovery witnessed significant growth f...
10535    well known finite commutative association sche...
10536    recently almost nothing known evolution magnet...
10537    use ultradeep cm data karl g jansky large arra...
10538    paper begins theoretical explanation spacetime...
10539    h hevc contextadaptive binary arithmetic codin...
10540    informationcentric networking promising networ...
10541    deep gaussian processes dgps hierarchical gene...
10542    paper develops meshless methods probabilistica...
10543    note collection several discussions paper beyo...
10544    new physics traditionally expected highpt regi...
10545    changes structure observed social complex netw...
10546    according wienerhopf factorization characteris...
10547    local crystal structures many perovskitestruct...
10548    ordering multilayer consisting dspc bilayers s...
10549    deep reinforcement learning rl proven powerful...
10550    thesis study interplay phase separation wettin...
10551    consider spatial stochastic model wireless cel...
10552    reinsurance contract address conflicting inter...
10553    show problem counting homomorphisms fundamenta...
10554    use semiautonomous autonomous robotic assistan...
10555    start asking interesting yet challenging quest...
10556    consider several related notions geometric reg...
10557    sleep condition closely related individuals he...
10558    motivated recent result farhi show nequiv pm p...
10559    context music production distortion effects ma...
10560    paper consider adaptive decisionmaking problem...
10561    many machine learning problems formulated cons...
10562    last decade information technology industry ad...
10563    estimating domain attraction da nonpolynomial ...
10564    article devoted problem predicting value taken...
10565    examine whether extended scenario twoscalarfie...
10566    address key open problem higher dimensional ge...
10567    sparse additive modeling class effective metho...
10568    present performance analysis appropriate compa...
10569    rieszsobolev inequality provides upper bound i...
10570    study problem defining maps link floer homolog...
10571    recent advances enabled object reconstruction ...
10572    investigate longtime stability sunjupitersatur...
10573    consider variants classical berz sublinearity ...
10574    long standing interest understanding social in...
10575    coreperiphery structure networks core nodes de...
10576    central limit theorems play important role stu...
10577    first half manuscript begin brief review combi...
10578    rapid anisotropic modification fermisurface sh...
10579    visual exploration analysis data determining s...
10580    convolutional operator learning increasingly g...
10581    construction permutation trinomials finite fie...
10582    recent observations identify valley radius dis...
10583    sparsity gradient sog robust autofocusing crit...
10584    purpose note propose new approach probabilisti...
10585    image semantic segmentation interest computer ...
10586    kinds mixed data personal data panel scientifi...
10587    incremental improvements accuracy convolutiona...
10588    paper describes method learning lowdimensional...
10589    dip test unimodality silvermans critical bandw...
10590    first part paper present formalization agda ja...
10591    inelastic neutron scattering measurements itin...
10592    study problem finding maximum function defined...
10593    models collective decisionmaking considered pa...
10594    paper focuses recognition activities daily liv...
10595    monitoring structural changes ferroelectric th...
10596    work aim explore connections dynamical systems...
10597    octonion algebras rings contrast fields determ...
10598    two fundamental approaches information averagi...
10599    atomic transition addressed single tooth optic...
10600    paper calculate numbers irreducible ordinary c...
10601    paper investigates asymptotic behaviors gradie...
10602    pigeonhole principle states n items contained ...
10603    anomaly matching constrains lowenergy physics ...
10604    highspeed mhz strain monitor using fiber bragg...
10605    present functional form erdsrenyi law large nu...
10606    present memristive device based r puf construc...
10607    paper demonstrate application fuzzy markup lan...
10608    present alma detections ci co j co j emission ...
10609    finding central nodes fundamental problem netw...
10610    latest measurements cmb electron scattering op...
10611    reinforcement learning rl makes possible train...
10612    drafting strong players crucial team success d...
10613    distributions dark matter baryons universe kno...
10614    let galpha hbeta locally compact hausdorff gro...
10615    key part implementing highlevel languages prov...
10616    paper develops systematically output feedback ...
10617    one essential prerequisites detection earthlik...
10618    past years ilsvrc competition imagenet dataset...
10619    suffix trees recently become successful data s...
10620    understanding interaction valves walls heart i...
10621    optimal estimation signal amplitude background...
10622    deep learning textitdepth well textitnonlinear...
10623    define quantity cmnk generalization notion com...
10624    recent years bullying aggression users social ...
10625    robots typically created security main concern...
10626    paper considers general datafitting problem ne...
10627    develop differentially private hypothesis test...
10628    remote sensing atmospheres distant worlds moti...
10629    provide best knowledge first computational stu...
10630    designing control strategies differentialdrive...
10631    although various norms reciprocitybased cooper...
10632    online multiple testing problem pvalues corres...
10633    current gametheoretic demandside management me...
10634    give first example locally quasiconvex even co...
10635    dipole moments simple global measure accuracy ...
10636    paper explores interesting new dimension chall...
10637    estimating causal effects intervention presenc...
10638    known multicollinearity exists logistic regres...
10639    segmentation animals cameratrap images difficu...
10640    bilipschitz geometry one main subjects modern ...
10641    define action extended affine dstrand braid gr...
10642    introduce new shapeconstrained class distribut...
10643    article presents weak law large numbers centra...
10644    based geometry optimization magnetic structure...
10645    previously sevencluster pattern claiming unive...
10646    show party encrypt data epassport holder physi...
10647    show perform full likelihood inference maxstab...
10648    describe nef vector bundles projective space f...
10649    atlas collaboration replace tracking detector ...
10650    given input sound signal target virtual sound ...
10651    present method identifying coherent structures...
10652    present nonparametric joint estimation method ...
10653    calculate loop master integrals heavy quark co...
10654    propose novel distributed inference algorithm ...
10655    pebps phosphatidylethanolamine binding protein...
10656    modal description logics feature modalities ca...
10657    existence spinliquid ground state heisenberg k...
10658    paper moment problem finitedimensional vector ...
10659    paper describe concept cryptocurrency issuance...
10660    pairwise ranking methods basis many widely use...
10661    analysis part revealed interesting properties ...
10662    paper explore aggregate degrees belief group a...
10663    consider problems robust pac learning distribu...
10664    paper present realtime robust multiview pedest...
10665    ongoing future surveys repeat imaging multiple...
10666    shafers belief functions introduced seventies ...
10667    photonics sensing long valued tolerance harsh ...
10668    inductive inference process extracting general...
10669    present method computing stable models normal ...
10670    paper presents comprehensive survey existing a...
10671    analysis organizations computer network activi...
10672    consider dihedral cover f yto x x fourmanifold...
10673    introduce new sample complexity measure refer ...
10674    inability interpret model prediction semantica...
10675    survey basics things known never published thi...
10676    given potential xray radiation risk patient lo...
10677    let xgeq large number let leq q integers gcdaq...
10678    need analyze available large synoptic multiban...
10679    schizophrenia mental disorder characterized ab...
10680    gaussian mixture models one studied mature mod...
10681    argued based results numerical modelling exper...
10682    investigation coherent smithpurcell radiation ...
10683    groundbased telescopes equipped stateoftheart ...
10684    k borsuk topological conference moscow introdu...
10685    paper focuses new task ie transplanting catego...
10686    build systems essential part modern software e...
10687    essential issue freight transportation system ...
10688    experiments optical stm injection carriers lay...
10689    japanese comic format known manga popular worl...
10690    optical spectrum liquid water analyzed subsyst...
10691    type ii weyl semimetal three dimensional gaple...
10692    present simple model development shear layers ...
10693    materials composed two dimensional layers bond...
10694    prove choice parameters ktlambda class finite ...
10695    paper survey recent results adaptive robust no...
10696    consider statistical inverse problem recover f...
10697    consider system linear hyperbolic pdes state o...
10698    stereodynamics nepar penning associative ioniz...
10699    consider tunneling spinless electrons singlech...
10700    intersystem crossing radiationless process tak...
10701    denial service attacks especially pertinent in...
10702    paper reports datadriven interactionaware moti...
10703    skiroc asic readout silicon pad detectors elec...
10704    dominance annual plants traditionally consider...
10705    systems synthetic biology much research focuse...
10706    resolve thermal motion highstress silicon nitr...
10707    geodesic distance matrices reveal shape proper...
10708    work structural stability electronic propertie...
10709    construct knrrer type equivalences outside hyp...
10710    classify torsion actions free wreath products ...
10711    propose two semiparametric versions debiased l...
10712    smallcell deployment licensed unlicensed spect...
10713    paper studies numerical approximation solution...
10714    study effect adaptive mesh refinement parallel...
10715    todays artificial assistants typically prompte...
10716    imaginary conversation guido altarelli express...
10717    approximate bayesian computing powerful likeli...
10718    study word conjugacy problems lacunary hyperbo...
10719    higgs resonance modes condensed matter systems...
10720    generic text embeddings successfully used vari...
10721    instrumental variable analysis widely used met...
10722    schubert polynomials basis polynomial ring rep...
10723    since first studies thermodynamics heat transp...
10724    complex high dimensional unstructured data oft...
10725    consider numerical approach incompressible sur...
10726    propose machinelearning method evaluating pote...
10727    article consider products random walks finite ...
10728    dantzig selector ds lasso problems attracted p...
10729    design adaptive algorithms simultaneous regula...
10730    birkhoff conjecture says boundary strictly con...
10731    pedestrian crowds often include social groups ...
10732    paper derive upper lower bounds well simple cl...
10733    discuss quasiparticle entropy heat capacity di...
10734    widefield high precision photometric surveys k...
10735    plasmonassisted channeling acceleration realiz...
10736    formal verification techniques widely used det...
10737    underpotential deposition transition metal ion...
10738    many real world tasks reasoning physical inter...
10739    usage online textual media steadily increasing...
10740    show entropysgd chaudhari et al viewed learnin...
10741    learning sophisticated feature interactions be...
10742    investigate stability manybody localized mbl p...
10743    almost eegbased braincomputer interfaces bcis ...
10744    conditional fourier restriction estimates elli...
10745    measurement falls outside quantization measura...
10746    increased interest building data analytics fra...
10747    deep neural networks enabled progress wide var...
10748    investigate differential equation jacobitype p...
10749    xray absorption spectroscopy measured ledge tr...
10750    topological states matter root fascinating phe...
10751    consider large scale empirical risk minimizati...
10752    let gamma convex cocompact discrete group isom...
10753    paper investigates role tutor feedback languag...
10754    paper analyzes coexistence performance wifi ce...
10755    realtime traffic flow prediction provide trave...
10756    since introduction locally linear embedding ll...
10757    studied acetylhistidine ach bare microsolvated...
10758    quantum mechanics quantum states values physic...
10759    known set correlated equilibria nplayer noncoo...
10760    known unconfined dust explosions consist relat...
10761    data volume heterogeneity digital music conten...
10762    theoretically investigate generation intense k...
10763    demonstrate usefulness adding delay infinite g...
10764    reachability analysis hybrid systems active ar...
10765    lasso biased concave penalized least squares e...
10766    interval subset sum problem issp generalizatio...
10767    kernel methods powerful flexible approach solv...
10768    paper focuses problem estimating historical tr...
10769    present paper proposes novel method quantifica...
10770    interested dynamics quantum manybody systems c...
10771    finance durations successive transactions usua...
10772    tensile strength small dusty bodies solar syst...
10773    stateoftheart knowledge compilers generate det...
10774    working prime field characteristic two consequ...
10775    train inference network jointly deep generativ...
10776    introduce novel generative formulation deep pr...
10777    information communications technology continue...
10778    secondorder dependence structure purely nondet...
10779    present paper study match test extended regula...
10780    spinspin correlation function response low ele...
10781    consider estimating average treatment effects ...
10782    paper address problem detection classification...
10783    propose efficient method generate whitebox adv...
10784    present analyze two pathways produce commercia...
10785    model instability poor prediction longterm beh...
10786    spectroscopic study rydberg states helium n ma...
10787    work concerned tests structural breaks spot vo...
10788    present direct numerical simulations transport...
10789    recently odrzywolek rafelski arxiv found three...
10790    study effect uniform external magnetization pw...
10791    calculate qdimension kth cartan power fundamen...
10792    workers participating crowdsourcing platform w...
10793    using representation theory elliptic quantum g...
10794    notion formal duality finite abelian groups ap...
10795    eyes presented image brain processes view sing...
10796    almost two decades ago wattenberg published pa...
10797    paper novel method using convolutional neural ...
10798    nonignorable missing data likelihoodbased infe...
10799    lowtextured image stitching remains challengin...
10800    propose new method input variable selection no...
10801    article proposes new way construct computation...
10802    study minibatch diversification scheme stochas...
10803    despite long history meteor science understand...
10804    article study generalisation seibergwitten equ...
10805    hyperkamiokande next generation large water ch...
10806    present milabot deep reinforcement learning ch...
10807    quantification supervised learning task consis...
10808    data noising effective technique regularizing ...
10809    present generative method estimate human motio...
10810    quasiorder binary reflexive transitive relatio...
10811    paper study controllability stabilizability pr...
10812    article prove total variation inequalities max...
10813    study bipartite community detection networks g...
10814    paper demonstrates endtoend neural network arc...
10815    consider task estimating highdimensional direc...
10816    investigate deexcitation th nucleus via excita...
10817    well known memory effect flat spacetime parame...
10818    consider problem estimating mutual information...
10819    wigner functions forming phase space represent...
10820    intracranial carotid artery calcification icac...
10821    field structural bioinformatics seen significa...
10822    auction method developed bertsekas late relaxa...
10823    levitated optomechanics showing potential prec...
10824    purpose present paper show eilenbergtype corre...
10825    context theoretically possible rings formed ar...
10826    scientific legacy code matlaboctave compatible...
10827    customary conceive interactions constituents m...
10828    future sealevel rise drives severe risks many ...
10829    approximation power general feedforward neural...
10830    define standard borel space free arakiwoods fa...
10831    robots autonomous underwater vehicles auvs aut...
10832    paper present spectral graph wavelet approach ...
10833    paper studies robust regression problems assoc...
10834    thin liquid films ubiquitous natural phenomena...
10835    long range movement certain organisms presence...
10836    study trend filtering relatively recent method...
10837    search reliable methodology prediction light a...
10838    adversarial training shown regularize deep neu...
10839    android os become popular mobile operating sys...
10840    process monitoring involves tracking systems b...
10841    article go discuss various proper extensions k...
10842    biss investigated kind fibration called rigid ...
10843    analytic gradient routines desirable feature q...
10844    report analysis tev largescale sidereal anisot...
10845    counting objects digital images process replac...
10846    propose modification standard inverse scatteri...
10847    paper investigates estimation mean vector inva...
10848    define variety abstract termination principles...
10849    problem search satellites exoplanets exomoons ...
10850    consider following kolmogorov type hypoellipti...
10851    constraint answer set programming promising re...
10852    modern radio telescopes square kilometre array...
10853    graphs prevalent tool data science model inher...
10854    power plant complex nonstationary system tradi...
10855    studies affect labeling ie putting feelings wo...
10856    paper positively solves open problem possible ...
10857    lindelfs hypothesis one important open problem...
10858    complex systems wide variety areas biological ...
10859    practical success boolean satisfiability sat s...
10860    additive regression provides extension linear ...
10861    underwater machine vision attracted significan...
10862    recent studies shown sketches diagrams play im...
10863    recently two influential pnas papers shown pre...
10864    machine learning going era celebrated success ...
10865    development positioning technologies resulted ...
10866    consider basic problem interface two fundament...
10867    grasping complex process involving knowledge o...
10868    stateoftheart speaker diarization systems util...
10869    social networks typical attributed networks no...
10870    c nuclear magnetic resonance measurements perf...
10871    herbertsmithite zndoped barlowite two compound...
10872    nonrecurring traffic congestion caused tempora...
10873    derive closed form description convex hull mix...
10874    v nestoridis conjectured omega simply connecte...
10875    granular gases dilute ensembles particles rand...
10876    scuba ambitious sky survey sassy composed shal...
10877    paper propose novel unfitted finite element me...
10878    employ recently developed computational manybo...
10879    study fairness collaborativefiltering recommen...
10880    consider setup nonparametric blind regression ...
10881    general formulation optimization problems vari...
10882    portable computing devices include tablets sma...
10883    spinal cord stimulation enabled humans motor c...
10884    general description online procedure calibrati...
10885    media seems become partisan often providing bi...
10886    currently environment fraction automated vehic...
10887    consider problem streaming kernel regression o...
10888    stochastic differential equations sdes increas...
10889    learning encoding feature vectors terms overco...
10890    propose hmdap hybrid framework largescale data...
10891    novel approach unsupervised domain adaptation ...
10892    present detail convolutional neural network us...
10893    improving quality endoflife care hospitalized ...
10894    convolutional sparse coding csc improves spars...
10895    challenging recognize facial action unit au sp...
10896    propose effective method creating interpretabl...
10897    present simple yet useful result expected valu...
10898    new approach using hyperbolicequation system h...
10899    general easytocode numerical method based radi...
10900    learning approaches recently become popular fi...
10901    general boltzmann machine continuous visible d...
10902    introduce novel regression framework simultane...
10903    representation learning become invaluable appr...
10904    polymer models used describe chromatin folded ...
10905    complex contagion models developed understand ...
10906    network coding discuss effect sequential error...
10907    simultaneous localization mapping slam problem...
10908    characterizing patients progression stages sep...
10909    experimentalists observed phenotypic variabili...
10910    style transfer methods achieved significant su...
10911    paper proposes innovative method segmentation ...
10912    paper explore deep reinforcement learning algo...
10913    key issues pertaining collection epidemic dise...
10914    molecular beam epitaxy technique used deposit ...
10915    investigate endtoend method automatically indu...
10916    multilabel classification practical yet challe...
10917    main goal study extract set brain networks mul...
10918    combinatorial filters subject increasing inter...
10919    collective behavior active semiflexible filame...
10920    compare following two sources poor coverage po...
10921    networked data every training example involves...
10922    spatially extended systems support local trans...
10923    carbon nanotubes modeled point configurations ...
10924    investigate similarities pairs articles cocite...
10925    complementary auxiliary basis sets f explicitl...
10926    comparing traditional learning criteria mean s...
10927    novel predictor traffic flow forecasting namel...
10928    person dependent network called alterego net p...
10929    univalent homotopy type theory hott may seen l...
10930    analyze dynamics periodicallydriven floquet ha...
10931    aqinmathbbq estermann function defined dsaqsum...
10932    gametheoretic risk management framework put fo...
10933    present results multiwavelength study blazar p...
10934    one major hurdles toward automatic semantic un...
10935    paper describe easyinterface opensource toolki...
10936    introduce notion essential tangent bundle para...
10937    machine learning applications often require hy...
10938    finish classification begun two earlier papers...
10939    establishing accurate morphological measuremen...
10940    multistart algorithms common effective tool me...
10941    estimation number endmembers existing scene co...
10942    problem threeuser multipleaccess channel mac n...
10943    last two decades recurrence plots rps introduc...
10944    meta distribution signaltointerference ratio s...
10945    transport characteristics across pulsed laser ...
10946    large redshift surveys galaxies clusters provi...
10947    learning high quality class representations ex...
10948    gradient coding technique straggler mitigation...
10949    mev acceleratordriven subcritical system ads i...
10950    changes capital structure global financial cri...
10951    evanescent field surrounding nanoscale optical...
10952    analysis industrial processes modelled descrip...
10953    increasing proton beam power neutrino producti...
10954    paper presents approach quantitative modeling ...
10955    many protostellar gapped binary discs show mis...
10956    study supersymmetric version gardner equation ...
10957    many augmented reality ar applications operate...
10958    problem twodimensional steady water waves vort...
10959    study neuroinspired model mimics discussion in...
10960    article study problem controlling highway segm...
10961    portable ultrafast ultrasound us imaging syste...
10962    paper extends conventional general framework o...
10963    two modeltheoretic concepts weak saturation we...
10964    paper concerned behavior ergodic constant asso...
10965    collective behavior among coupled dynamical un...
10966    human activity recognition using smart home se...
10967    consider eigenvalue problems elliptic operator...
10968    article develops framework testing general hyp...
10969    quantum computing technologies become hot topi...
10970    recently encoderdecoder neural networks shown ...
10971    approximate dynamic programming algorithms app...
10972    spatiotemporal forecasting various application...
10973    recently machine learning used every possible ...
10974    present wifes atlas galactic globular cluster ...
10975    spread new products networked population often...
10976    develop linear algebraic framework shapefromsh...
10977    present projectively invariant description pla...
10978    modern cities growing ecosystems face new chal...
10979    many vehicles world number vehicles increasing...
10980    describe categorical models circuitbased quant...
10981    works presents formulation visual navigation u...
10982    since population projections cases produced us...
10983    existence elliptic periodic solutions perturbe...
10984    suppression interference narrowband frequency ...
10985    well known euler vortex patch mathbbr remain r...
10986    effective interaction itinerant spin degrees f...
10987    human collaborators coordinate effectively act...
10988    consider phenomenon boseeinstein condensation ...
10989    study stability electroweak vacuum lowscale in...
10990    explore spectral properties capillary dye lase...
10991    electrolyte gating widely used induce large ca...
10992    past years action mathrmpglmathbb fq set irred...
10993    provide novel notion means interpretable looki...
10994    laboratory astrophysical situations plasma wak...
10995    consider undirected mixed membership network n...
10996    paper derive nonsingular greens functions unbo...
10997    report survey molecular gas galaxies xmmxcs j ...
10998    iterative ensemble kalman filter ienkf determi...
10999    statistical algorithm categorizing different t...
11000    braincomputer interfaces bcis provide alternat...
11001    experimentally investigate bursting dynamics c...
11002    discuss low energy ee collider production yet ...
11003    introduce investigate different definitions ef...
11004    study examine collection healthrelated news ar...
11005    seminal work robust replication volatility der...
11006    explore effects asymmetry hopping parameters d...
11007    purpose propose phenotypebased artificial inte...
11008    paper address problem reconstructing timedomai...
11009    braids binfty equipped selfdistributive operat...
11010    exciton relaxation dynamics photoexcited elect...
11011    many deployed learned models black boxes given...
11012    use reinforcement learning rl learn dexterous ...
11013    new index transforms weber type kernels consis...
11014    many conventional statistical procedures extre...
11015    increasing interest use millimeter wave bands ...
11016    recent results alagic russell given evidence e...
11017    examine asymptotics spectral counting function...
11018    marchenko redatuming novel scheme used retriev...
11019    excitons plasmons two fundamental types collec...
11020    investigate evolution flavour composition cosm...
11021    analyse limiting behavior eigenvalue singular ...
11022    active communication robots humans essential e...
11023    present results investigation starforming pote...
11024            introduction deep neural networks history
11025    commercial photoncounting modules based active...
11026    shannon entropy atomic molecular chemical phys...
11027    thanks modern sky surveys twenty stellar strea...
11028    fitness species determines abundance survival ...
11029    first derive general integralturnpike property...
11030    study vortex patch problem dstratified naviers...
11031    onedimensional unsteady nozzle flow modelled i...
11032    short note provide analytical formula conditio...
11033    channelreciprocity based key generation crkg g...
11034    rational projective plane mathbbqp simply conn...
11035    progress probabilistic generative models accel...
11036    vector quantization aims form new vectorsmatri...
11037    effects spatial scale results optimisation tra...
11038    paper consider regression problems onehiddenla...
11039    rising number interconnected devices sensors m...
11040    widespread availability gps information everyd...
11041    information extraction user intention identifi...
11042    cardiovascular diseases cvds prevalent across ...
11043    paper addresses question emotion classificatio...
11044    charge transfer among individual atoms molecul...
11045    study single value shatter function set system...
11046    consider moduli space framed flat u connection...
11047    nongaussianities dynamical origin disentangled...
11048    measure theory integration exposed clear aim h...
11049    propose contextualbandit approach demand side ...
11050    present overview techniques quantizing convolu...
11051    present new experimental approach investigate ...
11052    positive definite kohnsham kinetic energykske ...
11053    paper describe attempt producing stateoftheart...
11054    discerning mutation affects stability protein ...
11055    analyze correlation starspots superflares sola...
11056    monotone systems preserve partial ordering sta...
11057    isotopic ratios comets critical understanding ...
11058    cosine dark matter search experiment started t...
11059    recent years quantum phenomena experimentally ...
11060    efficiency intracellular cargo transport speci...
11061    deep learning models consistently outperformed...
11062    using semiclassical greens function formalism ...
11063    introduce new cosmic emulator matter power spe...
11064    paper compare performance various homomorphic ...
11065    paper consider burgers equation uncertain boun...
11066    delaydifferential equations functional differe...
11067    vse transition metal dichaclogenide chargedens...
11068    procedural textures normally generated mathema...
11069    multiple planet systems provide ideal laborato...
11070    conditional generative adversarial networks cg...
11071    attainability modification apparent magnetic a...
11072    complement argument z garaev several ideas obt...
11073    ybacuoag pressure point contacts direct conduc...
11074    show zamolodchikov dynamics recurrent quiver z...
11075    macroscale robotics systems propulsion control...
11076    longrange macrodimers formed dstate cesium ryd...
11077    galactic winds starforming galaxies play key r...
11078    endtoend training automated speech recognition...
11079    even though sequencetosequence neural machine ...
11080    tutorial introduces new powerful set technique...
11081    investigate minimum cases realtime probabilist...
11082    introduce abstract notion necklical set order ...
11083    application programming interfaces apis often ...
11084    human lifespan impenetrable biological upper l...
11085    object detection provided imagelevel labels in...
11086    coverage probability user mmwave system depend...
11087    study application polar codes deletion channel...
11088    dissertation focus several important problems ...
11089    consider connect set disjoint networks optimiz...
11090    target tracking estimation unknown weaving tar...
11091    give detailed proof facts blowup horizontal cu...
11092    many machine learning applications multiple de...
11093    consider two greedy algorithms minimizing conv...
11094    study phase diagram triangularlattice qstate p...
11095    june turkey held historical election transform...
11096    insertion challenging haptic visual control pr...
11097    lorentz offaxis electron holography technique ...
11098    capturing structural temporal aspects interact...
11099    article develop algorithms data assimilation b...
11100    paper describes new algorithm solar energy for...
11101    determine group strucure rd homotopy group pig...
11102    paper investigate existence nonexistence nontr...
11103    purpose present new method evaluate accuracy e...
11104    feature selection problems arise variety appli...
11105    develop approach realize quantum switch rydber...
11106    pemantle steif provided sharp threshold existe...
11107    digital traces leave behind engaging modern wo...
11108    free presentation r f g leibniz algebra g baer...
11109    work presents new tool verify correctness cryp...
11110    consider layered decorated honeycomb lattices ...
11111    optical vortex coronagraph ovc one promising w...
11112    symbolic computation important approach automa...
11113    present general model allowing quantum simulat...
11114    network analysis techniques remain rarely used...
11115    online social networks osns become one importa...
11116    stochastic variancereduced gradient method svr...
11117    recently studies deep reservoir computing rc h...
11118    partandparcel study multiplicative number theo...
11119    topological dirac weyl semimetals host quasipa...
11120    work considers inclusion detection problem ele...
11121    given hermitian manifold mng gauduchon connect...
11122    growing interest extending traditional vectorb...
11123    investigate finitesize effects diffusion confi...
11124    known boosting interpreted gradient descent te...
11125    investigate resistive switching behaviour math...
11126    paper proposes convolutional neural network cn...
11127    quantum computing moving rapidly point deploym...
11128    consider problem learning onehiddenlayer neura...
11129    direct growth graphene semiconducting insulati...
11130    study nonconservative like sodes admitting exp...
11131    constrained markov decision process cmdp natur...
11132    role scalable highperformance workflows flexib...
11133    standard kernel quadrature method numerical in...
11134    quasirelativistic twocomponent approach effici...
11135    important preprocessing step data analysis pip...
11136    consider system n particles interacting via sh...
11137    study complexity geometric problems spaces low...
11138    present unified framework analyze global conve...
11139    paper propose eigenvalue analysis system dynam...
11140    article present brief narration origin overvie...
11141    prove integer programming three quantifier alt...
11142    dictionary learning component analysis part on...
11143    despite wide use machine learning adversarial ...
11144    communities ubiquitous nature society individu...
11145    let xlambdaldotsxlambdan dependent nonnegative...
11146    termresolution provides elegant mechanism prov...
11147    article concerned quantitative unique continua...
11148    enable electric vehicles evs access internet i...
11149    betweenness centralitymeasuring many shortest ...
11150    understanding nature turbulent fluctuations io...
11151    neural field theory used quantitatively analyz...
11152    address problem cameratolaserscanner calibrati...
11153    use volunteers emerged lowcost alternative gen...
11154    objective coupling neuronal populations magnit...
11155    synchronized measurements large power grid ena...
11156    study poolbased active learning abstention fee...
11157    many chemical systems cannot described quantum...
11158    shape analyses tephra grains result understand...
11159    highperformance computing resources constant i...
11160    visual question answering recently proposed ar...
11161    natural microswimmers interplay swimming activ...
11162    article construct twoblock gibbs sampler using...
11163    understanding excited carrier dynamics semicon...
11164    robots gained relevance society increasingly p...
11165    rapport plays important role communication hel...
11166    main theorems paper least transitive model kel...
11167    present nearinfrared spectra candidate planeta...
11168    efficient bayesian technique estimation proble...
11169    investigated tunneling current suspended graph...
11170    graph convolutional network gcn model variants...
11171    many different relatedness measures based inst...
11172    nowadays many companies available large amount...
11173    investigate butterfly effect charge diffusion ...
11174    although superconducting cuprates display char...
11175    paper use deep feedforward artificial neural n...
11176    purpose work mostly expository aims elucidate ...
11177    simulationbased image quality metrics adapted ...
11178    temporaldifference learning td sutton function...
11179    show first order theory lattice open sets natu...
11180    cloud server spent lot time energy money train...
11181    study smallscale highfrequency turbulent fluct...
11182    hormozgan province located south iran faces se...
11183    biological cellular systems often modeled grap...
11184    study empirical statistical gap distributions ...
11185    mobile payment systems increasingly used simpl...
11186    deep convolutional neural networks cnn stateof...
11187    study spin deformedaklt models square lattice ...
11188    consider statistical estimation superhedging p...
11189    paper proves irreducible subfactor planar alge...
11190    latest techniques neural networks support vect...
11191    weak gravitational lensing alters apparent sep...
11192    solitons important significant many fields non...
11193    explore several problems related ruled polygon...
11194    recent nobelprizewinning detections gravitatio...
11195    selfdoping effect outer inner cuo planes ops i...
11196    player selection one important tasks sport cri...
11197    probabilistic modeling enables combining domai...
11198    supermassive black holes known coevolve host g...
11199    many different approaches neural network based...
11200    providing systems ability relate linguistic vi...
11201    paper study limitations parallelization convex...
11202    applying principle equivalence analogous einst...
11203    demand response programs price incentives migh...
11204    letter introduce distributed nesterov method t...
11205    one important features mobile rescue robots ab...
11206    well known normaized characters integrable hig...
11207    solve spectrum scarcity problem cognitive radi...
11208    growing interest high dimensional functional d...
11209    extended dynamic mode decomposition edmd algor...
11210    r version patched issue random sampling functi...
11211    quasinormal modes qnm ringdown phase gravitati...
11212    investigations higherorder type theories relat...
11213    evaluation fbst fully bayesian significance te...
11214    propose minimal solution pose estimation using...
11215    embedding methods word embedding become pillar...
11216    rnabinding proteins rbps play crucial roles ma...
11217    transition metal oxides tmos complex electroni...
11218    presence background noise interference arrival...
11219    currently diagnosis skin diseases based primar...
11220    bayesian optimization bo become effective appr...
11221    study networks firms leontief production funct...
11222    paper study stochastic gradient descent sgd me...
11223    consistent demand better performance lead inno...
11224    covariate shift relaxes widelyemployed indepen...
11225    across smartgrid smartcity applications proble...
11226    common feature various plasmonic schemes abili...
11227    present method memory footprint reduction fftb...
11228    note prove paynetype conjecture behaviour noda...
11229    aim note give alternative proof theorem koras ...
11230    paper primarily concerned asymptotic behavior ...
11231    paper develops inverse reinforcement learning ...
11232    consider question accurately efficiently compu...
11233    work derive new kind rainbow functions general...
11234    reinterpret kims nonabelian reciprocity maps a...
11235    instance labeldependent label noise iln widely...
11236    study problem community detection hypergraphs ...
11237    give finite presentations saturated cluster mo...
11238    prove characterization tquery quantum algorith...
11239    present parallel forwardbackward pruning pfbp ...
11240    detection gravitational waves gws generated me...
11241    markovchain model developed purpose estimation...
11242    note paper superceded blackbox adversarial att...
11243    family mathcal fsubset nchoose k usq fldots fs...
11244    electrostatic interactions play fundamental ro...
11245    theory receptorligand binding equilibria long ...
11246    spincharge separation known broken many physic...
11247    inconceivable chaotic world would look humans ...
11248    paper adopt categorytheoretic approach concept...
11249    selfconsistent harmonic approximation effectiv...
11250    resolve conflicts among norms various nonmonot...
11251    develop fast spectral algorithms tensor decomp...
11252    study problem testing conductance setting dist...
11253    recently single crystalline carbon nitride mat...
11254    automatic segmentation liver lesions fundament...
11255    work characterize combinatorial metrics admitt...
11256    optical nearinfrared photometry optical spectr...
11257    article give full description topology one dim...
11258    suggest ultrahighenergy uhe cosmic rays crs ma...
11259    study breakdown epidemic depends parameters ex...
11260    consider asymptotics large external magnetic f...
11261    handbuilt verb clusters widely used levin clas...
11262    remoteness sun harsh conditions prevailing sol...
11263    atoms covalent solids rearrange mediumrange le...
11264    models often defined conditional rather joint ...
11265    estimation intensity point process considered ...
11266    consider particular type sqrtliouville quantum...
11267    give new constructions two classes algebraic c...
11268    paper investigates problem fitting protein com...
11269    paper provides link timedomain frequencydomain...
11270    propose intelligent proactive content caching ...
11271    juno orbiter provided improved estimates even ...
11272    generative adversarial networks gans promising...
11273    characteristic feature differentialalgebraic e...
11274    java platform thirdparty libraries provide var...
11275    paper presents light detection ranging lidar d...
11276    propose new blind source separation algorithm ...
11277    upperdivision physics students spend much time...
11278    accurate automated detection anomalous samples...
11279    magnetic properties pyrochlore iridate materia...
11280    report discovery analysis planetary microlensi...
11281    present singlechannel phasesensitive speech en...
11282    monic polynomial dx even degree express sqrt l...
11283    spatially resolving immediate surroundings you...
11284    low rank matrix completion lrmc problem low ra...
11285    glance humans make rich predictions future sta...
11286    context clouds already detected exoplanetary a...
11287    found dirac nodal lines dnls band structures m...
11288    hair cells auditory vestibular systems capable...
11289    external localization essential part indoor op...
11290    natural language elements eg todo comments fre...
11291    information extraction ie text largely focused...
11292    domestic violence dv global social public heal...
11293    provide numerical evidence demonstrating neces...
11294    electron ptychography seen recent surge intere...
11295    modeled laserinduced transient current wavefor...
11296    isolated quantum manybody systems integrable d...
11297    first consider additive brownian motion proces...
11298    paper complete study started pi evolution inve...
11299    mosquitoes major vector malaria causing hundre...
11300    paper presents generic bayesian framework enab...
11301    paper propose supervised learning system count...
11302    woodin shown measurable woodin cardinal approp...
11303    collective effects deformed atomic nuclei pres...
11304    propose efficient scalable method incrementall...
11305    study pumping lemma wordtree languages generat...
11306    order alleviate data sparsity overfitting prob...
11307    cognitive arithmetic studies mental processes ...
11308    arbitrarily many pairwise inequivalent modular...
11309    anomaly detection static networks extensively ...
11310    work explore utility locally differentially pr...
11311    propose method feature selection employs kerne...
11312    demonstrate existence excited state excitonpol...
11313    paper discuss generalized hamming weights clas...
11314    examine systematically inconsistency cosmologi...
11315    theoretically investigate spin injection ferro...
11316    contactassisted protein folding made good prog...
11317    semiorder model preference relations element x...
11318    let rn mathfrak mn n ge infinite sequence regu...
11319    deep neural networks notorious sensitive small...
11320    introduce new model teaching named preferenceb...
11321    study binary spinmixture zerotemperature repul...
11322    ideal test equivalence principle test masses f...
11323    understand emergent magnetic monopole dynamics...
11324    hexatic phase predicted theories twodimensiona...
11325    despite fact observed gradient water content a...
11326    traffic forecasting particularly challenging a...
11327    consider two types averaging complex covarianc...
11328    paper characterizes capacity region gaussian m...
11329    lifestyles valuable model understanding indivi...
11330    availability powerful computers iterative reco...
11331    propose two algorithms find local minima faste...
11332    mean growth rate state vector evaluated genera...
11333    doctors often rely past experience order diagn...
11334    machine learning ml deep learning dl models ac...
11335    define formal affine demazure algebra formal a...
11336    homographs words different meanings surface fo...
11337    show hitchin representation determined spectra...
11338    digital pathology one promising fields diagnos...
11339    present algorithm generate synthetic datasets ...
11340    given widespread popularity spectral clusterin...
11341    stochastic block model widely used detecting c...
11342    ego networks proved valuable tool understandin...
11343    space less one decade search majorana quasipar...
11344    performed comparative study extraction largesc...
11345    propose conjectural explicit formula generatin...
11346    describe method formationchange trajectory pla...
11347    bubbly flows present bubble column reactors si...
11348    paper study problem sampling given probability...
11349    madry lab recently hosted competition designed...
11350    difficult problems described terms interacting...
11351    describe sockeye version opensource sequenceto...
11352    shape information great importance many applic...
11353    present day aes one widely used secure encrypt...
11354    establish natural connection qvirasoro algebra...
11355    paper examines noise handling properties three...
11356    despite ubiquity daily lives ai starting make ...
11357    grigorievg koshevoy recently proved tropical s...
11358    study normal closure big power one several deh...
11359    cyber physical systems cps becoming ubiquitous...
11360    treatment effects estimated observational data...
11361    analytical electron microscopy spectroscopy bi...
11362    consider problem global optimization unknown n...
11363    study proposes fully convolutional network fcn...
11364    recent technological development enabled resea...
11365    modern technology producing extremely bright c...
11366    many realworld applications require robust alg...
11367    recombination charges important process organi...
11368    gaussian mixture models gmm powerful parametri...
11369    study effect constant shifts zeros rational ha...
11370    joint visual attention characterized two indiv...
11371    consider ibvp exterior domains plaplacian para...
11372    using sample galaxies selected sloan digital s...
11373    deep network pruning effective method reduce s...
11374    propose systematic learningbased approach gene...
11375    vision sensors lie heart computer vision many ...
11376    propose methodology adapts graph embedding tec...
11377    electrical conductivity dielectric properties ...
11378    one varieties pores often found natural artifi...
11379    successful programs written maintained one asp...
11380    last decade neural network kernel adaptive fil...
11381    memory great impact evolution every process re...
11382    camassaholm equation twocomponent camassaholm ...
11383    hydrodynamic regime evolution stochastic latti...
11384    maxmixture processes defined z maxax ay x asym...
11385    purpose paper point new connection information...
11386    quantized neural networks qnns use low bitwidt...
11387    frame problem fp puzzle philosophy mind episte...
11388    paper present data visualization method togeth...
11389    early universe dominated nonminimally coupled ...
11390    examine relationship double schubert polynomia...
11391    inflation massive fields contribute power spec...
11392    lecture notes concerned solvability second bou...
11393    text contains three hundred specific open ques...
11394    present senmr measurements singlecrystalline f...
11395    present study proposes litstoryteller interact...
11396    conventional sound shielding structures typica...
11397    traditional dictionary learning methods based ...
11398    introduce stopcode tolerant sct approach train...
11399    introduce dual matroids dimensional simplicial...
11400    linear nonlinear optical properties low dimens...
11401    prove general family congruences bernoulli num...
11402    completely positive completely bounded mutlipl...
11403    paper investigate number integer points lying ...
11404    electronic magnetic properties dna structures ...
11405    paper stochastic model regime switching develo...
11406    employing ab initio calculations discuss chemi...
11407    early accurate identification parkinsonian syn...
11408    structured prediction energy networks spens si...
11409    selfaction features wave packets propagating t...
11410    propose network independent handheld system tr...
11411    paper show controllers created using data driv...
11412    rectangular grid formed liquid filaments parti...
11413    cyberphysical system cps defined unique charac...
11414    chemotaxis ubiquitous biological phenomenon ce...
11415    jupiters banded appearance may appear unchangi...
11416    paper offers methodological contribution inter...
11417    paper axiomatic study consistent approvalbased...
11418    address problem predicting solvation free ener...
11419    paper study sharp generalizations dotfpq multi...
11420    diagnosis disease one major objective predict ...
11421    let x smooth projective manifold dimmathbbc xn...
11422    ordered l feni phase tetrataenite recently con...
11423    orientationpreserving branched covering f near...
11424    article introduces planar shape signatures der...
11425    paper investigates asymptotic behavior overhea...
11426    interplay almost degenerate levels quantum dot...
11427    know global optimization problems cannot solve...
11428    dictionaries collections vectors used represen...
11429    recent years variation autoencoders become one...
11430    complex projective manifold rationally connect...
11431    define koszul sign map encoding koszul sign co...
11432    spaceborne lowto mediumresolution r transmissi...
11433    introduce concept multiplicatively closed subs...
11434    concept hybrid readout time projection chamber...
11435    introduce describe results novel shared task b...
11436    learning reproducing kernel hilbert spaces rkh...
11437    investigate dynamics coupled waveguide system ...
11438    text extraction important problem image proces...
11439    longlead forecasting spatiotemporal systems of...
11440    imaging modalities recording diffraction data ...
11441    consider problem annual mean temperature predi...
11442    issue time reversible microscopic dynamics giv...
11443    motivated relatively delayoptimal scheduling r...
11444    survey recent developments hausdorff dimension...
11445    consider theoretical properties model encompas...
11446    coupled evolution magnetic field flow earths c...
11447    paper present novel approach broadcasting info...
11448    several studies shown stellar activity feature...
11449    distributions species lifetimes species space ...
11450    problem routing graphs using nodedisjoint path...
11451    gaussian random fields popular models spatiall...
11452    show discovery robust scalable numerical solve...
11453    according principle polyrepresentation retriev...
11454    although bayesian inference immensely popular ...
11455    despite outstanding achievements modern cosmol...
11456    paper investigate zeros difference polynomials...
11457    spreadsheets erroneous research found endusers...
11458    investigate modulational instability mi asymme...
11459    discovering automatically semantic structure t...
11460    present new method generating mixture models d...
11461    let omegasubsetmathbb rn lipschitz domain give...
11462    paper address cardinality estimation problem i...
11463    consider nonstationary sequential stochastic o...
11464    report study spin conductance ultrathin films ...
11465    work focus approach noncommutative formal powe...
11466    deep generative networks provide powerful tool...
11467    deep neural networks large number parameters h...
11468    persistent currents bose condensates scalar or...
11469    generality one main advantages heuristic algor...
11470    model predictive control mpc principal control...
11471    majority yes votes constitutional referendum t...
11472    paper discusses efficient bayesian estimation ...
11473    colorado conducted risklimiting tabulation aud...
11474    hubble space telescope fine guidance sensor as...
11475    paradox model social dynamics determined votin...
11476    discrete truncated wigner approximation dtwa s...
11477    paper investigate parametric weight knapsack p...
11478    markov processes well understood case take pla...
11479    present analysis results eclipsing cataclysmic...
11480    calibration individual based models ibms succe...
11481    health insurance companies brazil data claims ...
11482    corteel savelief vuleti generalized concept ov...
11483    data driven research android gained great mome...
11484    humans increasingly stressing ecosystems via h...
11485    recent experiments show natural artificial mic...
11486    analyzing empirical data often find global lin...
11487    technological developments call increasing per...
11488    pulserecloser uses pulse testing technology ve...
11489    network alignment problem asks best correspond...
11490    give nonparametric methodology hypothesis test...
11491    sports channel video portals offer exciting do...
11492    investigate dynamic correlations hardcore boso...
11493    article consider problem estimating parameters...
11494    letter adopts long shortterm memorylstm predic...
11495    great progress recently formally specifying me...
11496    lineage tracing joint segmentation tracking li...
11497    consider generalization kmedian kcenter called...
11498    brain signal data inherently big massive amoun...
11499    every automorphisminvariant right nonsingular ...
11500    present visible spectra aglike df cdlike df io...
11501    introduce gradient flow formulation linear bol...
11502    present constraints masses active sterile neut...
11503    paper present bubbleview alternative methodolo...
11504    present study influence disorder mott metalins...
11505    present methodology detail implementation dark...
11506    synthesizing userintended programs small numbe...
11507    performed simulations solid molecular hydrogen...
11508    method described detection estimation transien...
11509    derive hilbert space formalism quantum mechani...
11510    paper construct global actionangle variables c...
11511    block maxima method extreme value theory consi...
11512    demonstrate active tuning alldielectric metasu...
11513    study problem semisupervised question answerin...
11514    propose approach showing rationality algebraic...
11515    availability large databases recent improvemen...
11516    wte sister alloys attracted tremendous attenti...
11517    learning social media data embedding deep mode...
11518    traditional supervised learning makes closedwo...
11519    applied statisticians use sequential regressio...
11520    interpretability become incredibly important m...
11521    let e closed set riemann sphere widehatmathbbc...
11522    ai applications emerged current world among ai...
11523    monadic programming datatypes presented free a...
11524    give faster algorithms producing sparse approx...
11525    introduce generalized kfl sequence special kin...
11526    crucial importance metrics machine learning al...
11527    kuramotosivashinsky pde line odd periodic boun...
11528    present full results decadelong astrometric mo...
11529    velocity anisotropy parameter beta measure kin...
11530    computational flow pair consisting sequence co...
11531    let n compact connected nonorientable surface ...
11532    electric thermal transport properties nu fract...
11533    report longitudinal epsilonnearzero lenz film ...
11534    trend increasing wind turbine rotor diameters ...
11535    p based vx communication uses stochastic mediu...
11536    prove moment inequalities class functionals ii...
11537    multiarmed bandit mab problem classic example ...
11538    study least squares regression problem beginal...
11539    permutation tests among simplest widely used s...
11540    gaussian belief propagation bp widely used dis...
11541    static dynamic properties vortices twocomponen...
11542    advances remote sensing technologies made poss...
11543    multiresolution analysis matrix factorization ...
11544    let k algebraically closed field polynomial al...
11545    magnesium alloys considered biodegradable biom...
11546    article discuss probabilistic interpretation m...
11547    process control systems nowadays process measu...
11548    popular bfgs quasinewton minimization algorith...
11549    volunteer computing vc distributed computing p...
11550    develop theory quasiparticle interference qpi ...
11551    almost twenty years ago er fernholz introduced...
11552    introduce approach based givens representation...
11553    silicon singlephoton detectors spds key device...
11554    many statistical applications concern mathemat...
11555    investigate identification hydrogenpoor superl...
11556    empirical relation indicates increase living s...
11557    investigate family regression problems semisup...
11558    consider nonlinear schrdinger nls equation sub...
11559    paper interested multifractional stable proces...
11560    report observation unusual kind solar microfla...
11561    study commutative positive varieties languages...
11562    present model contagion unifies generalizes ex...
11563    luminous efficiency meteors poorly known criti...
11564    van der waals vdw density functional implement...
11565    analyze interiors hdb c among coolest super ea...
11566    give complete classification isomorphism lie c...
11567    prove two smooth families connected domains cc...
11568    improve existing lower bounds hyperbolic dimen...
11569    important problem many domains predict system ...
11570    multivariate cogarch volatility process show s...
11571    short essay discuss basic features cognitive a...
11572    trigram love expected followed positive words ...
11573    deep neural networks dnns achieved superior pe...
11574    hylleraasbsplines basis set introduced paper u...
11575    revival south equatorial belt seb organised di...
11576    regularization important endtoend speech model...
11577    maximum coercivity achieved given hard magneti...
11578    formulate n soliton solution wadatikonnoichika...
11579    repairing locality appreciated feature distrib...
11580    kiyota murai wada conjectured largest eigenval...
11581    exist many ways build orthonormal basis mathbb...
11582    design new algorithms combinatorial pure explo...
11583    tungsten oxide associated bronzes compounds tu...
11584    examine problem transforming matching collecti...
11585    critically review recent debate doreen fraser ...
11586    needed ensure integrity systems process sensit...
11587    network support key success factor talented pe...
11588    paper shows perturbed form gradient descent co...
11589    article outlines different stages development ...
11590    reliable uncertainty estimation time series pr...
11591    paper consider vehicular network wireless node...
11592    context information technology consumes worlds...
11593    introduce parseval networks form deep neural n...
11594    high purity zinc selenide znse crystals produc...
11595    algorithms equilibrium computation generally m...
11596    propose probabilistic model aggregate answers ...
11597    debris disk morphology wavelength dependent du...
11598    water pollution major global environmental pro...
11599    high luminosity lhc cms detector need charged ...
11600    one prevalent symptoms among elderly populatio...
11601    nonconvex penalty methods sparse modeling line...
11602    mobile phones identification built components ...
11603    paper demonstrates apply machine learning algo...
11604    article outlines memoriam prof pavel zampas co...
11605    consider problem classifying data manifolds ma...
11606    magnetism ordered disordered lanimno explained...
11607    partially observable markov decision process p...
11608    multitask learning mtl led successes many appl...
11609    largearea simcm films vertical heterostructure...
11610    conjecture formula generating function virtual...
11611    using variational bayes neural networks develo...
11612    theorems techniques form different types trans...
11613    suppose alice bob located distant laboratories...
11614    study bratteli diagram sylow subgroups symmetr...
11615    paper prove proper conditions bootstrap debias...
11616    recently owen proposed use hilberts space fill...
11617    stratum defacto mining communication protocol ...
11618    paper provides comparison kstructure unipotent...
11619    paper introduces new free library python progr...
11620    objectivity often considered ideal scientific ...
11621    work report synthesis structural electronic ma...
11622    consider linear regression problem semisupervi...
11623    five simple soft sensor methodologies two upda...
11624    developed new datadriven paradigm rapid infere...
11625    deep neural networks stateoftheart methods man...
11626    present note consider problem constructing hon...
11627    second companion paper arxiv consider morphism...
11628    consider twophase flow two incompressible visc...
11629    mobas represent huge segment online gaming gro...
11630    study twoplayer inclusion games played wordgen...
11631    migration planets nearly circular noninclined ...
11632    researched motion gas subnanochannel functiona...
11633    implementation optimal power flow opf methods ...
11634    present theoretical calculations interpret opt...
11635    photoelectron spectrum water recorded vicinity...
11636    virtue balmers celebrated theorem classificati...
11637    study underdamped langevin diffusion log targe...
11638    direct numerical simulation performed study co...
11639    development spiking neural network simulation ...
11640    propose algorithm separate simultaneously spea...
11641    quest biologically plausible deep learning dri...
11642    signed networks crucial tool modeling friend f...
11643    recently proposed general ensemblebased featur...
11644    tasb predicted theoretically proposed magnetot...
11645    training generative adversarial networks diffi...
11646    work concerned prime factor decomposition pfd ...
11647    purpose note prove dispersive estimates wave e...
11648    finite volume complete hyperbolic manifold qua...
11649    solids deform fluids flow soft glassy material...
11650    describe technical effort used process volumin...
11651    show recently introduced iterative backflow re...
11652    prove winding number pattern p winding number ...
11653    let afn normalized fourier coefficients gl maa...
11654    present letter editor one series publications ...
11655    paper give explicit expressions differentialdi...
11656    construct new family high genus examples free ...
11657    thesis presents design analysis validation hie...
11658    recent results suggested active galactic nucle...
11659    degree ssortativity tendency nodes high degree...
11660    propose unified framework establishing existen...
11661    aggregate analysis comparing countrywise sales...
11662    paper investigate behavior thermoelectric dc c...
11663    among several quantitative invariants found ev...
11664    present novel method obtaining highquality dom...
11665    bulk sensitive hard xray photoelectron spectro...
11666    consider graph vertices bitstrings length n ex...
11667    trained classifiers must often operate data co...
11668    paper find condition finsler space kropina cha...
11669    grow nearly freestanding singlelayer twte grap...
11670    paper concerned structured machine learning su...
11671    paper investigates identify requirement develo...
11672    investigate galaxy overdensity around protoclu...
11673    dark matter search project means ultra high pu...
11674    recurrent neural networks dominant models many...
11675    physical mechanisms laserinduced periodic surf...
11676    ssds currently replacing magnetic disks many a...
11677    recent paper giardin giberti hofstad prioriell...
11678    keyphrase boundary classification kbc task det...
11679    aim article construction interior motive picar...
11680    present new topic model generates documents sa...
11681    article problems related multiscale modelling ...
11682    revisit problem characterizing eigenvalue dist...
11683    mathcalgi distribution able characterize diffe...
11684    present novel optimization method named combin...
11685    information forms basis human behavior includi...
11686    paper evaluates influence maximum vehicle acce...
11687    let zn finite commutative ring residue classes...
11688    demonstrate existence novel quasiparticle exci...
11689    future grid scenario analysis requires major d...
11690    pumpprobe electron energyloss spectroscopy eel...
11691    consider families symmetric linear programs lp...
11692    chime telescope canadian hydrogen intensity ma...
11693    present article analyse behaviour new family k...
11694    theoretically investigate mechanical stability...
11695    twolayer shallow water type model proposed des...
11696    chondrules primitive materials solar system fo...
11697    edit distance dcj model computed linear time g...
11698    learningbased hashing methods widely used near...
11699    given dimensional scheme mathbbx projective sp...
11700    widespread confusion role projectivity likelih...
11701    work derive relations generating functions dou...
11702    considerable literature developed various fund...
11703    mixedness quantum state usually seen adversary...
11704    paper introduces new concept stochastic depend...
11705    experimentally explore topological maxwell met...
11706    report detailed study transport coefficients b...
11707    realworld scenarios appealing learn model carr...
11708    newage directionsensitive darkmattersearch exp...
11709    lack opensource tools hyperspectral data visua...
11710    study problem searching tracking collection mo...
11711    prove regularity estimates entropy solutions s...
11712    analyze ground state localization properties a...
11713    propose calibrated filtered reduced order mode...
11714    interaction light atomic sample containing lar...
11715    technological advancement wireless sensor netw...
11716    j willard gibbs elementary principles statisti...
11717    work focus multilingual systems based recurren...
11718    spiders spectroscopic identification erosita s...
11719    taskspecific word identification aims choose t...
11720    introduce simple subuniversal quantum computin...
11721    present psimssm model based upsi extension min...
11722    reliable extraction cosmological information c...
11723    given geometric path timeoptimal path tracking...
11724    consider deep classifying neural networks expo...
11725    study statistical inference smallnoiseperturbe...
11726    visualization tabular datafor presentation exp...
11727    strong electron interactions drive metallic sy...
11728    use variant technique laca give sparse lplogl ...
11729    sterile neutrinos natural extensions standard ...
11730    probabilistic mixture models widely used diffe...
11731    paper presents kinematic analysis ppps paralle...
11732    context gravitational lensing time delay metho...
11733    projective plane piq necessarily desarguesian ...
11734    present sketchrnn recurrent neural network rnn...
11735    paper presents privileged multilabel learning ...
11736    refine result last two authors diophantine app...
11737    trace norm regularization widely used approach...
11738    reaction networks mainly used model timeevolut...
11739    paper introduce notions rm fpninjective rm fpn...
11740    given straightline drawing gamma graph gve eve...
11741    light curves show flux variation target star o...
11742    consider problem performing inverse reinforcem...
11743    paper introduce analyse langevin samplers cons...
11744    success automated driving deployment highly de...
11745    americas transportation infrastructure backbon...
11746    crosslaminated timber clt prefabricated solid ...
11747    representing domain knowledge crucial task wid...
11748    investigate constraint results inflation model...
11749    classical mechanics light particle bound stron...
11750    introduce new isomorphisminvariant notion entr...
11751    assistive robotic devices used help people upp...
11752    influence diagrams decisiontheoretic extension...
11753    obtained oh spectra four transitions pi ground...
11754    graphene nanoribbons armchair edges studied ex...
11755    given important role galaxy bispectrum recentl...
11756    article brief introduction rapidly evolving fi...
11757    measure field dependence spin glass free energ...
11758    two channels said equivalent degraded space eq...
11759    paper presents transient numerical simulations...
11760    charge modulations considered leading competit...
11761    paper proposes new approach construct high qua...
11762    paper studies problem detection tracking gener...
11763    demonstrate new approach calibrating spectrals...
11764    field discrete event simulation optimization t...
11765    present deeply supervised object detector dsod...
11766    data enables nongovernmental organisations ngo...
11767    past decade seen increasing body literature de...
11768    necessary sufficient conditions finite semihyp...
11769    paper introduce notion auslander modules inspi...
11770    current formal approaches successfully used fi...
11771    compared conventional accelerators laser plasm...
11772    study problem detecting humanobject interactio...
11773    paper presents model dynamical system particle...
11774    paper scalable whole slide imaging swsi novel ...
11775    motivation understanding functions proteins sp...
11776    investigate prospects micronscale acoustic wav...
11777    paper examines problem adaptive influence maxi...
11778    work presents evaluation study using force fee...
11779    despite popularly referred ultimate solution p...
11780    deep neural networks known difficult train due...
11781    main aim paper extend one main results iwaniec...
11782    logarithmic score information divergence appea...
11783    integer n present explicit formulation compact...
11784    online services emerge areas life voting proce...
11785    paper third series completes description radia...
11786    lowprofile patterned plasmonic surfaces synerg...
11787    hamiltonian dynamics applied study slipstackin...
11788    intense pulsed ion beams locally heat material...
11789    undertake systematic comparison implied volati...
11790    propose novel method directly learn stochastic...
11791    address problems underlying algorithmic questi...
11792    calculate model theoretic ranks painlev equati...
11793    review basic concepts possible pore structures...
11794    causal discovery broadens inference possibilit...
11795    paper combine concepts riemannian optimization...
11796    paper introduce combinatorial formula ekelandh...
11797    paper describe novel approach cocktail party p...
11798    normal conductor placed good contact supercond...
11799    study parameter estimation parabolic linear se...
11800    consider constrained assortment optimization p...
11801    obtained energy spectra cosmic ray b c mg fe n...
11802    advanced optimization algorithms newton method...
11803    propose novel formulation approximating reacha...
11804    prove continuous embedding allows us obtain bo...
11805    new cyber attack pattern advanced persistent t...
11806    autonomous driving getting lot attention last ...
11807    though deep neural networks achieved significa...
11808    issue effect interactions topological states c...
11809    academic engagement accelerate crowd commercia...
11810    present novel affinegradient based local binar...
11811    combine aspects notions finite decomposition c...
11812    consider steady nonlinear free surface flow pa...
11813    laxcaxmno lcmo studied framework density funct...
11814    analyze time evolution statistical distributio...
11815    era vast spectroscopic surveys focusing galact...
11816    using unfolding operators periodic homogenizat...
11817    sachdevyekitaev model argue entanglement entro...
11818    inspired work henn lannes schwartz unstable al...
11819    single star systems like solar system comets d...
11820    study twophoton laser excitation energy level ...
11821    boseeinstein condensate confined ring shaped l...
11822    deep learning networks achieved stateoftheart ...
11823    traditional web search forces developers leave...
11824    paper propose first homomorphic based proxy re...
11825    explore competition coupling vibrational elect...
11826    demonstrate electric fields arbitrary time pro...
11827    computation semantic similarity concepts impor...
11828    associated closed quantum subgroup gsubset un ...
11829    following show strong comparison principle fra...
11830    distribution metals intracluster medium encode...
11831    click rate ctr prediction important native adv...
11832    consider closest lattice point problem distrib...
11833    capacity quantum channel characterizes limits ...
11834    conformally variational riemannian invariants ...
11835    one promising approaches overcome uncertainty ...
11836    data poisoning attack machine learning models ...
11837    macroscopic models systems involving diffusion...
11838    monomolecular drug carriers based calixnarenes...
11839    visual surveillance systems necessary recogniz...
11840    study extension active learning learning algor...
11841    many digital functions studied literature eg s...
11842    psychological measurements two levels distingu...
11843    line bundles rational degree defined using per...
11844    linear structural equation models relate compo...
11845    increasing number twodimensional materials inc...
11846    paper present novel construction nonhomogeneou...
11847    tunka radio extension tunkarex antenna array c...
11848    calculations correlations rabi frequency hdelt...
11849    animal groups exhibit emergent properties cons...
11850    using bmc beamline advanced photon source aps ...
11851    randomized quasimonte carlo rqmc sampling brin...
11852    relational data usually highly incomplete prac...
11853    many parallel machines time lqcd applications ...
11854    describe purelymultiplicative method extending...
11855    daily perceptual experience driven different n...
11856    reduce data collection time deep learning robu...
11857    mechanical behaviors monolayer black phosphore...
11858    ward identities charge heat currents derived p...
11859    short electron pulses demonstrated trigger con...
11860    models simulate environments change response a...
11861    shockleyqueisser limit one fundamental results...
11862    communication present detailed study effect ch...
11863    model selection validation data essential step...
11864    motivation scratch assay standard experimental...
11865    robust analysis coauthorship networks based hi...
11866    introduction identification bloodbased metabol...
11867    article considers minimal nonzero indecomposab...
11868    let adelta weak multiplier hopf algebra pair n...
11869    recent advances bandit tools techniques sequen...
11870    modern reinforcement learning algorithms reach...
11871    antiferromagnetic ising chain transverse longi...
11872    give rigorous analysis statistical behavior gr...
11873    task multistep ahead prediction language model...
11874    common approach designing scalable algorithms ...
11875    paper describe simode separable integral match...
11876    prove following generalization classical lichn...
11877    paper introduce online service delay problem p...
11878    influence superheat treatment microstructure d...
11879    paper presents refinements executioncachememor...
11880    within standard framework quasisteady flight p...
11881    paper interested problem learning overcomplete...
11882    study categories governing infinity wheeled pr...
11883    rakingratio method statistical computational m...
11884    predicting efficacy drug given individual usin...
11885    vagueness something everyone familiar fact peo...
11886    present unique application oxram devices cmos ...
11887    investigate gooshanchen gh shifts reflected tr...
11888    discuss potential advantages calculating effec...
11889    signed network network link associated positiv...
11890    fastica algorithm popular dimension reduction ...
11891    emerging single elemental layered material low...
11892    following wigert great number authors includin...
11893    article extends bimetric formulations massive ...
11894    analyze dynamics online algorithm independent ...
11895    integrated photonics leading platform quantum ...
11896    comparing average citation impact research gro...
11897    generalizations classical theta functions prop...
11898    challenge molecular quantum dynamics qd calcul...
11899    paper consider problem pursuitevasion using mu...
11900    theory secondorder nonlinear elliptic paraboli...
11901    purpose study investigate structure evolution ...
11902    alternative expressions calculating oblate sph...
11903    learning cooperative policies multiagent syste...
11904    ablation solid tin surfaces nanometerwavelengt...
11905    precise local measurements h rely observations...
11906    deep learning thrives large neural networks la...
11907    conventional secret sharing cheaters submit po...
11908    paper presents center mass com based manipulat...
11909    present paper continuum model introduced fluid...
11910    convergence speed stochastic gradient descent ...
11911    paper studies problem inverse visual path plan...
11912    reconsider minimization compliance two dimensi...
11913    help planning intervehicular communication net...
11914    many different volumes could produce xray imag...
11915    consider minimization stochastic functionals c...
11916    performed highresolution powder xray diffracti...
11917    conditional generators learn data distribution...
11918    need develop models predict motion microrobots...
11919    employ hybrid approach determining anomalous d...
11920    study impact thermal inflation formation cosmo...
11921    prove space dominantnonconstant holomorphic ma...
11922    time spent leisure minor research question ack...
11923    paper interested problem image segmentation gi...
11924    anisotropy friction force proved important fac...
11925    combinatorial auctions designer must decide al...
11926    adaptability convolutional neural network cnn ...
11927    ylinked twosex branching process mutations bli...
11928    work propose effective lowenergy theory large ...
11929    selfcontained method obtaining effective theor...
11930    cell shape important biomarker previously exte...
11931    explore use evolution strategies es class blac...
11932    passive radiofrequency identification rfid sys...
11933    present new method numerical hydrodynamics use...
11934    effective approach nonparallel voice conversio...
11935    exchange hole principle constituent density fu...
11936    investigate environmental quenching galaxies e...
11937    determine bpmodule structure mod higher filtra...
11938    consider problem learning functions computing ...
11939    deep reinforcement learning methods attain sup...
11940    school bus planning usually divided routing sc...
11941    work proivied new simpler proof global diffeom...
11942    deep generative models successfully used learn...
11943    present brief review discrete structures finit...
11944    article based series lectures toric varieties ...
11945    feedback control actively dissipates uncertain...
11946    superposition temporal point processes studied...
11947    since invention wordvec skipgram model signifi...
11948    development big data cloud data sharing privac...
11949    level consensus property preferenceprofile int...
11950    sparsely spaced highly permeable fractures gra...
11951    purpose paper investigate asymptotic behavior ...
11952    address problem prescribing optimal decision f...
11953    paper show variant colorful tverbergs theorem ...
11954    propose two classes dynamic versions classical...
11955    dense subgraph discovery key primitive many gr...
11956    convolutional neural networks provide visual f...
11957    microrobots potential impact many areas micros...
11958    research investigates implementation mechanism...
11959    dual crises subprime mortgage crisis global fi...
11960    paper propose novel neural language modelling ...
11961    study sampling optimization space measures foc...
11962    study laser cooling mg atoms dipole optical tr...
11963    problem feature disentanglement explored liter...
11964    consider longterm collisional dynamical evolut...
11965    learning individuallevel causal effects observ...
11966    article gives overview gammaray bursts grbs re...
11967    paper study class discretetime meanfield games...
11968    problem glasner known glasners problem asks wh...
11969    many different methods train deep generative m...
11970    paper study online learning algorithm without ...
11971    swelling media eg gels tumors usually describe...
11972    paper generalize definition search trees st en...
11973    v peg alias hs subdwarf b sdb pulsating star s...
11974    study convergence inexact version classical kr...
11975    ultrasound diagnosis routinely used obstetrics...
11976    study quantum phase transitions nickel pnctide...
11977    consider defocusing nonlinear wave equations n...
11978    fundamental characteristic computer networks t...
11979    present parallel hierarchical solver general s...
11980    present two new largescale datasets aimed eval...
11981    robotic systems moved factory work cells human...
11982    important task developing verification system ...
11983    demonstrate first time efficient photonicbased...
11984    paper analyzes simple game n players fix mean ...
11985    paper tackle accurate consistent structure mot...
11986    volume contains proceedings mars second worksh...
11987    electron density highly crystalline thin films...
11988    deep generative models variational autoencoder...
11989    develop new optimization methodology planning ...
11990    detailed development principal component proxy...
11991    repulsive fermi hubbard model square lattice r...
11992    key phase bridge design process selection stru...
11993    automatic questionanswering classical problem ...
11994    changes network structure substantially affect...
11995    show evolution twocomponent particles governed...
11996    present search optical bursts repeating fast r...
11997    report results de haasvan alphen dhva measurem...
11998    important yet challenging problem understandin...
11999    paper study classic problem fairly allocating ...
12000    independent component analysis ica decomposes ...
12001    new horizons spacecrafts nominal trajectory cr...
12002    maintenance important activity industry perfor...
12003    stochastic gradient methods workhorse algorith...
12004    paper proposes general framework structurepres...
12005    given finitely aligned kgraph lambda let lambd...
12006    phenomenon hardly found accompanied physical p...
12007    arrays integers often compressed search engine...
12008    study kondo physics quantum magnetic impurity ...
12009    present note study waldschmidt constants stanl...
12010    past two decades main focus research firstorde...
12011    paper generalize three identification recursiv...
12012    although number semilinear stochastic wave equ...
12013    consider problem learning lowrank matrix const...
12014    paper establishes first performance guarantees...
12015    paper introduce new combinatorial curvature tr...
12016    connectionist temporal classification ctc wide...
12017    buhrman showed efficient communication protoco...
12018    propose novel diminishing learning rate scheme...
12019    wasserstein metric important measure distance ...
12020    shown unit ball mathbb cn complex manifold uni...
12021    article recent progress mlrandomness respect c...
12022    red supergiants rsgs predicted end lives type ...
12023    symmetry algebra real elliptic liouville equat...
12024    due accuracy generality monte carlo radiative ...
12025    present theoretical study finitetemperature ko...
12026    chiral optical tamm state cots special localiz...
12027    paper aim show mean value inequalities foxwrig...
12028    research objects ros semantically enhanced agg...
12029    work introduces approach flat textureless obje...
12030    pair creation cosmic infrared background subse...
12031    knowledge transfer kt techniques tackle proble...
12032    article attempt generalize riemanns bilinear r...
12033    applied training deep neural networks stochast...
12034    paper studies detection bird calls audio segme...
12035    paper consider bayesian framework making infer...
12036    analyze emission spectrum hot jupiter waspb us...
12037    propose exploration method incorporates lookah...
12038    singleimagebased view generation sivg importan...
12039    applications many disciplines traveling salesm...
12040    concept dynamical compensation recently introd...
12041    mev cw rfq installed commissioned fermilabs te...
12042    softmax standard final layer used neural nets ...
12043    note recall kummers fourier series expansion p...
12044    study extensions polytopes combinatorial optim...
12045    devs popular formalism modelling complex dynam...
12046    several active areas research novel energy sto...
12047    machine recognition crystallization outcomes m...
12048    research investigated potential improving peer...
12049    magnetotransport measurements combination mole...
12050    science education crucial issue longterm impac...
12051    investigated effect outofplane crumpling mecha...
12052    solutions partial differential equations pdes ...
12053    four giant planets solar system feature zonal ...
12054    semantic segmentation like fields computer vis...
12055    photometric stereo methods seek reconstruct sh...
12056    introduce web strongly correlated interacting ...
12057    rainfall ensemble forecasts skillful low preci...
12058    basic problem information theory following let...
12059    computable model theory modal logic initiated ...
12060    deeptingle text prediction classification syst...
12061    ability physical layer relay caching increase ...
12062    theoretical description thermodynamics water c...
12063    present bounds finite sample error sequential ...
12064    butanol received significant research attentio...
12065    mutual information mi useful tool recognition ...
12066    bayesian online changepoint detection bocpd ad...
12067    let mathcalbd unital calgebra generated elemen...
12068    candecompparafac cp decomposition leading meth...
12069    potential flow around circular cylinder common...
12070    bilateral trade fundamental economic scenario ...
12071    report la cu nmr investigation successive char...
12072    field failures failures caused faults escape t...
12073    crowdsourcing successfully applied many domain...
12074    study class onedimensional classical fluids pe...
12075    letter propose algorithm recovery sparse low r...
12076    contributions discusses simulation magnetother...
12077    wide adoption multicommunity setting many popu...
12078    paper introduce investigate novel class analyt...
12079    propose adaptive estimator stationary distribu...
12080    describe highperformance implementation lattic...
12081    multimodal web elements text images associated...
12082    investigate lightcurve properties sample spect...
12083    airbnb online marketplace accommodations exper...
12084    dynamic race detection problem determining obs...
12085    process exploring exploiting oil gas og genera...
12086    study photonic analog chiral magnetic vortical...
12087    effects pressure crystal structure three known...
12088    link theory optimal transportation theory inte...
12089    paper studies intelligent ultimate technique h...
12090    book introduces temporal type theory first kin...
12091    provide direct construction poletsky discs via...
12092    drsubmodular continuous functions important ob...
12093    symmetric matrix robinsonian rows columns simu...
12094    detection gravity plays fundamental role growt...
12095    markov chain monte carlo mcmc methods gibbs sa...
12096    hurricanes cyclones circulating defined center...
12097    stochastic optimal control problem driven abst...
12098    magnetic induction first proposed planetary he...
12099    investigate possible signatures halo assembly ...
12100    present vortex image processing vip library py...
12101    http h new standard web communications already...
12102    let cal cn extremal copositive matrix unit dia...
12103    propose method dualarm manipulation rigid obje...
12104    develop acbiased shift register introduced pre...
12105    emerging era personalized medicine relies medi...
12106    costs human violence attracted great deal atte...
12107    give examples existence solutions geometric pd...
12108    present accurate mass thermodynamic profiles s...
12109    article study linearized anisotropic calderon ...
12110    prove teichmller space surfaces given boundary...
12111    decision making multiagent systems mas great c...
12112    discuss several classes integrable floquet sys...
12113    simple fact subgroup generated subset abelian ...
12114    transmission lines vital components power syst...
12115    eigenstructure discrete fourier transform dft ...
12116    paper introduces new urban point cloud dataset...
12117    various defense schemes determine presence att...
12118    black hole xray transients show variety state ...
12119    define generalization free lie algebra based n...
12120    paper develop generalized likelihood ratio sca...
12121    paper deal acceleration convergence infinite s...
12122    diffusion magnetic resonance imaging dmri curr...
12123    apelinergic system important player regulation...
12124    happens general closed oscillating universes g...
12125    widespread use smartphones gives rise new secu...
12126    algorithms lattice fermions package provides g...
12127    disruptive technology blockchain particularly ...
12128    analytically construct infinite number trapped...
12129    tensor factorization models offer effective ap...
12130    work first examine transverse longitudinal flu...
12131    paper describes qcris machine translation syst...
12132    consider one important problems directional st...
12133    arkin et al initiated systematic study complex...
12134    two banach algebras b tlau product atimest b r...
12135    accurately modeling contact behaviors realworl...
12136    retailer management newsvendor problem widely ...
12137    analyzing temporal behavior nodes timevarying ...
12138    paper present novel cache design based multile...
12139    let x locally compact abelian group character ...
12140    ultrafast perturbations offer unique tool mani...
12141    recent years phenomenon online misinformation ...
12142    conceptual design quantum blockchain proposed ...
12143    recent work encoderdecoder models sequencetose...
12144    capacity neural network absorb information lim...
12145    paper study principal components analysis regi...
12146    metalearning agent extracts knowledge observed...
12147    present optical flow estimation approach opera...
12148    propose rankk variant classical frankwolfe alg...
12149    manuscript present exponential inequalities sp...
12150    consider selfavoiding lattice polygons hypercu...
12151    temporal difference learning residual gradient...
12152    present analytical studies bosonfermion mixtur...
12153    existing works extracting navigation objects w...
12154    present optimized source galaxy selection sche...
12155    main result paper examples stochastic partial ...
12156    optimization highdimensional blackbox function...
12157    core understanding dynamical systems ability m...
12158    propose method semisupervised training structu...
12159    introduce refined sobolev scale vector bundle ...
12160    work propose goaldriven collaborative task con...
12161    paper introduce evaluate propedeutica novel me...
12162    organisms use hairlike cilia beat metachronal ...
12163    multiserver distributed queueing systems acces...
12164    convolutional neural networks cnns stateofthea...
12165    recently repeating fast radio burst frb confir...
12166    vertex edge graph critical deletion reduces ch...
12167    prove transverse weitzenbck identities horizon...
12168    work present adaptive newtontype method solve ...
12169    fedorov discovered convex domain form lattice ...
12170    spectrum l pseudounitary group upq assume pge ...
12171    objective predict patientspecific vitals deeme...
12172    one key challenges visual perception extract a...
12173    discuss channel surfaces context lie sphere ge...
12174    paper presents acceleration framework packing ...
12175    obtain lp regularity bergman projection reinha...
12176    present simple encoding unlabeled noncrossing ...
12177    paper investigate numerical approximation anal...
12178    according result ehresmann torsions integral h...
12179    many signal processing algorithms operate brea...
12180    study hyperplane arrangements associated via m...
12181    report extension keras model called ctcmodel p...
12182    large user base relies software updates provid...
12183    analysis telemetry data common animal ecologic...
12184    motion planning key tool allows robots navigat...
12185    repulsive coulomb interaction electrons differ...
12186    paper improved thermal lattice boltzmann lb mo...
12187    interactions effect aliasing among fundamental...
12188    importanceweighting popular wellresearched tec...
12189    group mobile agents given task explore edgewei...
12190    propose sourcechannel duality exponential regi...
12191    provide new version delta theorem takes accoun...
12192    interior tomography regionofinterest roi imagi...
12193    paper present new algorithm parallel monte car...
12194    extreme nanowires ens represent ultimate class...
12195    advent miniaturized biologging devices provide...
12196    study image classification retrieval performan...
12197    understanding emergence biological structures ...
12198    online experiments fundamental component devel...
12199    present vri spectrophotometry nearearth astero...
12200    paper discuss stochastic comparisons parallel ...
12201    mendelian randomization mr method exploiting g...
12202    study improved approximations distribution lar...
12203    paper devoted investigation following function...
12204    describe dimensions low hochschild cohomology ...
12205    fracton models collection exotic gapped lattic...
12206    topic modeling enables exploration compact rep...
12207    let mathcalvplambda collection functions f def...
12208    loss functions deep neural networks complex ge...
12209    urban areas larger connected populations offer...
12210    investigate homological subsets prime spectrum...
12211    phenomenon selfsynchronization populations osc...
12212    study causal waveform estimation tracking time...
12213    report applied integrated gradients explaining...
12214    fast detection terahertz radiation great impor...
12215    investigate lowdimensional structure determini...
12216    show unified secondorder scheme constructing s...
12217    shown via theory simulation resonant frequency...
12218    paper presents novel transformationproximal bu...
12219    present dual subspace ascent algorithm support...
12220    awake protondriven plasma wakefield accelerati...
12221    lieu abstract first paragraph species remotely...
12222    purpose article study role gdels functional in...
12223    proved rgnier rsler number key comparisons req...
12224    work present method compute kantorovich distan...
12225    elastic dissipation radiation towards substrat...
12226    proceedings application fuzzy support vector m...
12227    cylindrical couette flow subject main focus lo...
12228    understanding spatial extent extreme precipita...
12229    present study connection brightest cluster gal...
12230    propose novel architecture kshot classificatio...
12231    study pairs projections pifchiif qjf leftchij ...
12232    paper concerned following fractional schrdinge...
12233    social media expose millions users every day i...
12234    discrete statistical models supported labelled...
12235    boltzmann machines physics informed generative...
12236    graph signal processing gsp promising framewor...
12237    compare various notions weak subsolutions dege...
12238    efficient assessment convolved hidden markov m...
12239    detailed numerical analyses orbital motion tes...
12240    bottomup topdown well lowlevel highlevel facto...
12241    sharp range lpestimates class hrmandertype osc...
12242    hasimoto map various dynamical systems mapped ...
12243    deduplication finds removes longrange data dup...
12244    deep neural networks take loose inspiration ne...
12245    among milky way satellites discovered past thr...
12246    improve best known upper bound length shortest...
12247    graphs fundamental abstraction modeling relati...
12248    characteristic classes spacetime manifolds dis...
12249    describe high resolution observations goes bcl...
12250    unraveling bacterial strategies spatial explor...
12251    behavioral annotation using signal processing ...
12252    local properties fundamental group pathconnect...
12253    present adaptive strategies antenna selection ...
12254    characterize variation photometric response da...
12255    selfhealing polymers crosslinked solely revers...
12256    paper study syk model syklike tensor model glo...
12257    common assumption thetaori c dominant ionizing...
12258    large majority high energy sources detected fe...
12259    one main computational scientific challenges m...
12260    propagation charged cosmic rays galactic envir...
12261    space khler potentials compact khler manifold ...
12262    echo state networks powerful recurrent neural ...
12263    paper prove gaussian structural equation model...
12264    disruptive power blockchain technologies repre...
12265    investigate limiting behavior solutions nonhom...
12266    paper estimate fidelity stabilizer css codes f...
12267    crossvalidation widely used selecting among fa...
12268    work formulate problem image captioning multim...
12269    mobile gaming emerged promising market billion...
12270    seminal work morgan rubin considers rerandomiz...
12271    present approach agents learn representations ...
12272    store information extremely highdensity datara...
12273    paper morgan type uncertainty principle unique...
12274    early researchers careers difficult assess goo...
12275    paper consider use deep neural networks contex...
12276    paper address problem crossview image geolocal...
12277    recent years deep learning based artificial ne...
12278    demonstrate autoparametric excitation two dist...
12279    present communityled assessment solar system i...
12280    unsupervised dependency parsing aims learn dep...
12281    report results broadband mum nearinfrared spec...
12282    give survey results covering last years concer...
12283    real time evolution classical gauge fields rel...
12284    dermoscopy image detection stays tough task du...
12285    current dominant paradigm imitation learning r...
12286    paper extend complement previous works propaga...
12287    let f nonarchimedan local field g connected re...
12288    accurate rates energydegenerate lchanging coll...
12289    study theoretically usefulness spin bose conde...
12290    magnetic insulator yttrium iron garnet grown e...
12291    characterize multi tier network classical macr...
12292    class nonlinear schrdinger equations involving...
12293    matrix completion models among common formulat...
12294    paper concerned twoperson dynamic zerosum game...
12295    context dissipative systems show quantum chaot...
12296    recent paper introduced fuzzy bayesian learnin...
12297    excitement convergence tweets specific topics ...
12298    monte carlo method broad class computational a...
12299    address problem bootstrapping language acquisi...
12300    article presents parallel implementation coupl...
12301    tiev autonomous driving platform implemented t...
12302    propose novel decoding approach neural machine...
12303    classical halpernluchli theorem states finite ...
12304    conduct depth study performance deep learning ...
12305    identify conditional parity general notion non...
12306    consider caching cellular networks base statio...
12307    paper consider numerical approximations solvin...
12308    machinelearning techniques widely used securit...
12309    sharpinterface limits phasefield model general...
12310    first part notes provides new characterization...
12311    characteristic cycles leading term cycles irre...
12312    propose robust implementation nerlovearrow mod...
12313    statistical relational models recently probabi...
12314    theoretically investigate spinorbit coupled sw...
12315    celebrated auslanderreiten conjecture vanishin...
12316    explore temperature effects superconducting ph...
12317    time series frequently case neuroscience rarel...
12318    study automorphism group halls universal local...
12319    linear multilinear valuation finite abstract s...
12320    evolution structure biology driven accretion c...
12321    let f bandlimited function lmathbbr fix suppos...
12322    distributed word representations widely used m...
12323    present new oblivious walking strategy convex ...
12324    energy statistics proposed szkely inspired new...
12325    finitesupport constraint parameter space used ...
12326    neural circuits retina divide incoming visual ...
12327    develop approach unsupervised learning associa...
12328    paper prove dichotomy conjecture complexity no...
12329    report experimental investigation effect finit...
12330    modelbased approach forecasting chaotic dynami...
12331    heavy metalferromagnetic layers perpendicular ...
12332    recently separated fragment sf firstorder logi...
12333    survey theory poisson traces zeroth poisson ho...
12334    report results nonequilibrium transport measur...
12335    performing time series analysis continuous dat...
12336    frequency responses krbne comagnetometer magne...
12337    coded caching scheme technique reduce load pea...
12338    previously published admissibility conditions ...
12339    grading embedded systems courses typically req...
12340    let p prime number article study restriction m...
12341    group elements alkali metals li na k rb cs exa...
12342    identifying significant subsets genes gene sha...
12343    new modelindependent compact representations i...
12344    geosciences field great societal relevance req...
12345    well known affine matrix rank minimization pro...
12346    entropy power inequality epi brascamplieb ineq...
12347    risk ratio popular tool summarizing relationsh...
12348    technical skill surgeons directly impacts pati...
12349    develop method control discretetime systems co...
12350    aim paper investigate stability prandtl bounda...
12351    paper investigates effects price limit change ...
12352    recent research demonstrated brittleness machi...
12353    uniformity testing general identity testing we...
12354    known connected sums positive torus knots conc...
12355    study flows calgebras rokhlin property show ev...
12356    recently reported enhanced superconductivity r...
12357    introduce new gametheoretic semantics gts moda...
12358    report thermodynamic magnetization muon spin r...
12359    solid arguments sustain digital currencies fut...
12360    describe main scientific developments lead lig...
12361    obtain sufficient necessary condition finite g...
12362    fate exotic spin liquid states fractionalized ...
12363    purpose goal study show advantage collaborativ...
12364    lexical features major source information stat...
12365    tourism industry significant impact worlds eco...
12366    covariate shift classification problems princi...
12367    relational probabilistic models challenge aggr...
12368    entrepreneurial scene suffers sick venture cap...
12369    used surrogate objective maximum likelihood es...
12370    study annealing stability bottompinned perpend...
12371    eigenoptions eos recently introduced promising...
12372    study regularity properties locally stationary...
12373    understanding patterns demand fundamental flee...
12374    realization highperformance smallfootprint onc...
12375    study concentrates advancing mathematical comp...
12376    diving induces large pressures water entry acc...
12377    synthetic data proved increasingly useful trai...
12378    introduce solvable model driven fermions eluci...
12379    research data alliance international organizat...
12380    paper reports new results fe mssbauer measurem...
12381    show zeroth coefficient cables homfly polynomi...
12382    daya bay experiment consists eight identically...
12383    ordinary least square ols estimation linear re...
12384    riemann hypothesis improve error term asymptot...
12385    extragalactic cosmic ray populations important...
12386    widely accepted electric field alone fundament...
12387    report sigma detection faint object flux mjy v...
12388    exhibit equivalence modeltheoretic framework u...
12389    propose new type qdiffusive heat equation nons...
12390    prove strongly pseudoconvex domain dsubsetmath...
12391    define ring r geometric objects g generated fi...
12392    prove representation fundamental group quasipr...
12393    super extension wadati konno ichikawa scheme i...
12394    introduce combinatorial criterion verifying wh...
12395    deep neural networks dnns transform stimuli ac...
12396    even though evolution isolated quantum system ...
12397    tackle issue classifier combinations observati...
12398    consider problem scheduling serverless computi...
12399    degeneracy loci morphisms vector bundles used ...
12400    homology braid groups artin groups related stu...
12401    study presents smoothed particle hydrodynamics...
12402    ionization relativistically intense short lase...
12403    brane construction integrable lattice model pr...
12404    measuring corporate default risk broadly impor...
12405    present results ks xmmnewton observation galax...
12406    paper introduce rational tau invariant rationa...
12407    consider lattice mathcall subsets multidimensi...
12408    paper studies different signaling techniques c...
12409    traveling wave solutions dimensional zoomeron ...
12410    paper continues research started citelw framew...
12411    recently technique called layerwise relevance ...
12412    propose new family coherence monotones named e...
12413    present passivitybased wholebody control appro...
12414    paper present two main results first one conje...
12415    consider problem multiobjective maximization m...
12416    argued many problems ambiguities standard cosm...
12417    study ferromagnetic layer thickness dependence...
12418    tetragonal photonic crystal composed highindex...
12419    pullbased development process become prevalent...
12420    given success gated recurrent unit natural que...
12421    propose new learning rank algorithm named weig...
12422    representing word cooccurrences words context ...
12423    let compact manifold gammapim work thurston cu...
12424    study multifrequency quasiperiodic schrdinger ...
12425    study model spaces sense hairer stochastic par...
12426    watercovered rocky planets inner habitable zon...
12427    context fitness coaching rehabilitation purpos...
12428    temporal resolution visual information process...
12429    find explicit formulas radii locations circles...
12430    cryptographic currency bitcoin transactions re...
12431    paper presents framework controlled emergency ...
12432    early time regime kardarparisizhang kpz equati...
12433    subject article relationship modern cosmology ...
12434    temporal action proposal tap generation import...
12435    real world phenomena sunlight distribution for...
12436    given smooth compact manifold introduce open c...
12437    paper study possibility inferring early warnin...
12438    neuronal activity brain generates synchronous ...
12439    construct point transformation two integrable ...
12440    paper explores improvements prediction accurac...
12441    propose optimization approach determining hard...
12442    goal thesis implement tool given digital audio...
12443    translational motion neurotransmitter receptor...
12444    show reduct zariski structure algebraic curve ...
12445    statisticians made great progress creating met...
12446    wide range learning tasks require human input ...
12447    work present numerical method based sparse gri...
12448    problem textitvisual metamerism defined findin...
12449    sheep pox highly transmissible disease cause s...
12450    describe method generating minimal hard prime ...
12451    language change involves competition alternati...
12452    user modeling plays important role delivering ...
12453    testing regime switching regime switching prob...
12454    let r commutative noetherian ring mathfrak mat...
12455    industrial control systems devices programmabl...
12456    nonnegative matrix factorization nmf dimension...
12457    border crossing delays new york state southern...
12458    scientific knowledge constantly subject variet...
12459    central pattern generators cpgs appear evolved...
12460    investigate extremely luminous dusty galaxies ...
12461    least squares ls estimator best linear unbiase...
12462    performing high level cognitive tasks requires...
12463    facility based nextgeneration highflux dd neut...
12464    airborne lidar point cloud representing forest...
12465    temperature coefficients directions nagoya muo...
12466    present generalpurpose method train markov cha...
12467    binary sidelnikovlempelcohneastman sequences s...
12468    embeddings knowledge graphs received significa...
12469    deep convolutional networks become popular too...
12470    fitting stochastic kinetic models represented ...
12471    imagetoimage translation class vision graphics...
12472    consider challenging problem statistical infer...
12473    visual tasks relationship unrelated instance c...
12474    potential failure energy equality solution u e...
12475    inference spacetime varying signals graphs eme...
12476    sequel earlier papers three authors obtain new...
12477    paper introduces probabilistic framework kshot...
12478    paper describes method nonlinear wavelet thres...
12479    mathbbz topological phase quantum dimer model ...
12480    propose lbfgs optimization algorithm riemannia...
12481    present new markov chain monte carlo algorithm...
12482    present crystal structure magnetic properties ...
12483    construct extended oriented epsilondimensional...
12484    paper presents new generator chaotic bit seque...
12485    hawc gamma ray observatory consists water cher...
12486    optical music recognition omr important techno...
12487    cable model widely used several fields science...
12488    consider conditionalmean hedging fractional bl...
12489    say finite metric space x embedded almost isom...
12490    aim work establish two recently published proj...
12491    popular adjusted rand index ari extended task ...
12492    study size external path length random tries s...
12493    output statistical parametric speech synthesis...
12494    meshfree solution schemes incompressible navie...
12495    propose development analytic hierarchy process...
12496    blooming availability traces social biological...
12497    advances artificial intelligence renewed inter...
12498    keplerian distribution velocities observed rot...
12499    recurrent neural networks like long shortterm ...
12500    trackbeforedetect tbd powerful approach consis...
12501    given holomorphic principal bundle q longright...
12502    propose study equivariance deep neural network...
12503    lowdimensional wide bandgap semiconductors ope...
12504    recent developments autonomous vehicle av tech...
12505    identify peak valley structures exact exchange...
12506    given two independent sets j graph g imagine t...
12507    work studies entitywise topical behavior massi...
12508    exponential scaling wave function fundamental ...
12509    show semisimple synchronizing automaton n stat...
12510    recent developments within memoryaugmented neu...
12511    present analytical numerical studies models su...
12512    study optimal design electricity contracts amo...
12513    consider minimization objective function given...
12514    study problem learning overcomplete hmmsthose ...
12515    atomistic rigid lattice kinetic monte carlo ef...
12516    paper aims finding acyclic graphs given set co...
12517    paper presents robust matrix elastic net based...
12518    visual question answering vqa received lot att...
12519    wheeled planetary rovers mars exploration rove...
12520    explore sequential decision making problem goa...
12521    one goals g wireless systems stated ngmn allia...
12522    consider class evolution equations describe ps...
12523    deep convolutional neural networks cnns becomi...
12524    paper study moments central values hecke lfunc...
12525    graphs commonly used construct representing re...
12526    paper addresses problem decentralized tubebase...
12527    discuss understanding geometry circle ancient ...
12528    paper use refined approximations chebyshevs va...
12529    electrical forces background interactions occu...
12530    bone tissue mechanical properties trabecular m...
12531    temporal pattern mining tpm problem mining pre...
12532    propose poweralert efficient external integrit...
12533    open question whether linear extension complex...
12534    work explored building automatic speech recogn...
12535    fallback authentication used retrieve forgotte...
12536    web archiving services play increasingly impor...
12537    biclustering techniques widely used identify h...
12538    deep learning methods achieve stateoftheart pe...
12539    letter studies joint transmit beamforming ante...
12540    propose local segmentation multiple sequences ...
12541    investigate effect annealing temperature cryst...
12542    article discusses relationship emergence reduc...
12543    paper optimized efficient vlsi architecture pi...
12544    give rather simple answers two longstanding qu...
12545    present general framework coupled compound poi...
12546    global partial synchronization two distinctive...
12547    goals results pinpoint shots pivotal decision ...
12548    report introduces investigates family metrics ...
12549    surface plasmon polariton hyberbolic dispersio...
12550    investigate ramifications legendrian satellite...
12551    releasing full data records one challenging pr...
12552    automatic testing widely adopted technique imp...
12553    autonomous vehicles avs road safely efficientl...
12554    explore feasibility using fastslow asymptotic ...
12555    online sports gambling industry employs teams ...
12556    paper based complete classification evolutiona...
12557    paper show deepsubmicron fpga modified operate...
12558    propose new algorithm finite sum optimization ...
12559    abridged typical giantimpact scenario moon for...
12560    learning regression function using censored in...
12561    degree distribution one fundamental properties...
12562    method proposed generate optimal fit number co...
12563    consider problem optimizing heat transport inc...
12564    consider wave equation boundary condition memo...
12565    present approach lightweight datatypegeneric p...
12566    many scientific engineering challenges ranging...
12567    paper proves every finite volume hyperbolic ma...
12568    cospark matrix cardinality sparsest vector col...
12569    neural networks based vocoders typically waven...
12570    last years contributions general public scient...
12571    bounded smooth domains omegasubsetmathbbrn nin...
12572    paper deals asymptotics multipleset linear can...
12573    rapid development deep learning family machine...
12574    wireless sensor network wsn data manipulation ...
12575    coherent optical response nm nm thick zno epit...
12576    present luminosity function z quasars based hy...
12577    dawn fourth industrial revolution industry cre...
12578    given p independent normal populations conside...
12579    consider problem detecting deformation symmetr...
12580    propose high signaltonoise extended depthrange...
12581    oblivious computation one free direct indirect...
12582    inverse compton scattering ics unique mechanis...
12583    yarkovsky effect thermal process acting upon o...
12584    short note improve best date bound godbersens ...
12585    extend global existence result derivative nls ...
12586    examine possible spectral distortion cosmic mi...
12587    informationally efficient financial markets op...
12588    present new method combines alchemical transfo...
12589    largescale hierarchical classification hc invo...
12590    present enumeration orientablyregular maps aut...
12591    fitting machine learning models lowdata limit ...
12592    plancherel decomposition l pseudoriemannian sy...
12593    construct absolutely normal number whose conti...
12594    enticing users exploring open data remains imp...
12595    reciprocity fundamental principle governing va...
12596    photoacoustic computed tomography pact emergin...
12597    explore extent one may hope preserve geometric...
12598    concentration result quadratic form independen...
12599    flexibility short dna chains investigated via ...
12600    picard code numerical solution galactic cosmic...
12601    propose simple general variant standard repara...
12602    complete set maxwells hydrodynamic equations c...
12603    enhancement detection elongated structures noi...
12604    life viewed localized chemical system sits bas...
12605    functional data analysis nonlinear manifolds d...
12606    characterize fractional dehn twist coefficient...
12607    rascal highlevel transformation language aims ...
12608    regular ordered semigroup called right inverse...
12609    twodimensional signed small ball inequality st...
12610    problem groups prime power order vol berkovich...
12611    diffusion processes driven fractional brownian...
12612    greenbergerhornezeilinger ghz argument provide...
12613    define study global okounkov moment cone proje...
12614    paper perform formal asymptotic analysis kinet...
12615    dynamically crosslinked semiflexible biopolyme...
12616    present novel view nonlinear manifold learning...
12617    malaysian airlines flight mh veered course une...
12618    investigate addition symmetry temporal context...
12619    study deep recurrent neural networks rnns part...
12620    computational topology area revisits topologic...
12621    work formulated realworld problem related sewe...
12622    paper consider abelian varieties function fiel...
12623    modeling longitudinal data often requires diff...
12624    show patterns abelian sandpile stable proof co...
12625    propose new indexing structure parameterized s...
12626    traction force kite used drive cyclic motion e...
12627    prove convergence results expanding curvature ...
12628    finiteprecision arithmetic computations face i...
12629    report synthesis structural characterisation m...
12630    universal properties entangled manybody states...
12631    answer two questions raised bryant francis ste...
12632    degree splitting problem requires coloring edg...
12633    let e arbitrary subset mathbbrn necessarily bo...
12634    availability explainable deep learning model a...
12635    generalization properties gaussian processes d...
12636    propose new approach topological recursion eyn...
12637    exploiting theory state space models derive ex...
12638    advances technology provided ways monitor meas...
12639    geometrical aspects perfect fluid spacetime de...
12640    heart disease one leading causes mortality wor...
12641    show article holomorphic vector bundle nonnega...
12642    graph processing becoming increasingly prevale...
12643    paper prove classification results fourdimensi...
12644    investigated ingap bound states igbs induced s...
12645    true best neural network necessarily one brain...
12646    suggest method calculate hyperfine anomaly man...
12647    investigate elliptic integrable model introduc...
12648    apply moderatehighenergy inelastic neutron sca...
12649    investigate relation quadrics christoffel dual...
12650    greedy algorithms widely used problems machine...
12651    study multiarmed bandit problem multiple plays...
12652    analyze dynamics inflationary models coupling ...
12653    diffusion tensor imaging dti effective tool an...
12654    increasing popularity social networking servic...
12655    manual segmentation left ventricle lv tedious ...
12656    stabilizing defects liquidcrystal systems cruc...
12657    report heterogeneous nucleation catalystfree i...
12658    quantum ising model random couplings random tr...
12659    femtosecond laser writing applied form bragg g...
12660    introduce form new minor release symbolic mani...
12661    clinical electroencephalographic eeg data vari...
12662    paper presents first emphconcurrencyoptimal im...
12663    information transmission human brain fundament...
12664    eventdriven programming frameworks android bas...
12665    stress applied flat face apex prismatic piezoe...
12666    compact substructure expected arise starless c...
12667    comprehensive understanding worlds energy effi...
12668    group law said detectable power subgroups copr...
12669    classifiers deployed real world operate dynami...
12670    due lack enough generalization statespace comm...
12671    show bicrossproduct model csublacktrianglerigh...
12672    many social systems groups individuals find re...
12673    entity resolution er task identifying records ...
12674    tree adjoining grammars tags provide ample too...
12675    discuss maltsev conditions consist one linear ...
12676    social media datasets especially twitter tweet...
12677    due burdensome data requirements learning demo...
12678    paper propose simple variant original stochast...
12679    central problem understanding brain mind neura...
12680    paper investigate whether text community quest...
12681    planetary exploration missions mars rovers com...
12682    address mbestarm identification problem multia...
12683    amachine learning framework developed estimate...
12684    paper propose novel approach manage throughput...
12685    last decades sociologists trying explain human...
12686    across variety scientific disciplines sparse i...
12687    use insights epidemiology namely sir model stu...
12688    initiate study fundamental combinatorial probl...
12689    report large array observations mm mm cm towar...
12690    motion capture widelyused technology robotics ...
12691    varphi psi two continuous realvalued functions...
12692    identity stated kimura proved ruehr kimura oth...
12693    eigendeomposition nearestneighbor nn graph lap...
12694    astronomy light curves sparse gappy heterosced...
12695    brillouin processes couple light sound optomec...
12696    study present swift linked data miner interrup...
12697    paper discuss machine learning could used prod...
12698    important difficult challenge building computa...
12699    optimization algorithms leverage gradient cova...
12700    linear momentum angular momentum virtual photo...
12701    study eigenvalues semiclassical witten laplaci...
12702    delaycoordinate maps widely used recently stud...
12703    developed automated deep learning system detec...
12704    background paper present approaches methods em...
12705    last decades seen unprecedented increase avail...
12706    paper presents new method action recognition s...
12707    given equivalence relation set u two abstract ...
12708    short note explain proof proper surjective fai...
12709    prove banach strong novikov conjecture groups ...
12710    reliable consistently reproducible technique f...
12711    research conducted develop method identify voi...
12712    study finite alphabet channels unit memory pre...
12713    consider quadratic vector field mathbbc invari...
12714    design conduct present results highly personal...
12715    prove along marked point green function meromo...
12716    paper sets framework designing massive multipl...
12717    problem coordinate large fleet trucks given it...
12718    many recent approaches polyphonic piano note o...
12719    family multiscale hybridmixed mhm finite eleme...
12720    associated every quaternionic representation c...
12721    model studied paper stochastic extension socal...
12722    compared basic forkjoin queues job n k forkjoi...
12723    elasticwave turbulence strong turbulence appea...
12724    report magnetic properties zinc ferrite thin f...
12725    paper present lsf parameters unit vector form ...
12726    show newly proposed shannonlike entropic measu...
12727    new secondorder numerical scheme based operato...
12728    explaining reasoning processes underlie observ...
12729    distributed algorithms often beset straggler e...
12730    popular word embedding techniques involve impl...
12731    let compact constant mean curvature surface ei...
12732    paper discuss maximum principle timefractional...
12733    structure nature water confined hydrophobic mo...
12734    although motility flagellated bacteria escheri...
12735    datadriven brain parcellations aim provide acc...
12736    paper dark energy models universe filled wet d...
12737    obtain solutions generic bilinear master equat...
12738    semantic instance segmentation remains challen...
12739    imbalanced data skewed class distribution comm...
12740    paper introduce new variant pmedian facility l...
12741    define multiblock interleaved codes codes allo...
12742    paper proposes new method solving wellknown ra...
12743    paper study probability distribution position ...
12744    magnetoelectric effects surface states ti extr...
12745    recent progress logic programming eg developme...
12746    paper studies improving solvers based past sol...
12747    online social networking sites experimenting f...
12748    bayesian optimization proposed automatic learn...
12749    paper considers general rankconstrained optimi...
12750    study problem variable selection linear models...
12751    network systems control highly important appea...
12752    function space deeplearning machines investiga...
12753    object study present dissertation topics diffe...
12754    literature mentions incidentally subdoppler co...
12755    recent high angular resolution observations pr...
12756    present clustering comparison galaxy formation...
12757    consider supercritical branching random walk r...
12758    aim paper study relations regular reductive pv...
12759    star epic identified light curve acquired k sp...
12760    recent publication proposed new methodology de...
12761    entanglement central understanding manybody qu...
12762    introduce persistencelike pseudodistance tamar...
12763    continue first second authors study qcommutati...
12764    consider piecewise deterministic markov decisi...
12765    multiplex networks offer important tool study ...
12766    establish zeroone laws convergence laws monadi...
12767    introduce concept establishing paritytime symm...
12768    formation membrane necks crucial fission fusio...
12769    information theory mathematical theory learnin...
12770    stochastic constraint programming scp extensio...
12771    kernel adaptive filters class adaptive nonline...
12772    provide selfcontained formulation bphz theorem...
12773    necessary conditions existence normal extremal...
12774    beam imaging detector developed coupling multi...
12775    widely studied nondeterministic polynomial tim...
12776    recently hashing methods widely used largescal...
12777    give sufficient conditions groups generated au...
12778    present article family new combinatorial ident...
12779    chondrules dominant bulk silicate constituent ...
12780    vast volume data produced todays scientific si...
12781    suggest efficient method resolve electronic cu...
12782    characterize information dynamics strongly dis...
12783    study theoretically velocity crosscorrelations...
12784    network filaments embedded clusters surroundin...
12785    constructing rth nonresidue finite field funda...
12786    decreasing temperature srvo undergoes two stru...
12787    matching twosided market often incurs external...
12788    study one dimensional ttj model generic coupli...
12789    paper proposes concurrentaccess obfuscated sto...
12790    automated software verification concurrent pro...
12791    shortterm voltage stability svs problem larges...
12792    macaulays inverse system effective method cons...
12793    many complex networked systems online social n...
12794    show border support rank tensor corresponding ...
12795    given large graph determine similarity nodes f...
12796    polystyrenebased phosphorene nanocomposites pr...
12797    main purpose paper provide summary fundamental...
12798    fixedmobile bigraph g bipartite graph vertices...
12799    design structure matrices dsms useful represen...
12800    transport security protocols essential ensure ...
12801    recent work richardson kuhn ab richardson et a...
12802    phd thesis considers performance evaluation en...
12803    paper consider polytopes given systems n inequ...
12804    dynamic behavior capacitive microelectromechan...
12805    lorentz force law classical electrodynamics st...
12806    consider multivariate mathbblapproximation rep...
12807    show weak comparison principle ultrapower axio...
12808    precise knowledge atomic order monocrystalline...
12809    paper obtain possibilistic variants probabilis...
12810    highlyadaptivelassohaltmle efficient estimator...
12811    elementary proof twosidedness matrixinverse gi...
12812    richclub ordering dyadic effect two phenomena ...
12813    introduce interstellar dust modelling framewor...
12814    modelbased clustering popular approach cluster...
12815    past decade asteroseismology become powerful m...
12816    deep optical photometric data ngc region colle...
12817    construction ambiguity set robust optimization...
12818    massive multiuser mu multipleinput multipleout...
12819    formation dynamics freesurface structures step...
12820    note show voevodskys univalence axiom holds mo...
12821    demand response dr programs emerged potential ...
12822    decisionmaking processes becoming data driven ...
12823    consider halfsoliton stationary state nonlinea...
12824    field algorithmic fairness highlighted ethical...
12825    revisit present status stiffness supranuclear ...
12826    paper use dynamical systems analyze stability ...
12827    adiabatic quantum computing evolved recent yea...
12828    paper analyzes pedestrians behavioral patterns...
12829    define open gromovwitten invariants counting p...
12830    article determines characterizes minimal numbe...
12831    present general framework training deep neural...
12832    multiplayer online battle arena become popular...
12833    novel method robust estimation called graphcut...
12834    multivariate singular spectrum analysis mssa v...
12835    building intelligent transportation systems ta...
12836    lion man move continuously space x aim lion ca...
12837    let h compact subgroup locally compact group g...
12838    past acoustic scene classification systems bas...
12839    propose online convex optimization algorithm r...
12840    paper presents feature encoding method complex...
12841    molecular simulations produce highdimensional ...
12842    large body empirical results show temporallyex...
12843    structural magnetic electricaltransport proper...
12844    consider problem optimal transportation quadra...
12845    let mathcall schrdinger operator form mathcall...
12846    importance microscopic details cooperation lev...
12847    maximum posteriori probability map inference g...
12848    one challenges information retrieval providing...
12849    brain tumour segmentation plays key role compu...
12850    study fermionic matrix product operator algebr...
12851    velocityspace moments often troublesome nonlin...
12852    machine learning ml techniques deep artificial...
12853    electrophysiological recordings spiking activi...
12854    understanding information processing brain req...
12855    one find dimensions multivariate data reliably...
12856    rate change calculations literature involve de...
12857    call learner superteachable teacher trim iid t...
12858    review physics grb production relativistic jet...
12859    elegant accelerator physics particlebeam dynam...
12860    higgs mechanism longrange coulomb interaction ...
12861    revisit masseys method rating ranking sports c...
12862    key objective two phase b amp clinical trials ...
12863    report results pilot program use magellanmfs s...
12864    evolution parametric decay instability pdi cir...
12865    shortened determine transformation matrix maps...
12866    structured populations spatial arrangement coo...
12867    demand side management dsm strategies often as...
12868    paper consider network scenario agents evaluat...
12869    classification clustering algorithms proved su...
12870    paper investigates extent cognitive biases may...
12871    report highpressure study heavily electron dop...
12872    work concerned existence solutions nonlinear s...
12873    complete characterization spatial coherence di...
12874    network alignment consists finding corresponde...
12875    industrial indoor environment harsh wireless c...
12876    paper introduce new feature selection algorith...
12877    paper describes neuralnetwork model performed ...
12878    give strengthened versions herwiglascar hodkin...
12879    homological index holomorphic form complex ana...
12880    myxobacteria social bacteria glide form counte...
12881    prove bilinear fractional integral operators s...
12882    bak sneppen bs model simple model exhibits ric...
12883    classify ribbon structures drinfeld center mat...
12884    due low xray photon utilization efficiency low...
12885    developed general approach calculation powerla...
12886    early layers deep neural net fewest parameters...
12887    present matrixfactorization algorithm scales i...
12888    paper presents design machine learning archite...
12889    discuss blackbody radiation within context cla...
12890    paper study family binomial ideals defining mo...
12891    investigate collective behavior magnetic swimm...
12892    analyse new subdomain scheme timespectral meth...
12893    propose novel adaptive importance sampling alg...
12894    examine collective properties closure operator...
12895    develop hybrid system model describe behavior ...
12896    establish link trace modules rigidity modules ...
12897    zero temperature charge current operator appea...
12898    selforganized networks develop mature degenera...
12899    electron polarimeters based mott scattering ex...
12900    many modern clustering methods scale well larg...
12901    review recent results geometric equations lore...
12902    study recombination process three atoms scatte...
12903    paper second twopart series presents method me...
12904    minimum stellar velocity dispersion often obse...
12905    recommendation systems recognised hugely impor...
12906    measurement problem three vexing experiments q...
12907    describe dynamical symmetry breaking system ma...
12908    real world networks often subject severe uncer...
12909    use game theory design control large scale net...
12910    evolutionary modeling applications best way pr...
12911    wasserstein distance received lot attention re...
12912    provide first information theoretic tight anal...
12913    lowrank tensor regression new model class lear...
12914    canonical polyadic decomposition cpd convenien...
12915    study authors develop structural model combine...
12916    empirical mode decomposition emd provides tool...
12917    study equilibrium properties catalyticallyacti...
12918    convolutional neural networks cnns become meth...
12919    recent observations rippled structures surface...
12920    si li author suggested cases adscft correspond...
12921    paper devoted uniqueness problem power meromor...
12922    measure gate voltage vg dependence superconduc...
12923    work review class deterministic nonlinear mode...
12924    textdependent speaker verification becoming po...
12925    lactate threshold considered essential paramet...
12926    shown equiprobability hypothesis leads scenari...
12927    construct special class lorentz surfaces pseud...
12928    since limited power capacity finite inertia dy...
12929    paper extends fullyconvolutional neural networ...
12930    baconbo presents system whose co ions effectiv...
12931    regular language l nonreturning minimal determ...
12932    paper proposes extension generative adversaria...
12933    working infinite field positive characteristic...
12934    present cfaar program repair assistance techni...
12935    past work relation extraction focused binary r...
12936    users organize communities web platforms commu...
12937    recurrence networks associated statistical mea...
12938    traditional optical imaging faces unavoidable ...
12939    complex performance measures beyond popular me...
12940    paper consider novel machine learning problem ...
12941    phased array feed paf technology next major ad...
12942    let x normal algebraic variety finitely genera...
12943    introduce study problem optimizing arbitrary f...
12944    present results long baseline interferometry v...
12945    paper study several aspects related solutions ...
12946    work analyze excitonic gap generation strongco...
12947    preference elicitation task suggesting highly ...
12948    study ginzburglandau equations riemann surface...
12949    paper new class frequency hopping sequences fh...
12950    scikitmultiflow multioutputmultilabel stream d...
12951    distributed computing platforms provide robust...
12952    prove sectional category universal fibration f...
12953    planetary rings produce distinct shape distort...
12954    introduce unified disentanglement network ufdn...
12955    paper provides unified framework deal challeng...
12956    study class determinant inequalities closely r...
12957    power grids critical infrastructure assets fac...
12958    many recent studies motor system divided two d...
12959    effective field theory dark energy modified gr...
12960    processaware information systems pais system s...
12961    dnnbased crossmodal retrieval become research ...
12962    survey paper give overview recent works study ...
12963    completely determine commutative semigroup var...
12964    availability large scale event data time stamp...
12965    deep neural networks widely used various domai...
12966    detecting strong ties among users social infor...
12967    many machine learning applications important e...
12968    present high energy xray diffraction studies s...
12969    studied structural electronic magnetic propert...
12970    let mathbbb unit ball complex banach space x p...
12971    apache spark framework distributed computation...
12972    paper concerned compositional approach constru...
12973    polynomial ring arbitrary field twelve variabl...
12974    deep generative neural networks proven effecti...
12975    zinc oxide aluminum ferrite prepared chemical ...
12976    introduce notion weakly logcanonical poisson s...
12977    x compact hausdorff space sigma homeomorphism ...
12978    classical quadratic formula lesser known varia...
12979    paper present gated convolutional recurrent ne...
12980    study flat flrw alphaattractor mathrme mathrmt...
12981    let omegasubsetmathbbrn minimal gaussian surfa...
12982    continuum approximation ca efficient parsimoni...
12983    minimal surfaces simons cone catenoids using r...
12984    first review traditional approaches memory sto...
12985    predictive modeling increasingly employed assi...
12986    emotion cause extraction aims identify reasons...
12987    machine learning graphstructured data importan...
12988    metric space x quasisymmetrically cohopfian ev...
12989    investigate tightbinding electronic chain feat...
12990    study revenue optimization learning algorithms...
12991    occurrence drugdruginteractions ddi multiple d...
12992    article study stabilizing primitive pattern be...
12993    investigate extremal problems fourier analysis...
12994    knowledge bases important resources variety na...
12995    gaussian processes gps highly flexible functio...
12996    prediction experts advice setting consider met...
12997    paper new adaptive multibatch experience repla...
12998    muonspin rotation data collected ambient press...
12999    paper describe optical imaging data processing...
13000    estimate average flux density minimallycoupled...
13001    show textod invariant matrix theories containi...
13002    underactuated lightweight tensegrity robotic a...
13003    analog network coding anc throughput increasin...
13004    problem paramount importance pure restricted i...
13005    security threats jamming route manipulation si...
13006    intense spindown flows allow one reach high rm...
13007    multiagent pathfinding mapf problem recently r...
13008    construct matrix algebra lambdaab two given fi...
13009    problem retrosynthetic planning framed one pla...
13010    sparse modeling approach proposed analyzing sc...
13011    polydimethylsiloxane pdms films possess differ...
13012    identifying undocumented potential future inte...
13013    pathological lung segmentation pls important y...
13014    paper investigate convection phenomenon intrac...
13015    present absolute frequency measurement unpertu...
13016    similarity search essential many important app...
13017    let l laplace operator r dgeq laplace beltrami...
13018    bayesian responseadaptive designs unbalance ra...
13019    point processes becoming popular modeling asyn...
13020    seven planets trappist system largest number e...
13021    paper focus developing driverinthe loop fuel e...
13022    present generalization cauchylorentzian gemanm...
13023    let x centered gaussian random variable separa...
13024    report evolution structural magnetic dielectri...
13025    call family sets intersecting two sets family ...
13026    work explores maximum likelihood optimization ...
13027    measured magnetic resonance rubidium atoms pas...
13028    paper aims decrease time complexity multioutpu...
13029    lpmln recent addition probabilistic logic prog...
13030    seminal book inmates running asylum hightech p...
13031    image effective tool conveying emotions many r...
13032    soft set theory rough set theory mathematical ...
13033    date developing good model early intensive car...
13034    let varphiiiinfty sequence orthonormal polynom...
13035    molecular dynamics solid benzene extremely com...
13036    paper propose novel approach obtaining reliabl...
13037    interest finding minimum additive generating s...
13038    document provides detailed overview clubbsilhs...
13039    using arakis relative entropy liebs convexity ...
13040    work provides performance guarantees greedy so...
13041    laboratory measurement alphadecay halflife pt ...
13042    paper develops online inverse reinforcement le...
13043    deep learning potential revolutionize quantum ...
13044    propose generalized magnetic mirrors achieved ...
13045    present performances characterization array ma...
13046    one key technologies future largescale locatio...
13047    background opioid misuse major public health i...
13048    geography fuel prices many various implication...
13049    shape priors widely utilized medical image seg...
13050    report detection water absorption features day...
13051    let kkkldotskr lllldotsls disjoint subsets ldo...
13052    random matrix theory rmt applied analyze weigh...
13053    interface widely exists carbon nanotube cnt as...
13054    discovering exploring underlying structure mul...
13055    consumers often react expressively products fo...
13056    study problem cooperative inference group agen...
13057    optimal subset selection important task numero...
13058    cutelimination one famous problems proof theor...
13059    improved understanding turbulence essential ef...
13060    commonly agreed use relevant invariances good ...
13061    epitaxial engineering solidstate heterointerfa...
13062    estimating multiple sparse gaussian graphical ...
13063    widom line identifies locus phase diagram supe...
13064    annotated bibliography estimation inference re...
13065    virtual learning environments vles spaces desi...
13066    batch normalization commonly used trick improv...
13067    cellular automata ca theory discrete model rep...
13068    recently deep learning approaches various netw...
13069    locomotion swimming bacteria simple newtonian ...
13070    review three principal methods assign meaning ...
13071    paper gives exact solution terms karhunenlove ...
13072    nodes residing different parts graph similar s...
13073    study conditions spontaneously generating exci...
13074    spatialsign covariance matrix sscm important s...
13075    recent work developing novel integral equation...
13076    high temperature hightc superconductors like c...
13077    simplicial complexes popular alternative netwo...
13078    present paper devoted local local derivations ...
13079    rigid motion computation estimation cornerston...
13080    measuring influence determining drives persist...
13081    anomaly detectors often used produce ranked li...
13082    roles unmanned aerial vehicles uav continue di...
13083    maximum rankdistance mrd codes extremal codes ...
13084    boltzmann equation integrodifferential equatio...
13085    backscatter electrons beta spectrometer incomp...
13086    timing attacks continuous threat users privacy...
13087    finding causes observed effects establishing c...
13088    study coupled motion closed elastic string imm...
13089    consider frw cosmological model matter content...
13090    classification one widely used analytical tech...
13091    give sufficient conditions nonnegative inverse...
13092    restricted boltzmann machine rbm important too...
13093    prove logarithmic local energy decay rate wave...
13094    let c smooth irreducible projective curve let ...
13095    controllers robotics often consist expertdesig...
13096    toxicity analysis prediction paramount importa...
13097    paper deals cellular eg lte networks selective...
13098    present new random sampling strategy kbandlimi...
13099    graph g sequence vvdotsvm vertices grundy domi...
13100    provide comments article highdimensional simul...
13101    variable clustering important explanatory anal...
13102    weak field limit scalartensorvector gravity th...
13103    develop several efficient algorithms classical...
13104    protein sequence space natural proteins form c...
13105    control solute fluxes either microscopic phore...
13106    magnetohydrodynamically induced interface inst...
13107    clustering problem many variants numerous appl...
13108    develop procedures based minimization composit...
13109    paper investigate problem grasping novel objec...
13110    study problem singleimage depth estimation ima...
13111    complexity geodesic language connections algeb...
13112    purpose radial kspace trajectory wellestablish...
13113    efficient humanmachine networks require produc...
13114    dynamics reduces orthorhombicity magnetic stri...
13115    ideally enabling multitenancy network virtuali...
13116    bayesian estimation unknown parameters statesp...
13117    multiplicative theory set numbers could natura...
13118    recently lee cha two generalized classes discr...
13119    let g group rational points reductive connecte...
13120    introduce two applications polygraphs categori...
13121    matter bounces refer scenarios wherein univers...
13122    approximate ripple carry adders rcas carry loo...
13123    normality assumption data set restrictive appr...
13124    work proposes novel solution problem internal ...
13125    work concerned alaloxidealoxallayer systems im...
13126    senior project typical essential course comput...
13127    study tensor network theory important field pr...
13128    broad set deep generative models dgms achieved...
13129    paper propose unsupervised face clustering alg...
13130    paper presents new acoustic emission ae source...
13131    andersons paving conjecture known hold due res...
13132    describe amrex suite astrophysics codes applic...
13133    present translation lambek calculus brackets u...
13134    present distributed formation control strategy...
13135    recent years rtbreal time bidding becomes popu...
13136    graphstructured data social networks functiona...
13137    paper describes novel storyboarding scheme use...
13138    aim dissertation investigate habitability extr...
13139    part large investigation hubble space telescop...
13140    paper provide first analysis research question...
13141    many recent deep learning platforms rely third...
13142    significant amount search queries originate re...
13143    prove unpolarized shafarevich conjecture k sur...
13144    computing steadystate distributions infinitest...
13145    paper presents discretetime option pricing mod...
13146    performance single channel source separation a...
13147    examine problem searching sequentially desired...
13148    paper classify isomorphism classes four dimens...
13149    current article unveils analyzes important fac...
13150    partbased representation proven effective vari...
13151    paper present novel approach based random walk...
13152    provide nontrivial measure irrationality class...
13153    consider slowly evolving ie adiabatic operatio...
13154    although shill bidding common auction fraud ho...
13155    investigate evolution decorrelation bandwidth ...
13156    lyngso pedersen proposed conjecture stating ev...
13157    paper study asymptotic properties bayesian mul...
13158    short account recent existence multiplicity th...
13159    convex penalty promoting switching controls pa...
13160    blue waters petascalelevel supercomputer whose...
13161    consider time series measurements state evolvi...
13162    study inflation models many interacting fields...
13163    user engagement online social networking depen...
13164    investigate statistical properties clustering ...
13165    prove realization formula model formula analyt...
13166    self consistent gw approach scgw applied calcu...
13167    intervalcensored data event time known lie tim...
13168    medical field stands see significant benefits ...
13169    paper develops compares two motion planning al...
13170    study galactic wind edgeon spiral galaxy ugc c...
13171    objective establish performance several drive ...
13172    liouville type theorems stationary navierstoke...
13173    let p set nodes wireless network node modeled ...
13174    present alma co j co j co j observations local...
13175    consider problem computing nearest matrix poly...
13176    fixed point iterations play central role desig...
13177    prior work addressed problem optimally control...
13178    let p denote problem existence point plane giv...
13179    proved category mathbbem extended multisets du...
13180    prove nonvanishing twisted central critical va...
13181    consider elastic composite material containing...
13182    propose method implementation oneway quantum c...
13183    let x compact connected strongly pseudoconvex ...
13184    study steiner tree problem set terminal vertic...
13185    luminous stimulus penetrates retina converted ...
13186    present significantly different reflection pro...
13187    examine gradient descent unregularized logisti...
13188    demonstrate existence longlived prethermalized...
13189    develop systematic study jahnteller jt models ...
13190    article present general theory augmented lagra...
13191    introduce study oneparameter generalization qw...
13192    frankl fredi conjectured maximum lagrangian ru...
13193    accelerate research adversarial examples robus...
13194    complex networks analyses many physical biolog...
13195    paper describes method clustering data spread ...
13196    goal paper investigate dynamics eigenvalues st...
13197    paper study algorithmic problems automaton sem...
13198    recent data indicate one moderately nearby sup...
13199    generative adversarial networks gans form gene...
13200    paper analyzes market impacts expanding califo...
13201    peer code review continuous integration often ...
13202    tree inclusion problem given two nodelabeled t...
13203    firm varies price product consumers exhibit re...
13204    inverse reinforcement learning irl task learni...
13205    proper ideal commutative ring unity called zci...
13206    many realworld timeseries analysis problems ch...
13207    two major approaches studying macroevolution d...
13208    second paper series aimed study stellar kinema...
13209    introduce new finite element fe discretization...
13210    quench dynamics active area study encompassing...
13211    fermilab committed upgrade accelerator complex...
13212    deep generative models shown promising results...
13213    apply machine learning techniques attempt pred...
13214    report frequency measurement clock transition ...
13215    identifying different varieties language chall...
13216    whether neural networks learn abstract reasoni...
13217    paper published special issue journal inequali...
13218    xo project aims detecting transiting exoplanet...
13219    standard modelfree deep reinforcement learning...
13220    electrified viscocapillary jet shows different...
13221    receiver perfect channel state information csi...
13222    describe deep learning approach automated brai...
13223    robustness statistics depends upon number assu...
13224    present new proof results kurdyka paunescu rai...
13225    robots typically possess sensors different mod...
13226    framework gaps project conducting observationa...
13227    tackle problem deciding whether two probabilis...
13228    colocalization analysis aims study complex spa...
13229    given vertex interest network g vertex nominat...
13230    passivity imperative concept widely utilized t...
13231    restricted boltzmann machines key tools machin...
13232    discuss connection colorings link diagram goer...
13233    let real analytic riemannian manifold adapted ...
13234    main objective thesis study evolution ricci fl...
13235    show dynamics higgs field inflation affected m...
13236    topology torus remains invariant certain nontr...
13237    proliferation smallscale renewable generators ...
13238    electrical brain stimulation currently investi...
13239    revealing community structure network dataset ...
13240    consider variant online convex optimization in...
13241    investigate nature superconducting state curve...
13242    means firstprinciples calculations investigate...
13243    core technique used popular proxybased circumv...
13244    study special fiber integral models shimura va...
13245    bayesian optimization successful global optimi...
13246    article study problem fair division particular...
13247    magnetic resonant coupling mrc enabled multipl...
13248    work introduces class rejectionfree markov cha...
13249    airwater interfaces lifshitz interaction promo...
13250    study following basic machine learning task gi...
13251    collecting labeled data costly thus critical b...
13252    letter presents revised radiative transfer mod...
13253    paper find sufficient conditions continuity va...
13254    education increasingly framed competence minds...
13255    article represents first step toward understan...
13256    present paper new algorithm urban traffic ligh...
13257    consider problem finding proper confidence int...
13258    investigated reliability applicability socalle...
13259    probabilistic timed automata ptas timed automa...
13260    paper give counting results integer polynomial...
13261    paper obtain class virasoro modules taking ten...
13262    previously shown dyefilled microcavity produce...
13263    background ab initio manybody methods whose nu...
13264    paper existence uniqueness estimates solution ...
13265    propose gradientbased method quadratic program...
13266    let abelian variety defined global function fi...
13267    study swendsenwang dynamics critical qstate po...
13268    question number thermodynamic states present l...
13269    auxetic materials great engineering interest f...
13270    experiments numerical simulations explore beha...
13271    construct cosection localized virtual structur...
13272    column subset selection problem provides natur...
13273    paper introduce algorithm determine equivalenc...
13274    study model introduced perthame vauchelet desc...
13275    solution space many classical optimization pro...
13276    echo chambers ie situations one exposed opinio...
13277    applying many mode floquet formalism magnetica...
13278    ic luminous infrared galaxy lirg classified st...
13279    random key graphs introduced study various pro...
13280    study convergence rates variational posterior ...
13281    eclipsing binaries remain crucial objects unde...
13282    delayedacceptance version metropolishastings a...
13283    calgebra set x give stinespringtype characteri...
13284    paper presents biasvariance tradeoff graph lap...
13285    propose paper novel approach tackle problem mo...
13286    community detection problem graphs asks one pa...
13287    uncertainty quantification critical missing co...
13288    complex statistical machine learning models in...
13289    article motivated soccer positional passing ne...
13290    study problem initiation excitation waves fitz...
13291    aim use statistical analysis large number vari...
13292    regular separability problem asks two given la...
13293    support vector data description svdd machine l...
13294    comparing two distributions often helpful lear...
13295    investigate effect dzyaloshinskii moriya inter...
13296    random forests perform bootstrapaggregation sa...
13297    aims recent observations challenged understand...
13298    recent experiments suggest interplay cells mec...
13299    introduce pvscdtm parallel vectorized stencil ...
13300    extend existing methods using crosscorrelation...
13301    propose novel blockrow partitioning method ord...
13302    many image processing tasks involve imagetoima...
13303    exact lower upper bounds best possible misclas...
13304    big graph database model provides strong model...
13305    present analytic selfsimilar solutions one two...
13306    employ unsupervised machine learning technique...
13307    design energyefficient access networks emerged...
13308    discuss evolution computer architectures focus...
13309    person reidentification reid aims matching ima...
13310    bounded model checking among efficient techniq...
13311    survey compare various generalizations braid g...
13312    let zgh homogeneous space real reductive group...
13313    purpose work introduce general class cgsimulat...
13314    statesponsored bad actors increasingly weaponi...
13315    estimates asteroid masses based gravitational ...
13316    markov regime switching models widely used num...
13317    vipafleet project consists developing models a...
13318    bayesian information criterion bic akaike info...
13319    analyze low rank tensor completion tc using no...
13320    recent years much effort concentrated towards ...
13321    cardiac left ventricle lv quantification among...
13322    paper investigates properties class graphs bas...
13323    many realworld communication networks often hy...
13324    propose novel technique make neural network ro...
13325    computations rational numbers often suffer int...
13326    collaborative filtering often suffers sparsity...
13327    graphbased semisupervised learning one popular...
13328    listwise learning rank methods considered stat...
13329    study whitehead torsions inertial hcobordisms ...
13330    people rely social media primary sources news ...
13331    quantum sensors solid state electron spins att...
13332    advanced motor skills essential robots physica...
13333    querying graph databases recently received muc...
13334    show communication complexity lower bound find...
13335    consider graph turing machines model parallel ...
13336    many online social networks allow directed edg...
13337    six years ago semitoric systems dimensional ma...
13338    consider kuser multipleinputsingleoutput miso ...
13339    simulate complex fluids means onthefly couplin...
13340    motile organisms often use finite spatial perc...
13341    study asymptotic behaviour twisted first momen...
13342    boltzmann sampling commonly used uniformly sam...
13343    classify ergodic invariant random subgroups bl...
13344    sparse subspace clustering ssc popular unsuper...
13345    consider certain type geometric properties ban...
13346    languages shared people differ different regio...
13347    study phase diagram edge states twodimensional...
13348    overview logic bunched implications bi separat...
13349    let xi crown domain associated noncompact irre...
13350    paper consider continuous mathematical model t...
13351    let q finite quiver without loops mathcalqalph...
13352    traditional abstract domain framework imperati...
13353    study integral transform appeared different fo...
13354    quantitative cba postprocessing algorithm asso...
13355    consider quermassintegral preserving flow clos...
13356    article consider cloaking quasilinear elliptic...
13357    consider novel stochastic multiarmed bandit pr...
13358    clinical measurements collected time naturally...
13359    fairly elementary terms paper presents theory ...
13360    describe embedding qwire quantum circuit langu...
13361    study problem learning classifiers fairness co...
13362    study algebraic analytic structure feynman int...
13363    geometric phases well known noiseresilient qua...
13364    segmented aperture telescopes require alignmen...
13365    consider problem active feature acquisition se...
13366    give asymptotic formula number biquadratic ext...
13367    consider optimal execution problem trader look...
13368    give description weighted reedmuller codes pri...
13369    junction omega several semiinfinite cylindrica...
13370    paper studies stochastic optimal control probl...
13371    models observations suggest iceparticle aggreg...
13372    splashback radius rrm sp apocentric radius par...
13373    deep learning models dlms stateoftheart techni...
13374    robotic systems increasingly relying distribut...
13375    consider solution stochastic storage problems ...
13376    general physics level overview article hidden ...
13377    fast byteaddressable nonvolatile memory nvm em...
13378    experience world multimodal see objects hear s...
13379    consider tate twist tau hs mod cohomology moti...
13380    reliable diagnosis depressive disorder essenti...
13381    targeted advertising meant improve efficiency ...
13382    prove gaussbonnet formula xg sumx kx kxdimx xs...
13383    social media transforming global communication...
13384    infectious disease outbreaks recapitulate biol...
13385    multiplayer multiarmed bandits mab extensively...
13386    paper consider estimation generalized linear m...
13387    lightshiningthroughawall experiments represent...
13388    recent increase interest graph invariant calle...
13389    interpreting neural networks crucial challengi...
13390    intersections hazardous places threats arise i...
13391    convolutional sparse representations enjoy num...
13392    mms observations recently confirmed crescentsh...
13393    era big highdimensional data readily available...
13394    present autonovi novel algorithm autonomous ve...
13395    stochastic gradient descent sgd widely used ma...
13396    paper deal composite rational functions zeros ...
13397    introduce geometry interaction model mazzas mu...
13398    present results systematic search lymanalpha e...
13399    paper study geometry syz transform semiflat la...
13400    kpoint crossover operators recombination sets ...
13401    advances robotic technology research humanrobo...
13402    recently millimeterwave mmwave communications ...
13403    quantum entanglement serves valuable resource ...
13404    discuss design optimisation two types junction...
13405    present threedimensional cubic lattice spin mo...
13406    advance state art polyphonic piano music trans...
13407    previous joint work xiao second author modifie...
13408    propose demonstrate method calibrating atomic ...
13409    study laplacian smooth bounded domain varying ...
13410    geometrical topological phases play fundamenta...
13411    study homotopy groups generic leaves logarithm...
13412    exhibit relations van kampenflores conwaygordo...
13413    let lambda lambdak denote sequence complex num...
13414    investigate fine selmer groups elliptic curves...
13415    introduce new feature map barcodes arise persi...
13416    aim paper derive several new integral represen...
13417    reactive transport modeling computational cost...
13418    pseudoedge graph convex polyhedron k connected...
13419    paper focus learning structureaware document r...
13420    italian national institute statistics regularl...
13421    inertialess fluidstructure interactions active...
13422    encouraged recent studies performance tidal tu...
13423    elicitability property mathbbrkvalued function...
13424    system interacting brownian particles subject ...
13425    paper first present birmanmurakamiwenzl type a...
13426    recent era prediction enzyme class unknown pro...
13427    origin populationscale coordination puzzled ph...
13428    paper present proslam lightweight stereo visua...
13429    introduce right generating sets cayley graphs ...
13430    branch flow model bfm used formulate ac power ...
13431    transfer learning aims faciliate learning task...
13432    group discussions way individuals exchange ide...
13433    short note using results bourgain fremlin tala...
13434    article modeled mortality rates peruvian femal...
13435    propose novel approach parameter estimation si...
13436    several prolog implementations include facilit...
13437    introduce notion dynamical topological order p...
13438    article present pictorially foundation differe...
13439    paper study non strictly systems conservation ...
13440    onedimensional symmetric exclusion process sim...
13441    paper classifies equivalence classes irreducib...
13442    short review classical lie theorem finite dime...
13443    intersubband isb polarons result interaction i...
13444    well known markov chain monte carlo mcmc metho...
13445    one major challenges minimally invasive surger...
13446    paper describes task dcase challenge titled ge...
13447    program dependence graph pdg represents data c...
13448    prove smallest nontrivial quotient mapping cla...
13449    paper present new type fractional operator gen...
13450    research employ accurate timedependent density...
13451    note prove borel class representations manifol...
13452    article make case systematic application compl...
13453    estimate maximumorder complexity binary sequen...
13454    recent advances neural networks inspired peopl...
13455    study interactions bright matterwave solitons ...
13456    give geometric characterisations patch lawson ...
13457    four years national aeronautics space administ...
13458    present paper use theory exact completions stu...
13459    many program verification synthesis problems i...
13460    deep neural networks excel function approximat...
13461    many earth science applications require data h...
13462    psychiatric neuroscience increasingly aware ne...
13463    maximum speed liquid wet solid limited need di...
13464    massive spread digital misinformation identifi...
13465    vector field called beltrami vector field btim...
13466    couder fort discovered droplets walking vibrat...
13467    investigate languages recognized wellstructure...
13468    introduce new family integrable stochastic pro...
13469    large number applications querying sensor netw...
13470    context transformation generalized context tra...
13471    recent years numerous advanced malware aka adv...
13472    lowpressure gaseous tpcs well suited detectors...
13473    due exponential complexity resources required ...
13474    reconstructing network connectivity collective...
13475    consider set agents wish estimate vector param...
13476    maintenance software developers deal number so...
13477    upon employing analysis new time domain termed...
13478    nanostructures immense potential supplant trad...
13479    future generation gravitational wave detectors...
13480    present work seeks analyse altmetric performan...
13481    impact information dissemination epidemic cont...
13482    artificial intelligence increasingly affecting...
13483    paper presents sufficient conditions convergen...
13484    present spectroscopic observations c ii lambda...
13485    metasurfaces promising tools towards novel des...
13486    prove open gromovwitten invariants k surfaces ...
13487    paper reviews main estimation prediction resul...
13488    rough grains standard packing conditions disch...
13489    nonstationary domains unforeseen changes happe...
13490    important theorem classical complexity theory ...
13491    present first polynomialtime approximation sch...
13492    emergence smart wifi aps access point equipped...
13493    abella interactive theorem prover proven effec...
13494    arithmetic matroid weakly multiplicative multi...
13495    multilabel submodular markov random fields mrf...
13496    present strategy obtain explicit equations mod...
13497    paper present simple analysis bf fast rates hi...
13498    using numerical analytical methods describe ge...
13499    deep neural networks become complex input data...
13500    using six parameters truncated mittagleffler f...
13501    trending topic newspapers indicator understand...
13502    magneticallydriven disk winds would alter surf...
13503    show proof principle warping method interpret ...
13504    show every tiling convex set euclidean plane m...
13505    recently tewari van willigenburg constructed m...
13506    calculation phase diagrams one fundamental too...
13507    next generation sequencing ngs technology resu...
13508    present contribution offers simple methodology...
13509    provide thermodynamic analog braess roadnetwor...
13510    paper study weighted gevrey class regularity e...
13511    soft random geometric graphs srggs widely appl...
13512    media industry increasingly personalizing offe...
13513    piecewise testable languages form first level ...
13514    present superpivot analysis method lowresource...
13515    study stochastic control approach managed futu...
13516    face recognition made great progress developme...
13517    paper propose restart schedule adaptive simula...
13518    purpose work construct simple efficient accura...
13519    ambientpressuregrown laofbis superconducting t...
13520    let mathcala ldots mathcalak finite sets mathb...
13521    present systematic evaluation jpeg isoiec tran...
13522    deep reinforcement learning drl applied succes...
13523    following breakthrough croot lev pach tao intr...
13524    paper present detailed computational study ele...
13525    given koszul algebra finite global dimension o...
13526    paper produce cellular motivic spectrum motivi...
13527    work introduce idea primary application topolo...
13528    study theoretically edge fracture instability ...
13529    apply symmetry based power tensor technique te...
13530    paper investigates dependence functional portf...
13531    study local optima hamiltonian sherringtonkirk...
13532    regular expressions capture variables also kno...
13533    present new approach learning planning knowled...
13534    usual approaches mechanics classical quantum p...
13535    show characteristic functions domains boundari...
13536    least angle regression lars efron et al novel ...
13537    present measurements velocity power spectrum c...
13538    paper prove lorentz space lqpestimates gradien...
13539    prove sharp density upper bounds optimal lengt...
13540    image diffusion plays fundamental role task im...
13541    study compares various superlearner deep learn...
13542    shown newtons inequalities related maclaurins ...
13543    understanding influence hyperparameters perfor...
13544    paper propose generalized expectation consiste...
13545    paper investigates performance legitimate surv...
13546    big data problems frequently require processin...
13547    developer forums contain opinions information ...
13548    simulations tidal streams show close encounter...
13549    present threespecies multifluid mhd model h ho...
13550    evergrowing amounts textual data large variety...
13551    software key component solutions st century pr...
13552    performed geometric pulsar light curve modelin...
13553    automation computer intelligence support compl...
13554    two heuristics namely diversitybased dbtp hist...
13555    using katorosenblum theorem describe absolutel...
13556    investigate separation properties npoint confi...
13557    introduce algorithm wordlevel text spotting ab...
13558    previous work defined studied sigmamodules cla...
13559    revisit low energy physics one dimensional spi...
13560    several methods checking admissibility rules m...
13561    spark new promising platform scalable datapara...
13562    known every graph g exists smallest helly grap...
13563    paper estimate time resolution jpet scanner bu...
13564    area handwritten signature verification broadl...
13565    fairness critical trait decision making machin...
13566    memorysafety violations prevalent cause reliab...
13567    study problem modeling spatiotemporal trajecto...
13568    rewrite poyntings theorem already used previou...
13569    victory ie underlinevienna underlinecomputatio...
13570    tumor stromal interactions shown driving force...
13571    consider problem testing basis pvariate gaussi...
13572    phylodynamics area population genetics uses ge...
13573    social affective relations may shape empathy o...
13574    paper addresses dynamic difficulty adjustment ...
13575    characterize varieties torus action complexity...
13576    paper study interplay lagrangian cobordisms st...
13577    citation sentiment analysis important task sci...
13578    present hybrid method latent information disco...
13579    let k field paper investigates embedding dimen...
13580    cosmic axion spin precession experiment casper...
13581    energy graph g equal sum absolute values eigen...
13582    linear attention recurrent neural network larn...
13583    paper consider robust adaptive non parametric ...
13584    designing analog subthreshold neuromorphic cir...
13585    origin broad emission line region belr quasars...
13586    propose consistent polynomialtime method unsee...
13587    report time angle resolved spectroscopic measu...
13588    paper consider family jacobitype algorithms si...
13589    goal present paper introduce smaller equivalen...
13590    submission investigates alternative machine le...
13591    growing digital archives improving algorithms ...
13592    paper promote method evaluation surface topogr...
13593    consider flotation deformable nonwetting drops...
13594    work study crystalline nuclei growth glassy sy...
13595    electron cloud lead fast instability intense p...
13596    man island individuals interact influence one ...
13597    let fxfx dots fmx f dots fm linearly independe...
13598    consider several notions genericity appearing ...
13599    cubesats emerging lowcost tools perform astron...
13600    study cyclicity weighted ellpmathbbz spaces p ...
13601    order achieve good level autonomy unmanned hel...
13602    devise approach targeted molecular design prob...
13603    deep neural networks achieved increasingly acc...
13604    give new axiomatization npseudospace studied t...
13605    radiofrequency multipole traps used decades co...
13606    visual data videos often sampled complex manif...
13607    dynamics waves generated scopes gas centrifuge...
13608    paper deal robust stackelberg strategy naviers...
13609    paper five different approaches reducedorder m...
13610    srtio quantum paraelectric becomes metal super...
13611    earliest socalled class phase sunlike lowmass ...
13612    consider cosmological dynamics theory gravity ...
13613    paper present extensions interpolation arithme...
13614    english indian language machine translation po...
13615    quantitative composition metal alloy nanowires...
13616    tackle problem constructive preference elicita...
13617    recently two reports demonstrated amazing poss...
13618    examine relation gasphase oxygen abundance ste...
13619    prove riemann hypothesis generalized riemann h...
13620    develop second order primaldual method optimiz...
13621    electronic medical records contain multiformat...
13622    give new arithmetic algorithm compute generali...
13623    study superconductor coupled superfluid via de...
13624    introduce multicolour partition algebras pnmde...
13625    materials central way life future energy mater...
13626    lumpedelement kinetic inductance detectors lek...
13627    knot floer homology invariant knots discovered...
13628    new detailed mathematical model dynamics immun...
13629    experiments handling rydberg atoms near surfac...
13630    quasars high redshift provide direct informati...
13631    acid solutions exhibit variety complex structu...
13632    generating music notable differences generatin...
13633    study synaptically coupled neuronal networks i...
13634    motion planning autonomous vehicles requires s...
13635    present tool primarily supports ability check ...
13636    work leverages recent advances probabilistic m...
13637    paper introduces youtubem video understanding ...
13638    sepsis condition caused bodys overwhelming lif...
13639    contribution devoted cover technical aspects r...
13640    present visibility based estimator namely tape...
13641    software long established essential aspect sci...
13642    prove new exact formulas generalized sumofdivi...
13643    paper provides explicit formulas related addit...
13644    witnesses medieval literary texts preserved ma...
13645    sustained interest bifacial solar cell technol...
13646    era big data reducing data dimensionality crit...
13647    well known neural networks rectified linear un...
13648    aim paper introduce notion fantastic deductive...
13649    coming years residential consumers face realti...
13650    recent work follow perturbed leader ftpl algor...
13651    ammonium halides present interesting system st...
13652    linear fractional map fz fracaz bcz riemann sp...
13653    differential calculus euclidean spaces many ge...
13654    let p finite pgroup p odd prime let mathcalapp...
13655    recent years deep generative models shown imag...
13656    show standard stochastic gradient decent sgd a...
13657    simulation schemes partial differential equati...
13658    paper present translation quantum programming ...
13659    report experimental realization dirac semimeta...
13660    understanding structure scene vital importance...
13661    motivated applications social biological netwo...
13662    consider problem learning reward policy expert...
13663    natural social humanrobot interaction essentia...
13664    propose novel online alternating minimization ...
13665    sensing complex systems requires largescale in...
13666    study attractors class holomorphic systems irr...
13667    graphene honeycomb lattice carbon atoms ruled ...
13668    retina complex nervous system encodes visual s...
13669    emholm proc roy soc stochastic fluid equations...
13670    paper consider solving class convex optimizati...
13671    use information entropy test isotropy nearby g...
13672    observations diffuse starlight outskirts galax...
13673    let lambda oplus c trivial extension algebra a...
13674    study spread rnyi entropy two halves sachdevye...
13675    explore lattice structures integer binary rela...
13676    undetected overfitting occur significant redun...
13677    suggest inverse dispersion method calculating ...
13678    vehicletoinfrastructure vi communication may p...
13679    manifolds infinite cylindrical ends continuous...
13680    give construction real number normal integer b...
13681    strong interaction known exist edgecolored gra...
13682    quasirandom walks show similar features standa...
13683    endtoend learning treats entire system whole a...
13684    realworld document collections involve various...
13685    recent years witnessed great success convoluti...
13686    study class flat bundles finite rank n arise n...
13687    appealing gibbs formalism classical statistica...
13688    smooth backfitting proven number theoretical p...
13689    locomotion low reynolds numbers topic growing ...
13690    assessment multimedia quality relies heavily s...
13691    suppose inverse image zero vector continuous m...
13692    prove certain coinduced actions inclusion fini...
13693    study diffusion properties inertial brownian m...
13694    prove omegalanguages nondeterministic petri ne...
13695    despite important role supporting assessment p...
13696    zeroshot recognition aims accurately recognize...
13697    study developed automated system evaluates spe...
13698    theoretical analysis detection decoding lowden...
13699    future electricity distribution grids host con...
13700    work report xray photoelectron xps valence ban...
13701    paper consider degenerate pseudoparabolic equa...
13702    use ab initio bethe ansatz dynamics predict di...
13703    human eye appears using low number sensors ima...
13704    study problem matrix estimation matrix complet...
13705    developing position sensitive silicon detector...
13706    revisit question reducing online learning appr...
13707    recently macdonald et al showed many algorithm...
13708    let g finite solvable symmetric group let b bl...
13709    according wellknown principle thermodynamics t...
13710    almost parameterizations turbulence nwp models...
13711    recent advancements complex network analysis e...
13712    several experimental reports nonconvex optimiz...
13713    modern perspective cosmology historical scienc...
13714    give classification semisimple separable algeb...
13715    study equivalence microcanonical canonical ens...
13716    paper considers problem positive semidefinite ...
13717    discuss various characterizations synthetic up...
13718    given pedestrian image query purpose person re...
13719    recently methods proposed perform texture synt...
13720    present work analyses particular scenario cons...
13721    administrators academic organizations across w...
13722    introduce condition garside groups call dehorn...
13723    paper new approach classification target task ...
13724    canonical grandcanonical ensembles two usual m...
13725    partial representation extension problem intro...
13726    main aim paper study lipschitz continuity cert...
13727    propose estimation method conditional mode con...
13728    report results isothermal magnetotransport sus...
13729    error backpropagation highly effective mechani...
13730    mean field variational bayes method becoming i...
13731    era next generation giant telescopes requires ...
13732    mastering dynamics social influence requires s...
13733    great concern produce numerically efficient me...
13734    study gapless quantum spin chains spin fredkin...
13735    new area passive wifi analytics promise delive...
13736    introduce new method finding network motifs in...
13737    traditional bagofwords approach found wide ran...
13738    date limit graviton mass using galaxy clusters...
13739    artificial neural networks anns may worth comp...
13740    channel convex constraint set finite augustin ...
13741    paper presents new algorithm calculating hash ...
13742    generative adversarial networks gan one promin...
13743    propose estimate metamodel sensitivity indices...
13744    neuronal glial cells release diverse proteogly...
13745    present autoperf generalized software performa...
13746    way quantum mechanics qm introduced people use...
13747    study sample complexity learning neural networ...
13748    variational bayes vb also known independent me...
13749    studied two dimensional lattice model coulomb ...
13750    propose dynamic network model two mechanisms c...
13751    stock market considered one highly complex sys...
13752    article notion bimonotonic independence introd...
13753    present observations occulted active region ar...
13754    gender inequality starts birth parents tend pr...
13755    hierarchical models regionally aggregated dise...
13756    accelerometer measurements prime type sensor i...
13757    investigated magnetic structure heavy fermion ...
13758    one compelling features gaussian process gp re...
13759    consider global optimization function continuo...
13760    years many multiprocessor locking protocols de...
13761    topological cyclic homology refinement connest...
13762    local graph partitioning key graph mining tool...
13763    understanding detailed queueing behavior netwo...
13764    although cluttered indoor scenes lot useful hi...
13765    commonly used distributed machine learning sys...
13766    prevalence smart wearable devices increasing e...
13767    qensembles modelfree approach input images fed...
13768    report status cybersecurity assessment tools c...
13769    critical periods phases early development huma...
13770    work present wholebody nonlinear model predict...
13771    unmanned aerial vehicles uavs represent new fr...
13772    recurrent neural networks rnn type statistical...
13773    functionals stochastic process yt model many p...
13774    efficient trafficmanagement platforms public v...
13775    frame question answering qa reinforcement lear...
13776    paper present results dynamic multivariate sca...
13777    design simulation measurement beam steerable s...
13778    internet mobile things encompasses stream data...
13779    space telescope optical reverberation mapping ...
13780    present grasping system design approach behind...
13781    consider semantics prepositions revisiting bro...
13782    random walks heart many existing deep learning...
13783    gated recurrent unit gru recentlydeveloped var...
13784    paper reformulated spell correction problem ma...
13785    twodimensional transition metal dichalcogenide...
13786    work study permutation synchronisation challen...
13787    associated varieties vertex algebras analogue ...
13788    new method developed deal problem complex dece...
13789    paper presents semantic attribute modulation s...
13790    positiveunlabeled pu learning considers two sa...
13791    juno multipurpose neutrino experiment designed...
13792    sigmapisigma neural networks spsnns kind higho...
13793    proceedings adkdd targetad workshop held conju...
13794    due possible lack primaldualtype error bounds ...
13795    expertise programming traditionally assumes bi...
13796    gaining better understanding machine learning ...
13797    advanced operation future electricity distribu...
13798    propose nonlinear discrete duality finite volu...
13799    nbody simulations study dynamics n particles i...
13800    deep learning started revolutionize several di...
13801    monte carlo mc sampling methods widely applied...
13802    paper describe novel local algorithm large sta...
13803    book chapter introduces problem extent search ...
13804    obtaining detailed reliable data local economi...
13805    study implicit regularization optimizing under...
13806    study pareto frontier two competing norms cdot...
13807    deep neural networks increasingly used variety...
13808    cern provides set hadoop clusters featuring pb...
13809    evolution sculpts body plans nervous systems a...
13810    known since ehrhard regniers seminal work tayl...
13811    propose apply two methods estimate pupil plane...
13812    analyse multilevel monte carlo method approxim...
13813    provide fast method computing constraints impa...
13814    present deep radio search reticulum ii dwarf s...
13815    paper investigates problem detecting relevant ...
13816    learning representations disentangle underlyin...
13817    excellent ranking power along well calibrated ...
13818    lowtemperature magnetic phases layered honeyco...
13819    introduce general methodology post hoc inferen...
13820    design jamming resistant receivers enhance rob...
13821    discuss higher dimensional generalizations dim...
13822    realistic implementations kitaev chain require...
13823    halfcentury discovery superconductorinsulator ...
13824    geosocial data attractive source variety probl...
13825    randomeffects normalnormal hierarchical model ...
13826    paper continue previous work dirichlet mixture...
13827    consider problem approximate kmeans clustering...
13828    suggest method represent general directed unif...
13829    introduce uncertainty regions perform inferenc...
13830    interstitial content online content grays othe...
13831    spiking neuronal networks usually simulated th...
13832    press release national institute standards tec...
13833    reinforcement learning powerful paradigm learn...
13834    cegar loop software model checking notoriously...
13835    sturmliouville operator singular potentials la...
13836    describe progress towards new common framework...
13837    work presents algorithm generate depth quantum...
13838    examine bayesconsistency recently proposed nea...
13839    adaptive gradient methods adagrad variants upd...
13840    infinitely smooth convex body mathbb rn called...
13841    motivated wideranging applications video deliv...
13842    paper present novel approach identify generato...
13843    classes depthbounded namebounded processes fra...
13844    secretary problem classic model online decisio...
13845    order understand formation social conventions ...
13846    series papers develop theory class locally com...
13847    prove liebschultzmattis theorem quantum spin h...
13848    present stabilized microwavefrequency transfer...
13849    define study numericalrange analogue notion sp...
13850    fundamental importance find algorithms obtaini...
13851    although deep learning historical roots going ...
13852    social media useful platform share healthrelat...
13853    paper introduces novel deep learning framework...
13854    net asset value nav calculation validation pri...
13855    nonlinear kleingordon nlkg equation manifold n...
13856    review studies superintense laser interaction ...
13857    grasping skill major ability wide number reall...
13858    compute hochschild cohomology ring algebras kl...
13859    provide complete source code frontend gui back...
13860    pioneering work brezismerle lishafrir li barto...
13861    consider scenario broadcasting information net...
13862    paper contributes techniques topoalgebraic rec...
13863    many practical problems learning agent may wan...
13864    paper investigates power control relay selecti...
13865    working scalable interactive visualization sys...
13866    note determine possible dominations different ...
13867    consider space x singular locus zsingx positiv...
13868    based recent highresolution angleresolved phot...
13869    renormalization method based newtonmaclaurin e...
13870    present largescale study gender bias occupatio...
13871    paper addresses deep face recognition fr probl...
13872    consider massless nonlinear dirac nld equation...
13873    twodimensional nonoriented bin packing problem...
13874    constrain models highmass star formation hersc...
13875    efficiency error control numerical solutions p...
13876    paper finds near equilibrium prices electricit...
13877    twosample hypothesis testing problem studied c...
13878    least square monte carlo lsm algorithm propose...
13879    humans ground natural language commands tasks ...
13880    study nonlocal venttsel problem nonconvex boun...
13881    generalize concept spinmomentum locking magnon...
13882    method evaluation outlined previous work utili...
13883    distributed computing environment consider emp...
13884    known inputoutput approaches based scaled smal...
13885    online social media become integral part socia...
13886    theory proposed basic elements reality assumed...
13887    segmentation large scale power grids zones cru...
13888    sb nuclear quadrupole resonance nqr applied fe...
13889    many statistical tests verify null hypothesis ...
13890    paper present new method measuring hubble para...
13891    testing whether probability distribution compa...
13892    peierlsnabarro pn model dislocations hybrid mo...
13893    consider partial torsion fields fields generat...
13894    data aggregation promising approach enable mas...
13895    digital games one major important fields enter...
13896    letter report systematic construction lattice ...
13897    prove identity relating product two opposite s...
13898    dialogue act recognition associate dialogue ac...
13899    questions noise stability play important role ...
13900    modern society generates incredible amount dat...
13901    give new proof strong arnold conjecture period...
13902    diderot parallel domainspecific language analy...
13903    consider problem semisupervised fewshot classi...
13904    introduce study inhomogeneous exponential jump...
13905    evidence accumulation models simple decisionma...
13906    radiative lifetime molecules atoms increased p...
13907    two fundamental processes describing change bi...
13908    system modeling bacteriophage treatments coinf...
13909    spin waves chiral magnetic materials strongly ...
13910    moran wrightfisher processes probably well kno...
13911    preclinical magnetic resonance imaging often r...
13912    scalable calculation matrix determinants bottl...
13913    years data become increasingly higher dimensio...
13914    review paper fits context adequate matching tr...
13915    understanding generative mechanism natural sys...
13916    investigate selforganization strongly interact...
13917    virtual unknotting number virtual knot minimal...
13918    describe algorithm evaluate complex branches l...
13919    rise life expectancy one great achievements tw...
13920    explore hunters rabbits game hypercube process...
13921    quantifying relation gut microbiome body weigh...
13922    paper study wireless packet broadcast system u...
13923    considerations propagation particles universe ...
13924    consider point cloud xn x dots xn uniformly di...
13925    modify definable ultrapower construction kanov...
13926    present novel notion complexity interpolates g...
13927    given graph n vertices integer k feedback vert...
13928    suppose given set n elements clustered k unkno...
13929    kriging based gaussian random fields widely us...
13930    study problem maximizing monotone submodular f...
13931    multiarmed bandits quintessential machine lear...
13932    mantels test mt association conducted testing ...
13933    present algorithm approximating function defin...
13934    time delay general leads instability systems s...
13935    primordial black holes pbh could cold dark mat...
13936    pegs formalized ford several pragmatic operato...
13937    central question neuroscience develop realisti...
13938    present restframe optical spectra fmoscosmos s...
13939    study task estimating number edges graph acces...
13940    explore random scalefree networks populations ...
13941    investigate complexity deep neural networks dn...
13942    study longrange longtime behavior reactivetele...
13943    study abelian varieties k surfaces complex mul...
13944    considering granular fluid inelastic smooth ha...
13945    better understand energy response antineutrino...
13946    present paper generalises results ray buchstab...
13947    paper presents automated approach interpretabl...
13948    study problem learning onehiddenlayer neural n...
13949    absolute positioning essential factor arrival ...
13950    intrinsically nonlinear coupled systems presen...
13951    article consider cayley deformations compact c...
13952    pairwise maximum entropy model also known isin...
13953    study smooth structure convex functions genera...
13954    paper study joint functional calculus commutin...
13955    full ranges hybrid plasmonmode dispersions dam...
13956    well known thanks laxwendroff theorem local co...
13957    environmental changes failures collisions even...
13958    compute free energy planar monomerdimer model ...
13959    paper consider several compression techniques ...
13960    relativistic effects nonresonant twophoton ksh...
13961    article concerned asymptotic behavior certain ...
13962    show dimensional systolic complexes quasiisome...
13963    notion computer capacity proposed quantity est...
13964    construct base expansion absolutely normal rea...
13965    computational ghost imaging robust compact sys...
13966    estimated connectomes means neuroimaging techn...
13967    present photometry spectroscopy nine type iipl...
13968    sharing economy se growing ecosystem focusing ...
13969    hypothesis computational models reliable enoug...
13970    report growth ndfeasof thin films tilt mgo bic...
13971    measure mass function sample young star cluste...
13972    show galois cohomology groups padic representa...
13973    paper continuation ctcmf efficient algorithm c...
13974    investigate time evolution entanglement entrop...
13975    proposed new penalized method paper solve spar...
13976    upcoming skalow radio interferometer sensitive...
13977    neural networks widely used predictive models ...
13978    consider jacobi matrices j whose parameters po...
13979    present work analyze necessary conditions igni...
13980    polls trusted source election predictions deca...
13981    seidel introduced notion fukaya category relat...
13982    thermalization hot carriers phonons gives dire...
13983    given polynomial p cx show set irreducible mat...
13984    significant training required visually interpr...
13985    millions users routinely use google log websit...
13986    evolutionary game dynamics structured populati...
13987    supervised machine learning agent typically tr...
13988    undertaken algorithmic search new integrable s...
13989    nonnegative matrix factorization basic tool de...
13990    paper solves problem optimal portfolio choice ...
13991    statistical inference model selection requires...
13992    study problem sampling bandlimited graph signa...
13993    present dltk toolkit providing baseline implem...
13994    show verdier quotients realized subfactors hom...
13995    prove grothendieck rings category mathcalctq q...
13996    study optimal pricing strategy monopolist sell...
13997    present paper devoted description finitedimens...
13998    derive bounds extremal singular values conditi...
13999    stanene predicted twodimensional topological i...
14000    paper introduces framework speeding bayesian i...
14001    distributions anthropogenic signatures impacts...
14002    consider regret minimization repeated games no...
14003    given network nodes minimizing spread contagio...
14004    paper consider nonlinear inhomogeneous compres...
14005    poisson distribution used modeling noise photo...
14006    emil artin defined zeta function algebraic cur...
14007    forgotten topological index findex graph defin...
14008    show problem deleting minimum number vertices ...
14009    propose using storage ring edm method search a...
14010    time crystals quantum manybody systems due int...
14011    echocardiography essential modern cardiology h...
14012    anomaly detection database management systems ...
14013    paper deal seifert fibre spaces compact manifo...
14014    ufmc modulation among considered solutions rea...
14015    humans easily describe imagine crucially predi...
14016    recently paper klimovskikh et al published pre...
14017    learning representation relative similarity co...
14018    present updated version massmetallicity relati...
14019    instanton partition functions mathcaln super y...
14020    paper presents kinematic analysis ppps paralle...
14021    bigdatalog extension datalog achieves performa...
14022    present longbaseline alma observations strong ...
14023    computation noether numbers groups order less ...
14024    reporting lugiatolefever equation describing f...
14025    models percolation processes networks currentl...
14026    lintersection graphs graphs representation int...
14027    classical problem scheduling unrelated paralle...
14028    determination pairing symmetry monolayer fese ...
14029    paper proposes novel method filter false alarm...
14030    consider question extending propositional logi...
14031    world succinctly compactly described structure...
14032    present concept magnetic gas detection extraor...
14033    article present automatic method charge mass i...
14034    paper proposes model information cascades dire...
14035    present inferences geometry kinematics broadhb...
14036    providing longrange forecasts fundamental chal...
14037    aa tau archetype class stars peculiar periodic...
14038    paper describes verifying methods medical spec...
14039    objects moving fluids experience patterns stre...
14040    given real number beta study associated betash...
14041    derive expressions configurational forces kohn...
14042    realtime safety analysis become hot research t...
14043    show conformal anomaly weyldirac semimetals ge...
14044    speaker recognition performance emotional talk...
14045    uv absorption studies fuse observed h molecula...
14046    radio telescopes become sensitive damaging eff...
14047    consider eternal inflation scenario slowrollch...
14048    present first exact calculations time dependen...
14049    rigorous nonequilibrium actions manybody probl...
14050    first step statistical reliability studies coh...
14051    work introduce online model communication comp...
14052    due recent advances compute data models role l...
14053    order find way measuring degree incompleteness...
14054    horseshoe prior proven noteworthy alternative ...
14055    current machine learning techniques proposed a...
14056    siberian solar radio telescope upgraded upgrad...
14057    present temperature dependent inelastic neutro...
14058    goal study test two different computing platfo...
14059    superresolution fluorescence microscopy resolu...
14060    astonishing fact established lee rubel exists ...
14061    determination energy flux gamma photons imagin...
14062    learn connectome constructed simplified model ...
14063    claw diamondfree edge deletion problem given g...
14064    caching popular contents edge cellular network...
14065    introduce orbital graphs discuss basic propert...
14066    prove existence singular harmonic bf z spinors...
14067    childhood obesity associated increased morbidi...
14068    basic reproduction number r threshold paramete...
14069    demonstrate applied electric field causes piez...
14070    matrix divisors introduced work aweil consider...
14071    pseudogap phase superconductors continues outs...
14072    direct comparison specific heat magnetoresista...
14073    interest determine exit angle vortex supercond...
14074    general methodology proposed differentiate lik...
14075    developed semianalytic framework model largesc...
14076    research hardware imperfections impact securit...
14077    preventable medical errors estimated among lea...
14078    person reidentification reid usually suffers n...
14079    paper illustrates calculate moments cumulants ...
14080    present new large samples galactic cepheids rr...
14081    kristensen mele developed new approach obtain ...
14082    study leinsters notion magnitude compact metri...
14083    paper show edge connectivity distanceregular d...
14084    expertise annotators major role crowdsourcing ...
14085    rigorously derive kirchhoff plate theory via g...
14086    advent microcontrollers enough cpu power analo...
14087    work prove growth artin conductor exponential ...
14088    internet protocol ip addresses frequently used...
14089    short paper generalise theorem due kani rosen ...
14090    construct optimal designs group testing experi...
14091    complex oxides exhibit many intriguing phenome...
14092    article show duality tensor networks undirecte...
14093    generalization emdenfowler equation presented ...
14094    exploiting deep generative models remarkable a...
14095    using atomic force microscopy afm investigated...
14096    article discuss architecture polynomial neural...
14097    analyze lefttail asymptotics deformed tracywid...
14098    background test resources usually limited ther...
14099    make case studying complexity approximately si...
14100    quantum technology increasingly relying specia...
14101    wide adoption dnns given birth unrelenting com...
14102    spectral clustering found extensive use many a...
14103    measurements highvelocity clouds metallicities...
14104    deep generative models trained large amounts u...
14105    present generalization bound feedforward neura...
14106    preceding paper efroimsky derived expression t...
14107    work introduce moldavian romanian dialectal co...
14108    einstein field equations weakfield approximati...
14109    propose novel tree classification system calle...
14110    investigate flow instability created oblique s...
14111    paper gives introduction rate equations nonlin...
14112    many modern applications science engineering d...
14113    study address question whether extent respecti...
14114    declination quantitative method identifying po...
14115    dynamic adaptive streaming http dash recently ...
14116    evolution propagation worlds languages complex...
14117    article dedicated late giorgio israel rsum aim...
14118    categorical point view minimization subrecursi...
14119    devaney krych showed exponential family lambda...
14120    motivated ridesharing platforms efforts reduce...
14121    modern systems increasingly rely energy harves...
14122    evolution smart microgrid demandresponse chara...
14123    premise autonomous vehicles must optimize comm...
14124    paper study problem estimating covariance matr...
14125    planning safe paths major building block robot...
14126    display advertising users online ad experience...
14127    hallmark weyl semimetals existence open consta...
14128    study dynamic response superfluid field moving...
14129    examine spectral operatortheoretic properties ...
14130    mobile robots cyberphysical systems cyberspace...
14131    spite recent success neural machine translatio...
14132    machine learning data analysis finds scientifi...
14133    paper introduce new modules ring ponderation f...
14134    paper studies eigenvalue problem mathbbrd clas...
14135    report targeted groups subject matter experts ...
14136    building interactive tools support data analys...
14137    consider classical risk process arrival claims...
14138    conduct realistic evaluation virtualized netwo...
14139    information systems experience evergrowing vol...
14140    recent studies show interest materials asymmet...
14141    common approach analyzing categorical correlat...
14142    paper study inhomogeneous diophantine approxim...
14143    specific value cosmological constant lambda ac...
14144    synthesis rationally designed nanostructured m...
14145    propose novel framework reduces management int...
14146    present semianalytical models galactic outflow...
14147    learning algorithms learn linear models often ...
14148    kustaanheimostiefel ks transformation depends ...
14149    paper presents new safety specification method...
14150    present simple yet effective approach linking ...
14151    reinforcement learning ai commonly uses reward...
14152    memorybased neural networks model temporal dat...
14153    currently great interest applying neural netwo...
14154    infinite chain drivendissipative condensate sp...
14155    paper projected primaldual gradient flow augme...
14156    although significant literature asymptotic the...
14157    aharoni berger conjectured bipartite multigrap...
14158    paper provides general abstract approach appro...
14159    one interesting features libration domain coor...
14160    deep qnetwork dqn returnbased reinforcement le...
14161    recent studies regarding habitability observab...
14162    exhibit first explicit examples salem sets mat...
14163    consider hardcore model finite triangular latt...
14164    model reduction markov process basic problem m...
14165    carried campaign characterize hot jupiters was...
14166    superconductor subjected strong inplane magnet...
14167    consider regression problem labeled data obser...
14168    although poissonvoronoi diagrams interesting m...
14169    one promising avenue study onedimensional topo...
14170    use kalman filtering well nonlinear extensions...
14171    advances atomic resolution situ environmental ...
14172    paper presents extension recently developed hi...
14173    work sharp compactness theorem yamabe problem ...
14174    brief note connect discrete logarithm problem ...
14175    convolutional neural networks cnns applied gra...
14176    paper studies textitpartial functional partial...
14177    wireless rechargeable sensor networks consisti...
14178    online social media information resources tran...
14179    cooperation cornerstone human evolutionary suc...
14180    show classical equivalence bmo norm l norm lac...
14181    recent literature demonstrated promising resul...
14182    conduct comprehensive set tests performance su...
14183    paper construct equivariant coarse homology th...
14184    paper continuation recent paper devoted refini...
14185    multilayer mos possesses highly anisotropic th...
14186    novel surface interrogation technique proposed...
14187    propose general computational procedures based...
14188    study electroweak scale dark matter dm whose i...
14189    generalised hydrodynamics predicts universal b...
14190    propose employ scale spaces mathematical morph...
14191    paper deals construction separating system rat...
14192    paper present method simultaneously segmenting...
14193    protein pattern formation essential spatial or...
14194    artificial intelligence ai generally machine l...
14195    matrix completion problem arises many dataanal...
14196    many applications infer structure probabilisti...
14197    influence bsite ion substitutions xbinatioxbat...
14198    paper presents exhaustive study arrivals proce...
14199    derive new exact evolution equation scale depe...
14200    shown controlled moran constructions mathbbr i...
14201    predictable feature analysis pfa richthofer wi...
14202    elements composing complex systems usually int...
14203    many studies show acquisition knowledge key bu...
14204    uncertainty propagation large scale discrete s...
14205    location fingerprinting locates devices based ...
14206    prove explicit formula first nonzero entry nth...
14207    characterize topologically conjugate twosided ...
14208    encrypted database systems provide great metho...
14209    main aim survey paper gather together results ...
14210    contactrich manipulation tasks unstructured en...
14211    let omegaleft abright subsetmathbbr min lleft ...
14212    study structure stability vortex lattices twoc...
14213    estimating tail index parameter one primal obj...
14214    metamaterial analogues electromagnetically ind...
14215    paper study special case completion cusp khler...
14216    dgeq study simplicial structure chain complex ...
14217    problems information destination moving object...
14218    investigate extension monadic second order log...
14219    constantstress layer wall turbulence twopoint ...
14220    consider class variational problems densities ...
14221    paper presents comparison six machine learning...
14222    autoencoders deep learning model representatio...
14223    ocean flows routinely inferred lowresolution s...
14224    flexible approach modeling dynamic event count...
14225    core issue blockchain mining requires solving ...
14226    general conjecture stated cone automorphic vec...
14227    work propose compositiondecomposition framewor...
14228    establish every kquasiconformal mapping w unit...
14229    prove averaging operators uniformly bounded l ...
14230    consider problem computing firstpassage time d...
14231    hamamatsu photonics introduced new generation ...
14232    introduce dynamic deep neural networks dnn new...
14233    gaussian random fields grf fundamental stochas...
14234    computability power distributed computing mode...
14235    note corrects conditions proposition theorem i...
14236    demonstrate application futamura projections h...
14237    report enhancing complete synchronization iden...
14238    propose novel method compressed sensing recove...
14239    paper energy harvesting scheme multiuser multi...
14240    investigate spectral properties tensor product...
14241    prove smooth projective algebraic variety dime...
14242    recurrent neural networks rnns becoming increa...
14243    deep learning enabled remarkable progress last...
14244    advancement technology last decades leading wi...
14245    work thin magnetite films deposited srtio via ...
14246    demand response dr costeffective environmental...
14247    goal graph representation learning embed verte...
14248    widespread sentiment possible effectively util...
14249    study means densitymatrix renormalization grou...
14250    application fuzzy support vector machine stock...
14251    review essentials formalism quantum mechanics ...
14252    chemical substitution growth wellestablished m...
14253    relative root mean squared errors rmse nonpara...
14254    goal paper study angle two curves framework me...
14255    ability locally degrade extracellular matrix e...
14256    mathematical physics spacefractional diffusion...
14257    derive positivstellensatz noncommutative ratio...
14258    wake vast population smart device users worldw...
14259    study minus order algebra bounded linear opera...
14260    dynamics fully flexible polymer ejecting capsi...
14261    created cloudbased service allows end users ru...
14262    ballean coarse structure set endowed family su...
14263    article investigate large sample properties mo...
14264    consider problem generating relevant execution...
14265    dynamics along particle trajectories axisymmet...
14266    paper resilient controller designed linear tim...
14267    prove integrability dispersionless hirota type...
14268    note propose new approach towards solving nume...
14269    use maximum qloglikelihood estimation least in...
14270    groups enterprises guarantee form complex guar...
14271    vocal joystick vowel corpus washington univers...
14272    examine salient trends influenza pandemics aus...
14273    henrik bruus professor labchip systems theoret...
14274    analysis tools like abstract interpreters symb...
14275    paper considers problem solving systems quadra...
14276    unwanted variation including hidden confoundin...
14277    purpose short contribution report development ...
14278    bandt pompe introduced permutation entropy tim...
14279    chest radiography extremely powerful imaging m...
14280    paper presents convolutional neural network cn...
14281    let xnninfty sequence torus mathbbt normalized...
14282    conventional generators power grids steadily s...
14283    onesided matching mechanisms fundamental assig...
14284    introduce midivae neural network model based v...
14285    work present gumbel graph network modelfree de...
14286    majorana bound states mbs wellestablished clea...
14287    upgrade atlas experiment high luminosity phase...
14288    recently several endtoend speaker verification...
14289    prove recognition principle motivic infinite p...
14290    correlation functions dimer operators product ...
14291    advent th generation wireless standards increa...
14292    fullerenes attracted interest possible applica...
14293    using existing simplified model framework buil...
14294    paper study methods estimate drivers posture v...
14295    order make proper reaction collected informati...
14296    based properties nsubharmonic functions show c...
14297    propose simple approach given distributed comp...
14298    forgetful functor category generalized effect ...
14299    evaluate integrals certain polynomials spheres...
14300    intermetallic semiconductor fega acquires itin...
14301    show topology protect exponentially localized ...
14302    find boundaries borelserre compactifications l...
14303    public speaking important aspect human communi...
14304    let k algebraically closed field characteristi...
14305    bibliometrics offers particular representation...
14306    traditional automatic evaluation measures natu...
14307    investigate effect explicitly enforcing lipsch...
14308    traditionally classifying large hierarchical l...
14309    experimentally quantified temporal structural ...
14310    automatic compiler phase selectionordering tra...
14311    shot noise important ingredient measurement th...
14312    establish sharp growth rate terms cardinality ...
14313    hypothesis generation becoming crucial timesav...
14314    consider several previously studied online var...
14315    study blackbox attacks machine learning classi...
14316    work addresses problem kinematic trajectory pl...
14317    integrated information theory iit prominent th...
14318    let compact oriented threemanifold whose inter...
14319    paper propose two novel bounds loglikelihood b...
14320    paper design fabricate experimentally characte...
14321    conventional shape sensing techniques using fi...
14322    distributed control potential solution decreas...
14323    allpay auctions common mechanism various human...
14324    examine volume computation generaldimensional ...
14325    diluted meanfield models spin systems whose ge...
14326    analyze clustering problem flexible probabilis...
14327    comparison data arises many important contexts...
14328    generalize chimney model introducing nonlinear...
14329    fast radio bursts new class transient radio ph...
14330    finetuning deep convolutional neural network c...
14331    work investigates fundamental limits communica...
14332    rebut erroneous statements attempt clear misun...
14333    demonstrate weakly disordered metal shortrange...
14334    epidemiological sirv model based study designe...
14335    study model seed dispersal considers inclusion...
14336    propose new integral probability metric ipm di...
14337    paper present number robust methodologies unde...
14338    calculate oneloop electron selfenergy correcti...
14339    paper consider problem finding periodic soluti...
14340    show positive integer k exist rightangled arti...
14341    many real world practical problems formulated ...
14342    various economic environments people observe s...
14343    paper proposes new architecture speaker adapta...
14344    purpose note explain analytical history modula...
14345    paper presents framework automatic synthesis c...
14346    first part paper establish uniqueness result c...
14347    recent versions observed cosmic starformation ...
14348    alfaburst searching fast radio bursts frbs com...
14349    graphitic carbon nitride nanosheets among attr...
14350    paper develop way obtaining greens functions p...
14351    main object article present extension zeroinfl...
14352    recently shown phase retrieval imaging sample ...
14353    vis instrument board euclid mission weaklensin...
14354    set points plane emphcrossing family set line ...
14355    multinational corporations use highly complex ...
14356    magnetised exoplanets expected emit radio freq...
14357    present new algorithm time complexity log n de...
14358    clinicallyrelevant forms acute cell injury inc...
14359    twostep photoionization strategy ultracold rub...
14360    purpose present paper investigate fusion rule ...
14361    paper study moment sequences matrixvalued meas...
14362    paper propose novel explanation module explain...
14363    dynamic models statistical inference diffusion...
14364    pretraining models pruning algorithms plays im...
14365    semantic segmentation constitutes integral par...
14366    main purpose paper study multiparameter singul...
14367    highresolution observations solar chromosphere...
14368    let dilangle xrangle free dialgebra field gene...
14369    discrete event simulators omnet provide fast c...
14370    social messages classification research domain...
14371    rd international workshop overlay architecture...
14372    type diabetes mellitus tdm chronic disease oft...
14373    article study kapustinwitten equations closed ...
14374    fundamental challenge developing semantic pars...
14375    many discriminative learning methods using con...
14376    differential privacy dp received increasing at...
14377    let g finite group property ab powers deltacom...
14378    study unbiased estimator density sum random va...
14379    variational autoencoder frameworks demonstrate...
14380    geochemical studies planetary accretion evolut...
14381    graph convolutional networks gcns shown signif...
14382    integers kgeq ngeq k kneser graph knk graph wh...
14383    introduce class fixed points primitive morphis...
14384    r beheshti showed smooth fano hypersurface x d...
14385    structure certain subgroup automorphism group ...
14386    every constraint programming cp solver exposes...
14387    restricted boltzmann machine network stochasti...
14388    convolutional neural networks dcnn used object...
14389    excluding regions eigenvalue matrix contained ...
14390    variational systems allow effective building m...
14391    consider problem nonparametric regression shap...
14392    using established principles statistics inform...
14393    work develop coupled layer construction fracto...
14394    study local asymptotic normality mestimates co...
14395    polarization exchange effect twistednematic fa...
14396    presentday clusters massive halos containing m...
14397    cascading failures may lead dramatic collapse ...
14398    hamiltonian quantum calogerosutherland model n...
14399    define wirtinger number link invariant closely...
14400    augmenting neural network memory grow without ...
14401    develop liouville perturbation theory weakly d...
14402    solve deep metric learning problems producing ...
14403    consider class onedimensional compass models s...
14404    shown orlikterao algebra graded isomorphic spe...
14405    investigate principle way progressively mine d...
14406    paper address problem learning compact similar...
14407    novel capsule target design improve hotspot pr...
14408    single cell senses chemical gradient chemotaxe...
14409    formal models games help us account predict be...
14410    hybrid normed ideal perturbations ntuples oper...
14411    paper concerned radially symmetric solutions s...
14412    let g simple finite graph without isolated ver...
14413    make basic observations hard takeoff value ali...
14414    dna methylation extensively studied epigenetic...
14415    consider problem planning closed walk mathcal ...
14416    study decay small solutions borninfeld equatio...
14417    exist general positive correlation important l...
14418    investigate defect structures forming around t...
14419    paper establishes almost sure convergence asym...
14420    paper contributes emerging literature models v...
14421    investigate impact spin anisotropic interactio...
14422    wellstudied coloring problem assign colors edg...
14423    present simple result allows us evaluate asymp...
14424    axon guidance crucial process growth central p...
14425    motivated applications game theory optimizatio...
14426    highmass stars form within star clusters dense...
14427    paper deal null controllability population dyn...
14428    work part iclr reproducibility challenge try r...
14429    consider problem estimating joint distribution...
14430    introduce extension demixed principal componen...
14431    paper deals asymptotic behavior solutions dela...
14432    propose endtoend approach natural language obj...
14433    access large datasets deep neural networks dnn...
14434    objective paper develop artificial neural netw...
14435    prove generalised fibonacci group frn infinite...
14436    rotabaxter operator algebraic abstraction inte...
14437    mass function galaxy clusters sensitive tracer...
14438    advent largescale heterogeneous search engines...
14439    obtain rigorous uniform asymptotics particular...
14440    undirected weighted graph gvew n vertices edge...
14441    readout chips hybrid pixel detectors use low p...
14442    paper presents novel analysis transmission pro...
14443    terms acousticelastic metamaterials describe c...
14444    blind source separation common processing tool...
14445    recently chen j garay studied pointwise slant ...
14446    propose dataefficient gaussian processbased ba...
14447    modern knowledge base systems frequently need ...
14448    derive algorithm compute satisfiability bounds...
14449    paper concerned optimal control problems syste...
14450    novel minutiabased fingerprint matching algori...
14451    suppose ffldotsfn system random nvariate polyn...
14452    majority online content written languages engl...
14453    paper study adaptive learnability decision tre...
14454    details image noise may restored removing nois...
14455    contribution deals image restoration optical s...
14456    membrane proteins lipids selfassemble membrane...
14457    show every uniformly recurrent subgroup locall...
14458    monotone submodular function maximization appr...
14459    standard models reaction kinetics condensed ma...
14460    monocular facial shape reconstruction single f...
14461    waveparticle duality fundamental description n...
14462    tensor train tt decomposition provides spaceef...
14463    calculate energy threshold fluctuation delta f...
14464    excitation waves threelayer acoustic wavegide ...
14465    article introduce simple dynamical system call...
14466    filling dehn surface manifold generically imme...
14467    information spreading models consider individu...
14468    show low complexity condition gradient hamilto...
14469    general conditions shown uniform algebra gener...
14470    report easy versatile route synthesis parent p...
14471    paper intended step killing spinor programme s...
14472    one main advantages prolog potential implicit ...
14473    superconductivity recently observed cras helim...
14474    present synthesis detailed investigation struc...
14475    paper focus attention exploitation information...
14476    investigate superconductivity may exist doped ...
14477    relativizing computations turing machines orac...
14478    electrical conductivity high dielectric consta...
14479    teams possible lineups best chances opponents ...
14480    observability complex systemsnetworks focus pa...
14481    continuous appearance shifts changes weather l...
14482    present implementation automated vlbi data red...
14483    investigate time evolution towards asymptotic ...
14484    coded caching scheme effective technique incre...
14485    online learning streaming data distributed col...
14486    report perpendicular magnetic anisotropy pma b...
14487    investigate universal cover topological group ...
14488    synchrotron emitting bubbles arise outflow com...
14489    efimov effect refers quantum states discrete s...
14490    edited version given text gdels unpublished ma...
14491    paper present temperature field dependent neut...
14492    minimax lower bounds pessimistic nature given ...
14493    humans animals ability continually acquire fin...
14494    zdextensions probabilitypreserving dynamical s...
14495    use renewable energy sources major strategy mi...
14496    companies increase efforts retaining customers...
14497    recent observation discrepancies muonic sector...
14498    halfmetallic properties tlcrs tlcrse hypotheti...
14499    study interfacial magnetocrystalline anisotrop...
14500    nature inspired neuromorphic architectures exp...
14501    ade dynkin diagram gives rise family algebraic...
14502    study network utility maximization num decompo...
14503    advent deep learning object detection drifted ...
14504    paper examines cosmic ray c nuclei spectra gev...
14505    symmetric nonnegative matrix factorization sym...
14506    total mass mgcs globular cluster gc system gal...
14507    present database parliamentary debates contain...
14508    paper deals model order reduction parametrical...
14509    ensembles nitrogenvacancy centers diamond high...
14510    topological spin liquids robust quantum states...
14511    semisymbolic controlexplicit datasymbolic mode...
14512    dimer algebras arise particular type quiver ga...
14513    subject traces sobolev spaces mixed lebesgue n...
14514    models many signals highdimensional models oft...
14515    training discrete latent variable models remai...
14516    biological organisms cope stochastic variation...
14517    improve performance intensive care units icus ...
14518    paper proposes two lowcomplexity iterative alg...
14519    paper describe routine photometric calibration...
14520    report electronic transport impact spinfilteri...
14521    shown solvable subgroup g almost simple group ...
14522    gene expression ge data capture valuable condi...
14523    problem faced many instructors designing exams...
14524    recent cnn architectures use average pooling f...
14525    abridged used fourth internal data release gai...
14526    robust stable marriage rsm variant classical s...
14527    know empty space preferred state rest true spe...
14528    intelligent personal agent ipa agent purpose h...
14529    increased use internet governments large compa...
14530    evaluate curious determinant first mentioned g...
14531    entry discusses problem describing communities...
14532    paper introduces deep neural networks dnns add...
14533    apply three data science techniques nonnegativ...
14534    motivated truncated em method introduced mao n...
14535    expository paper concerned properties proper h...
14536    dual spectral computed tomography dsct achieve...
14537    timed pattern matching problem actively studie...
14538    report g r band observations interstellar obje...
14539    propose method variable selection discriminant...
14540    generative adversarial networks gan goodfellow...
14541    basic still largely unanswered question contex...
14542    present recurrent encoderdecoder deep neural n...
14543    personalized search hot research topic many ye...
14544    sobol sequences widely used quasimonte carlo m...
14545    high order wavelet integral collocation method...
14546    weaklycoupled tevscale particles may mediate i...
14547    present generalized versions concepts seniorit...
14548    size complexity software systems increase numb...
14549    propose two coded schemes distributed computin...
14550    study gevrey character natural parameterizatio...
14551    periodic basis publicly traded companies requi...
14552    new pathway nuclear magnetic resonance spectro...
14553    meticulous assessment risk extreme environment...
14554    paper deals homogenization problem onedimensio...
14555    paper rungekuttagegenbauer rkg stability polyn...
14556    develop tensor network technique solve univers...
14557    recent advances ultrafast measurement cold ato...
14558    phonetic segmentation process splitting speech...
14559    implicit models allow generation samples point...
14560    traditional centralized energy systems disadva...
14561    generative adversarial networks gans powerful ...
14562    introduction serious games pedagogical support...
14563    paper investigate complexity onedimensional dy...
14564    recently found bosonic excitations ordered med...
14565    dynamic dipole polarizabilities lowlying state...
14566    fifth generation mobile communications anticip...
14567    investigate structural electronic transport th...
14568    work exact solutions equation describes anomal...
14569    recent research psycholinguistics provided inc...
14570    standard cosmographic approach consists perfor...
14571    discourse parsing long treated standalone prob...
14572    paper study combinatorial multiarmed bandit pr...
14573    deep neural networks achieve unprecedented per...
14574    droplet evaporation turbulent sprays involves ...
14575    let mathbbx mu proper metric measure space let...
14576    show simultaneous backaction evading tracking ...
14577    though theoretically expected charge exchange ...
14578    consider friedlanders wave equation two space ...
14579    paper represents systematic way generation aar...
14580    paper study following multiparameter variant c...
14581    recent years witnessed extensive development t...
14582    todays era big data robust leastsquares regres...
14583    paper prove global result schrdinger map probl...
14584    implicit schemes extensively used building phy...
14585    give complete description congruence lattices ...
14586    let sf x symplectic orbifold groupoid sf sympl...
14587    use logmmodot quiescent starforming galaxies z...
14588    main purpose paper propose new preprocessing s...
14589    paper focused dimensionfree pacbayesian bounds...
14590    paper surveys topological problems relevant mo...
14591    propose novel guessandcheck principle increase...
14592    formation correlated electron pairs oscillatin...
14593    gikn construction introduced gorodetski ilyash...
14594    consider problem sampling posterior distributi...
14595    gibbs sampler particularly popular markov chai...
14596    paper argue integration recommender systems re...
14597    article sets forth results existence priori es...
14598    paper characterize planar central configuratio...
14599    water fountain stars wfs evolved objects water...
14600    subordinate diffusions constructed time changi...
14601    graph embedding effective method represent gra...
14602    introduce novel approach perform firstorder op...
14603    without access large compute clusters building...
14604    semiconductor nanowires provide ideal platform...
14605    setting finite type invariants nullhomologous ...
14606    automatic segmentation mr brain images importa...
14607    present brief review integrability multispecie...
14608    clinical trial registries used monitor product...
14609    adapt wellknown spectral decimation technique ...
14610    develop calculus diagrams knotted objects defi...
14611    schmidts game similar intersection games playe...
14612    kernel kmeans clustering correctly identify ex...
14613    classification time series data challenge comm...
14614    paper mainly inspired conjecture existence bou...
14615    paper proposes distributed algorithms multiage...
14616    product distribution matching pdm proposed gen...
14617    last decade witnesses significant methodologic...
14618    machine learningguided protein engineering new...
14619    inner structure material called microstructure...
14620    utilizing hirsch index h variants exploratory ...
14621    although darwinian models rampant social scien...
14622    collaborations integral part scientific resear...
14623    second order operator compact manifold satisfy...
14624    develop theory based formalism quasiclassical ...
14625    present dataset models articulated objects com...
14626    relate minimax game generative adversarial net...
14627    recently discovered classical novae emit gev g...
14628    size planet observable property directly conne...
14629    prove dimension function h h prec xd countable...
14630    pushdown systems pdss recursive state machines...
14631    discuss averagefield approximation trapped gas...
14632    chemical physical reaction dynamics essential ...
14633    radial drift problem constitutes one fundament...
14634    counterpart classical yamabe problem fractiona...
14635    paper discuss stability properties convolution...
14636    compound distributions allow construction rich...
14637    identifying influential nodes network fundamen...
14638    population systems modeled agestructured hyper...
14639    provide explicit presentation infinite hyperbo...
14640    bayesian hierarchical models increasingly popu...
14641    comparison observed brain activity statistics ...
14642    recent surge interest dualities relating theor...
14643    consider kepler problem dimension two three ti...
14644    slow light propagation structured materials hi...
14645    highresolution imaging delivered new prospects...
14646    recent paper alberucci c jisha n smyth g assan...
14647    place recognition challenging problem mobile r...
14648    paper assess predictive power selfconsistent h...
14649    present smooth distributed nonlinear control l...
14650    milky way bulge shows boxpeanut xshaped bulge ...
14651    paper analyzes impact peer effects electricity...
14652    hitomi xray satellite provided first direct me...
14653    autoencoding generative adversarial networks g...
14654    edwin powel hubble regarded one important astr...
14655    fully convolutional neural networks fcn shown ...
14656    extend results proved scalar equations case sy...
14657    paper introduces new approach costeffective hi...
14658    tensorflow distributions library implements vi...
14659    present oneparameter family mathematical model...
14660    mine tychoit gaia astrometric solution tgas ca...
14661    data point large graph graph statistics densit...
14662    accurately predicting machine failures advance...
14663    collective adaptive systems cas consist large ...
14664    use functional brain imaging research diagnosi...
14665    presentation scineghe conference past achievem...
14666    knaster continua solenoids wellknown examples ...
14667    introduce class theories called metastable inc...
14668    study mutual alignment radio sources within tw...
14669    graph based semisupervised learning gssl intui...
14670    peertopeer pp botnets become one major threats...
14671    galaxyscale outflows nowadays observed many ac...
14672    deep neural networks dnns one prominent techno...
14673    prove computer aided proof existence noise ind...
14674    recent work fairness machine learning proposed...
14675    predicting future location vehicles essential ...
14676    metriplectic formalism couples poisson bracket...
14677    introduce hierarchical architecture video unde...
14678    finding similar user pairs fundamental task so...
14679    square arrays submicrometer columnar defects t...
14680    gathering information forest variables expensi...
14681    recently many studies demonstrated deep neural...
14682    sentiment analysis aims uncover emotions conve...
14683    address statistical optimization impacts class...
14684    report observation magnon thermal conductivity...
14685    extensions generalizations alzers inequality w...
14686    present oncilla robot novel mobile quadruped l...
14687    generating graphs similar real ones open probl...
14688    quadratic regression goes beyond linear model ...
14689    paper addresses problems quantum spectral curv...
14690    let ternary homogeneous simple prove finitely ...
14691    amyloid beta peptides abeta implicated alzheim...
14692    let mathbbk algebraic closure finite field mat...
14693    study continuous phase transitions triggered s...
14694    many stateoftheart reinforcement learning rl a...
14695    understanding cell identity important task man...
14696    shown continuously changing effective number i...
14697    densitymatrixrenormalizationgroup dmrg method ...
14698    interface two distinct materials desirable pro...
14699    deep learning models effective source separati...
14700    let kbellpnbellqn ndimensional pqbohr radius h...
14701    rapid progress significant successes wide spec...
14702    neural architecture search nas proposed automa...
14703    network embeddings become popular learning eff...
14704    two major questions neuroimaging studies attem...
14705    light axionic dark matter motivated string the...
14706    use information present bipartite network dete...
14707    textual information extraction sequence labeli...
14708    paper design analyze new zerothorder online al...
14709    consider stochastic damped navierstokes equati...
14710    compact circlepacking p euclidean plane set ci...
14711    nowadays hot challenge supermarket chains offe...
14712    paper concept multirate partial differential e...
14713    paper considers optimal modification likelihoo...
14714    consider binary classification problem data la...
14715    examine effect carrier localization due random...
14716    information neural networks represented weight...
14717    given connected real lie group contractible ho...
14718    large synoptic survey telescope lsst generate ...
14719    monte carlo method based geant toolkit develop...
14720    general theory presentations dframes yet exist...
14721    automata expressiveness essential feature unde...
14722    nowadays protecting trust social sciences also...
14723    paper continuation second authors previous wor...
14724    modeling buildings heat dynamics complex proce...
14725    present decentralized scalable approach deploy...
14726    propose alternative evaluation quantum entangl...
14727    conjugate gradient cg methods class important ...
14728    kalman filters routinely used many data fusion...
14729    fully reconfigurable metasurfaces would enable...
14730    present approach automatic detection alzheimer...
14731    illustrated recent years superstorm sandy nort...
14732    present new technique learning visualsemantic ...
14733    paper investigate coolingoff effect opposite m...
14734    unveil novel unexpected manifestation anderson...
14735    experiments simulations established dynamics c...
14736    transition mechanism jump processes two differ...
14737    use globular cluster kinematics data primarily...
14738    study dynamics bogoliubov wave packet supercon...
14739    heaviest transuranic elements known superheavy...
14740    speckle reduction longstanding topic synthetic...
14741    define radon transform functor sheaves prove e...
14742    propose foundations synthetic theory inftycate...
14743    highorder parametric models include terms feat...
14744    article discuss relationship mathematics physi...
14745    extend constructive dependent type theory logi...
14746    article give explicit solutions laplace equati...
14747    quantify accuracy various simulators compared ...
14748    let q power prime p let uq sylow psubgroup fin...
14749    deal zerodelay source coding vectorvalued gaus...
14750    develop unified description via boltzmann equa...
14751    paper define notion calibration equivalent app...
14752    present design manufacturing high fidelity uni...
14753    consider dynamics message passing spatially co...
14754    first part paper prove voevodskys nilpotence c...
14755    paper propose first computationally efficient ...
14756    already developed recommendation system sights...
14757    seminal result decentralized control developme...
14758    optical clocks benefit tight atomic confinemen...
14759    special type rotarywing unmanned aerial vehicl...
14760    traffic congestion widespread problem dynamic ...
14761    note expand technical issues raised citeppv au...
14762    nontrivial connectivity allowed training deep ...
14763    significant literature methods incorporating k...
14764    mahlmann schindelhauer defined markov chain ca...
14765    simultaneous localization mapping slam problem...
14766    noting importance latent variables inference l...
14767    present work weighted area integral means mpva...
14768    based firstprinciples calculations effective m...
14769    water plays major role biosystems greatly cont...
14770    let mathfrakg hyperbolic kacmoody algebra rank...
14771    affine policies control widely used solution a...
14772    give sharp conditions boundedness hausdorff op...
14773    paper introduce transformations deep rectifier...
14774    convolutional neural networks cnns successfull...
14775    prove superhedging duality discretetime financ...
14776    take advantage gaiaeso survey idr bulge data s...
14777    proved every symmetric repetition invariant je...
14778    present three new semilagrangian methods based...
14779    integrated nested laplace approximation inla c...
14780    supervisory signals help topic models discover...
14781    study spatial fluctuations casimirpolder force...
14782    nonlinear kernel methods approximated fast lin...
14783    though suicide major public health problem us ...
14784    rna sequence word alphabet four elements acgu ...
14785    motivated recent findings human mobility proxy...
14786    present sufficient condition irreducibility fo...
14787    triplet networks widely used models characteri...
14788    recovering pairwise interactions ie pairs inpu...
14789    boundary algebraic bethe ansatz supersymmetric...
14790    strengthening destroying network important iss...
14791    reparameterization variational autoencoders co...
14792    case classical hill problem numerically invest...
14793    paper addresses task allocation problem larges...
14794    paper construct simultaneous confidence band s...
14795    nanometalsemiconductor junction dependent poro...
14796    paper approaches problem imagetotext attention...
14797    humanoid soccer robots perceive environment ex...
14798    paper considers problem inferring image labels...
14799    fermilab muon campus host muon g experiment wo...
14800    research investigate nonlinear energy transmis...
14801    many modern unsupervised semisupervised machin...
14802    multiagent system transitioning centralized di...
14803    largebatch training approaches enabled researc...
14804    standard deep learning systems require thousan...
14805    propose novel method called robust kernel prin...
14806    analyse families codes classical data transmis...
14807    study training process deep neural networks dn...
14808    paper explore theoretical boundaries planning ...
14809    let fcolon uniformly quasiregular selfmapping ...
14810    method density elimination generalized noncomm...
14811    article use linear algebra improve computation...
14812    concept leaderfollower stackelberg equilibrium...
14813    widely perceived correlation effect may play i...
14814    deep learning remarkably successful perceptual...
14815    bayesian inference models intractable partitio...
14816    impact neutral impurity scattering electrons c...
14817    batyrev constructed family calabiyau hypersurf...
14818    transfer learning tl aims transfer knowledge a...
14819    show every periodic virtual knot realized clos...
14820    computing optimal transport distances earth mo...
14821    women become better represented business acade...
14822    establish monotonicity property mass nonplurip...
14823    creating tetrahedral meshes anatomically accur...
14824    dropout effective way regularizing neural netw...
14825    paper continuation arxiv present certain new a...
14826    illustrate advantages distance weighted discri...
14827    accurate state estimation largescale lithiumio...
14828    goal paper introduce single algorithm method m...
14829    paper presents new multitask learning framewor...
14830    fast iterative soft thresholding algorithm fis...
14831    introduce regression model data nonlinear mani...
14832    convolutional neural network used predict kidn...
14833    briefly review recent results constraining neu...
14834    supersymmetry plays important role superstring...
14835    using tridiagonal representation approach obta...
14836    paper systematically explore questions succinc...
14837    applying measurements dielectric constants rel...
14838    samples two characteristic semiconductor senso...
14839    databases widespread yet extracting relevant d...
14840    dominative plaplace operator introduced operat...
14841    show every free amalgamation class finite stru...
14842    elliptically contoured distributions generaliz...
14843    classification shapes great interest diverse a...
14844    present clustering analysis sample lyalphaemit...
14845    work exploits logical foundation session types...
14846    study radiative neutrino pair emission deexcit...
14847    mdl twopart coding textitindex resolvability p...
14848    current work combines cluster dynamics cd tech...
14849    one dimensional hybrid systems play important ...
14850    pearson correlation mutual information based c...
14851    construct explicit projective bimodule resolut...
14852    modern deep neural networks dnns spend large a...
14853    structured prediction ubiquitous applications ...
14854    mentioned schwartz cokelet failed gain converg...
14855    effects high pressure crystal structure orthor...
14856    aim research design implementation cloud based...
14857    use integratedlight spectroscopic observations...
14858    recent series asp system clingo provides gener...
14859    flexible duplex proposed adapt channel traffic...
14860    paper establish carleman estimates forward bac...
14861    doubts expressed comment eur j phys tenability...
14862    notion delegated causality introduced subtle k...
14863    resonating valence bond rvb theory high tc sup...
14864    paper consider numerical approximations hydrod...
14865    kleinkramers equation governing brownian motio...
14866    learning optimal policy multimodal reward func...
14867    several fourier transformations functions one ...
14868    shunt facts devices static var compensator svc...
14869    established spin splitting monolayer ml transi...
14870    completeness dynamic priority scheduling schem...
14871    paper obtain description grothendieck group co...
14872    colletotrichum represent genus fungal species ...
14873    space based loops slnmathbbc also known affine...
14874    study le potiers strange duality conjecture ra...
14875    graph signals offer generic natural representa...
14876    present evaluation several representative samp...
14877    many policy search algorithms proposed robot l...
14878    ideas forge creatively individuals groups buil...
14879    elucidating interaction magnetic moments itine...
14880    sylvester factor essential part asymptotic for...
14881    study analytically numerically envelope solito...
14882    decision making based behavioral neural observ...
14883    inspired mirror symmetry investigate different...
14884    sputter depth profiling often sample erosion a...
14885    using quantum wave packet simulation including...
14886    propose theoretical framework thinking score n...
14887    work focuses reliable detection segmentation b...
14888    telephone call centers offer convenient commun...
14889    areal level spatial data often large sparse ma...
14890    ecir halfday workshop taskbased aggregated sea...
14891    determining velocity distribution halo stars e...
14892    paper study asymptotic behavior secondorder un...
14893    symbolpair codes introduced cassuto blaum rais...
14894    present baseline approach crossmodal knowledge...
14895    topology order parameter magnon condensate obs...
14896    van der waals vdw heterostructures receiving g...
14897    one longstanding challenges artificial intelli...
14898    prove two sufficient conditions idealised mode...
14899    experimental data availability cornerstone rep...
14900    mra multilingual report annotator web applicat...
14901    consider sis contagion processes networks clas...
14902    propose multilayer approach simulate hyperpycn...
14903    construct conformal mappings help continuous f...
14904    neural networks known vulnerable adversarial e...
14905    let k field denote kt polynomial ring coeffici...
14906    deep neural networks dnns powerful nonlinear a...
14907    societies complex systems tend polarize subgro...
14908    measurements subset boundary common electrical...
14909    paper propose new optimization algorithm spars...
14910    time domain terahertz spectroscopy typically u...
14911    robust optimization traditionally taken pessim...
14912    multidimensional time series sequences real va...
14913    show positive integer k kth nonzero eigenvalue...
14914    paper proposed modified markerandcell mac meth...
14915    propose dynamic programming solution image dej...
14916    consider dynamics overdamped mems devices unde...
14917    paper theoretically address three fundamental ...
14918    puzzling transition discovered simulations ran...
14919    review different constructions supersymmetry s...
14920    present discussion hierarchy toda flows gives ...
14921    well known context general relativity spacetim...
14922    main purpose macrostudy shed light broad impac...
14923    policy said robust maximizes reward considerin...
14924    vector bundle e projective variety x called fi...
14925    aperture synthesis simulator simple interactiv...
14926    expression dimensionless dissipation rate deri...
14927    markov chain monte carlo widely used variety s...
14928    previous research using evolutionary computati...
14929    ensemble averaging experiments may conceal man...
14930    joint analysis data multiple information repos...
14931    algebraic methods long history statistics prom...
14932    explore theoretically magnetoresistance weyl s...
14933    availability data sets large numbers variables...
14934    several growth models proposed literature scal...
14935    selfpaced learning spl new methodology simulat...
14936    emerging evidence indicates pathogenesis parki...
14937    study harmonic soft spheres model thermal stru...
14938    introduce diffusively coupled networks dynamic...
14939    recent advances visual tracking showed deep co...
14940    construct fixed parameter algorithm parameteri...
14941    formalize arithmetic topology ie relationship ...
14942    deep neural networks become invaluable tools s...
14943    introduce notion crystallographic sphere packi...
14944    paper analyzes special cyclic jacobi methods s...
14945    applied researchers often construct network ra...
14946    tremendous increase number smart phones app st...
14947    affine toric variety mathrmspeca give convex g...
14948    machine learning methods general deep neural n...
14949    signed cyclic graph g construct unique virtual...
14950    singleparticle mobility edge spme marks critic...
14951    abridged lowluminosity gasrich blue compact ga...
14952    tuning cellular network performance always occ...
14953    navigation popular area research academia indu...
14954    investigate onset superconductivity magnetic f...
14955    study boundary behavior socalled ring qmapping...
14956    work consider problem combining link content t...
14957    many smart infrastructure applications flexibi...
14958    trying maximize adoption behavior population c...
14959    study superconducting transmission line tl for...
14960    relativistic newtonian dynamics rnd introduced...
14961    paper introduces new sparse spatiotemporal str...
14962    parameterized algorithms way solve hard proble...
14963    discovering community structure complex networ...
14964    paper assume isoparametric submanifolds flat s...
14965    learning rich diverse representations critical...
14966    antiunitary representations lie groups take va...
14967    motivation automatically testing changes code ...
14968    study xxz spin systems general graphs particul...
14969    growing interest estimating analyzing heteroge...
14970    consider problem combinatorial computation fir...
14971    show standard candles provide valuable informa...
14972    understanding exoplanet formation finding pote...
14973    extend standard bayesian multivariate gaussian...
14974    diverse sharing economy platforms fair marketp...
14975    consider estimation accuracy individual streng...
14976    modeling parameter estimation neuronal dynamic...
14977    paper prove uniqueness radial symmetry minimiz...
14978    consider problem differential privacy accounti...
14979    scattertext open source tool visualizing lingu...
14980    consider complements standard seifert surfaces...
14981    compute modular transformation formula charact...
14982    contributions codalemaextasis experiment th in...
14983    clustering samples according effective metric ...
14984    solar filamentsprominences one common features...
14985    stochastic convex optimization algorithms popu...
14986    combine conditions found wh results mpr show q...
14987    direct impact excitation precipitating electro...
14988    current methods optimize vaccine dose purely e...
14989    consider problem efficiently learning mixtures...
14990    prove p equiv pmod prime cube modulo p equatio...
14991    many social networks exhibit underlying commun...
14992    online social systems become important platfor...
14993    presence statistical studies auroral omega ban...
14994    future generation networks internet things iot...
14995    challenge understanding hightemperature superc...
14996    work apply coles nonstandard form fdtd solve t...
14997    magnetic oxyselenides topic research several d...
14998    paper presents novel framework integration vis...
14999    design uniaxial anisotropic metamaterial layer...
15000    first approach study systems coupling finite i...
15001    data processing pipelines represent important ...
15002    stationary stellar systems radially elongated ...
15003    past calculation wakefields generated electron...
15004    minimizing nuclear norm matrix shown efficient...
15005    paper presents novel approach stability transp...
15006    measurement energy eigenvalues spectrum multiq...
15007    fix quadratic order ring integers embedding qu...
15008    neural autoregressive models explicit density ...
15009    stochastic orbital approach resolution identit...
15010    game maps useful human players generalgameplay...
15011    paper focused problem estimating probability p...
15012    conventional text classification models make b...
15013    akari irc allsky survey provided twenty thousa...
15014    demonstrate prior influence posterior distribu...
15015    consider multicomponent widomrowlison metropol...
15016    graph theory provides language studying struct...
15017    metric search concerned efficient evaluation q...
15018    paper study solutions possibly unbounded signc...
15019    paper present new significant theoretical disc...
15020    question selecting best amongst different choi...
15021    imaging assays cellular function especially us...
15022    using language riordan arrays study oneparamet...
15023    observe explain theoretically dramatic evoluti...
15024    portfolio analysis traditional approach replac...
15025    paper studies characteristics applicability cu...
15026    many neural systems display avalanche behavior...
15027    ontology alignment widelyused find corresponde...
15028    consider design modeling metasurfaces couple e...
15029    introduce connection scan algorithm csa effici...
15030    consider two stage estimation nonparametric fi...
15031    paper shows conditional quantile treatment eff...
15032    present principled technique reducing matrix s...
15033    formation deuterated molecules favoured low te...
15034    models involving branched structures employed ...
15035    recent success embeddings natural language pro...
15036    paper study electron wavepacket dynamics elect...
15037    consider corotational wave maps ddimensional m...
15038    roxs mass j young star hosting directly imaged...
15039    study emergence dissipation atomic josephson j...
15040    satellite conjunction analysis assessment coll...
15041    recently proposal advanced detect unconstituti...
15042    affine lambdaterms lambdaterms bound variable ...
15043    chemotherapeutic response cancer cells given c...
15044    propose technique calculating understanding ei...
15045    present paper new classes wavelet functions pr...
15046    soft microrobots based photoresponsive materia...
15047    investigate using density matrix renormalizati...
15048    advances machine learning ml led adoption inte...
15049    wolynes theory electronically nonadiabatic rea...
15050    densityfunctional theory dft revolutionized co...
15051    since seminal observation roomtemperature lase...
15052    spin angleresolved photoemission spectroscopy ...
15053    modern machine learning techniques used constr...
15054    trending topics microblogs twitter valuable re...
15055    various optical methods measuring positions mi...
15056    explore correlations velocity metallicity poss...
15057    new type endtoend system textdependent speaker...
15058    process mining allows analysts exploit logs hi...
15059    let pdots pn qdots qn convex polytopes mathbbr...
15060    consider coloring graph vertex assigned fracti...
15061    several literatures authors give new thinking ...
15062    belief propagation approximation cavity method...
15063    observational learning type learning occurs fu...
15064    packet parsing key step sdnaware devices packe...
15065    address question concerning birational geometr...
15066    present microscopic theory raman response clea...
15067    show distribution symmetry naturally reductive...
15068    fabricate highmobility ptype fewlayer wse fiel...
15069    field reinforcement learning recent progress t...
15070    thesis study two problems based clustering alg...
15071    comparative molecular dynamics simulations hex...
15072    study nonstationary stochastic multiarmed band...
15073    main goal nasas kepler mission establish frequ...
15074    convolutional neural networks cnns shown great...
15075    present position paper advocating notion stoic...
15076    provide expressions nonperturbative matching e...
15077    develop refined strichartz estimates l regular...
15078    present test determining substochastic matrix ...
15079    search engines play important role everyday li...
15080    reverse spacetime rst sinegordon sinhgordon no...
15081    present study impact mn substitution geometric...
15082    given sample bids independent auctions paper e...
15083    contemporary web pages increasingly sophistica...
15084    work conducted survey different registration a...
15085    person reidentification person reid crucial ta...
15086    let sxxdotsxn set distinct positive integers l...
15087    paper investigates two strategies reduce commu...
15088    suppose omega subseteq rrsetminusset two sets ...
15089    modern investigation economics sciences requir...
15090    work characterized changes dynamics twodimensi...
15091    given field f operatornamecharf define unf max...
15092    able recognize emotions human users considered...
15093    sufficient statistics derived population size ...
15094    paper study bernstein polynomial model estimat...
15095    emphlongest common extension emphlce problem p...
15096    materials design development typically takes s...
15097    propose unified framework speed existing stoch...
15098    power prediction demand vital power system del...
15099    growing interest developing accurate models al...
15100    relativistic quantum field theories compact ob...
15101    work make two improvements staggered grid hydr...
15102    vehicle climate control systems aim keep passe...
15103    truncated fourier operator mathscrfmathbbr mat...
15104    prove regular ntimes n square grid points inte...
15105    given list k sourcesink pairs edgeweighted gra...
15106    label shift refers phenomenon marginal probabi...
15107    increasing interest learning dynamics simulato...
15108    first billion years universe pivotal time star...
15109    often multiple labels obtained training exampl...
15110    introduce concept floquet topological magnons ...
15111    inspired recent interests developing machine l...
15112    global recruitment radical islamic movements s...
15113    interpretable machine learning tackles importa...
15114    doctoral work focuses three main problems rela...
15115    many complex systems represented networks prob...
15116    new variation blockchain proof work algorithm ...
15117    extensive precise robust recognition modeling ...
15118    linear parametervarying lpv systems jumps piec...
15119    consider problem identity testing recovering i...
15120    present thorough tightbinding analysis band st...
15121    increasing number sensors mobile internet thin...
15122    recently introduced mixed timeaveraging semicl...
15123    paper establish squarefunction estimates doubl...
15124    aim paper study poset isomorphism two support ...
15125    one main challenges probing reionization epoch...
15126    linearquadraticgaussian lqg control concerned ...
15127    detection tracking pose estimation surgical in...
15128    paper computing constrained approximate nash e...
15129    promising paradigm achieving highly efficient ...
15130    problem nongaussian component analysis ngca fi...
15131    acoustic ranging based indoor positioning solu...
15132    semisupervised learning ssl provides powerful ...
15133    concerned inverse scattering problem recoverin...
15134    introduce workable notion degree nonhomogeneou...
15135    paper develop theory complete mixability joint...
15136    guarantee security uniform random numbers gene...
15137    email cryptography applications often suffer m...
15138    study topological excitations twocomponent nem...
15139    statistical inference exponentialfamily models...
15140    propose mixed integer programming mip model it...
15141    recent announcement neptunesized exomoon candi...
15142    present datadriven framework called generative...
15143    eradicating hunger malnutrition key developmen...
15144    stress urinary incontinence sui urine leakage ...
15145    paper study compressibility random processes f...
15146    spacefilling designs popular choices computer ...
15147    adaptive stochastic gradient descent methods a...
15148    paper studies scenarios cyclic dominance coevo...
15149    deep networks recently shown vulnerable univer...
15150    investigate anomaly detection unsupervised fra...
15151    rapid miniaturization cost reduction computing...
15152    investigate effect bandlimited white gaussian ...
15153    signaltonoiseplusinterference ratio sinr outag...
15154    one important tools development smart grid sim...
15155    revealing adverse drug reactions adr essential...
15156    wellknown problem solve equations virtually fr...
15157    predicting traffic conditions recently explore...
15158    article addresses longstanding open problem ju...
15159    paper comprehensive introduction results grew ...
15160    rise usercontributed open source software oss ...
15161    design sparse spatially stretched tripole arra...
15162    almost sure hausdorff dimension limsup set ran...
15163    power electronics shrinks submicron scale ther...
15164    let vvv triple even dimensional vector spaces ...
15165    strassen shocked world showing two n x n matri...
15166    spiking neural network snn naturally inspires ...
15167    emphvitality arcnode graph respect maximum flo...
15168    paper presents new approach understanding deep...
15169    ability mammalian ear processing high frequenc...
15170    derive general expressions resonant inelastic ...
15171    paper investigate hamiltonian path problem con...
15172    address task ranking objects people blogs vert...
15173    multiple design iterations inevitable nanomete...
15174    consider inverse ising problem ie inference ne...
15175    studied emergence process active region ars an...
15176    let f lipschitz map subset stratified group ba...
15177    sleep plays vital role human health mental phy...
15178    study algebras tilting modules generated cogen...
15179    deep neural network models used medical image ...
15180    gaining detailed understanding water transport...
15181    recently authors de wolff introduced imaginary...
15182    fairnessaware classification receiving increas...
15183    community identification network important pro...
15184    stateoftheart static analysis tools verifying ...
15185    application naitl detectors search galactic da...
15186    finitedifference timedomain fdtd method well e...
15187    work considers stochastic nash game player sol...
15188    algebraic terms insertion npowers words may mo...
15189    origin nature extreme energy cosmic rays eecrs...
15190    propose precise ellipsometric method investiga...
15191    singleuser multipleinput multipleoutput sumimo...
15192    bistability multistationarity properties react...
15193    background silico drugtarget interaction dti p...
15194    penaltybased variable selection methods powerf...
15195    last three decades seen significant increase t...
15196    impact maximally possible batch size better ru...
15197    consider compositecomposite testing problems e...
15198    databased policy iterative control task presen...
15199    paper investigate metric properties quadrics c...
15200    transition metal dichalcogenides tmds exhibit ...
15201    review modify active set algorithm duembgen et...
15202    let ii factor von neumann subalgebra qsubset i...
15203    statistics machine learning approximation intr...
15204    work based essential linear analysis carried c...
15205    classical linear regression considered case re...
15206    paper consider witten laplacian forms give suf...
15207    p let function varphipx x xle varphipx pxp p x...
15208    report smallangle neutron scattering sans meas...
15209    derive asymptotic formulas solution derivative...
15210    develop general theory construction extended t...
15211    social network analysis provides meaningful in...
15212    understanding nature bulges disc galaxies prov...
15213    growth size complexity modern data challenges ...
15214    report measurement kll dielectronic recombinat...
15215    growing interest automatic speaker verificatio...
15216    face deidentification active topic amongst pri...
15217    comment dependency distance new perspective sy...
15218    precision pulsar timing requires optimization ...
15219    article withdrawn uploaded without coauthors k...
15220    traffic speed key indicator efficiency urban t...
15221    construct family vertex algebras associated fa...
15222    approximate model counting bitvector smt formu...
15223    develop family reformulations arbitrary consis...
15224    examine dense selfgravitating stellar systems ...
15225    propose new type hopf semimetals indexed pair ...
15226    present extensive study key problem online lea...
15227    report experimental studies influence symmetri...
15228    paper provides set sensitivity analysis activi...
15229    online writers journalism media increasingly c...
15230    accurate prediction suitable discourse connect...
15231    although reinforcement learning methods achiev...
15232    paper propose novel splitting receiver involve...
15233    paper establishes equality condition immse pro...
15234    gap ability collect interesting data ability a...
15235    paper models vector probabilities whose elemen...
15236    family information dispersal algorithms applie...
15237    group theoretical formulation schrammloewnerev...
15238    although explicit commutativitiy conditions se...
15239    radiative alphacapture alphagamma reactions pl...
15240    recall first gallaisimplicial complex deltagam...
15241    ensuring classifiers nondiscriminatory fair re...
15242    currently extensible access control markup lan...
15243    based results published recently j phys math t...
15244    purpose mri cell tracking used monitor immune ...
15245    present novel algorithm learning spectral dens...
15246    prove equivalence infinitesimal torelli theore...
15247    analyze threedimensional hydrodynamical simula...
15248    paper tackles reduction redundant repeating ge...
15249    consider lasso noiseless experiment one observ...
15250    transformer lifetime assessments plays vital r...
15251    future projection climate typically obtained c...
15252    random impedance networks widely used model de...
15253    purpose compare two methods use xray spectral ...
15254    many environments tiny subset states yield hig...
15255    study dynamics overdamped brownian particles d...
15256    ensemble kalman methodology inverse problems s...
15257    positron emission tomography pet functional im...
15258    electrochemistry underlying mechanism variety ...
15259    build new algebraic structures call genuine eq...
15260    given n vertices convex polygon cyclic order t...
15261    analysis molecular processes estimation timesc...
15262    present microlensing events korea microlensing...
15263    researchers use computational methods study co...
15264    skeletonbased human action recognition attract...
15265    work propose novel method quantifying distance...
15266    cognitive radar adapts transmit waveform respo...
15267    imitation learning algorithms learn viable pol...
15268    shape memory alloys often show complex hierarc...
15269    recent advances representation learning graphs...
15270    deep convolutional neural networks cnns based ...
15271    introduce bayesian approach modeling voigt pro...
15272    consider minimization submodular functions sub...
15273    evolution superconducting litiodelta insulatin...
15274    classes locally compact groups qualitative unc...
15275    additively separable hedonic games fractional ...
15276    present novel method solve image analogy probl...
15277    inverse problem antiplane elasticity determina...
15278    present construction hilbert space sections bu...
15279    article describes final solution team monkeyty...
15280    brain electroencephalography eeg classificatio...
15281    present casestudy demonstrating usefulness bay...
15282    ensemble kalman filter enkf important data ass...
15283    note devoted study homology class compact pois...
15284    paper provides alternative approach theory dyn...
15285    construction anisotropic triangulations desira...
15286    principal component analysis pca singular valu...
15287    twentyseven years ago one biggest societal cha...
15288    present second release valueadded catalogues l...
15289    machine learning impact people legal ethical c...
15290    recently resources tasks proposed go beyond st...
15291    generic model shape optimization problems cons...
15292    manifold admits genus reducible heegaard split...
15293    use programming languages wax wane across deca...
15294    establish link mathematical morphology map asp...
15295    book chapter introduces regression approaches ...
15296    data knowledge representation fundamental conc...
15297    artificial axon recently introduced synthetic ...
15298    paper multiobjective mathematical model used o...
15299    article study treewidth emphdisplay graph auxi...
15300    two meromorphic functions fz gz sharing small ...
15301    rutherford cable production wires plastically ...
15302    interpreting smallscale clustering galaxies ha...
15303    synthesis physical photocatalytic antibacteria...
15304    suppose sending k robots search real line cons...
15305    present implementation relativistic quantumche...
15306    problem efficiently characterizing degree sequ...
15307    convolutional sparse representations form spar...
15308    principal component analysis pca welldocumente...
15309    single molecule magnets smms singleion anisotr...
15310    compressive sensing cs combines data acquisiti...
15311    explore solutions automated labeling content b...
15312    robots coexist humans social world like crucia...
15313    give brief overview arxiv history describe cur...
15314    recent years realistic hydrodynamical simulati...
15315    chargeneutral circ domain walls separate domai...
15316    android apps designed cope stopstart events ev...
15317    strongly disordered spin chains invariant son ...
15318    use optothermal molecular energy storage nanos...
15319    using hybrid exchangecorrelation functional ab...
15320    genomics life science research data volume who...
15321    framework laplacian transport described robin ...
15322    deep generative models wildly successful learn...
15323    obtain optimal bayesian minimax rate unconstra...
15324    solve lifecycle model consumers chronological ...
15325    present complete consistent quantum theory gen...
15326    investigate drag reduction due flowinduced rec...
15327    success deep learning led rising interest gene...
15328    paper original heuristic algorithm empty vehic...
15329    derive direct way exact controllability free s...
15330    strategy sustainable development governance in...
15331    paper addresses problem automatic speech recog...
15332    prove following conjecture leighton moitra let...
15333    study transient behaviour dynamics complex sys...
15334    assuming widelybelieved arithmetic conjectures...
15335    recently proposed model foam impact air sea dr...
15336    paper discusses synthesis characterization com...
15337    use secure connections using https default mea...
15338    paper addresses question whether beneficial op...
15339    generalise notion separating intersection link...
15340    limbimaging ionospheric thermospheric extremeu...
15341    calculating onebody density profiles equilibri...
15342    security exploits include cyber threats comput...
15343    study quantum dynamics bosehubbard model ladde...
15344    inception network shown provide good performan...
15345    analyse kepler lightcurves exoplanet koib tran...
15346    present efficient practical algorithm online p...
15347    previous experiments found mixed results wheth...
15348    deep learning model proposed predicting blockl...
15349    define causal estimands experiments single tim...
15350    paper show sparse signals f representable line...
15351    report results xray spectroscopy raman measure...
15352    forthcoming applications concerning humanoid r...
15353    forwardbackward selection one basic commonlyus...
15354    explore impact dimensionality scattering small...
15355    new type quadrature developed gauss quadrature...
15356    protection number plane tree minimal distance ...
15357    e unit sphere mathbbr let pie orthogonal proje...
15358    classical galois theory deals certain finite a...
15359    recent paper ws rossi p frasca f fagnani avera...
15360    runtime monitoring lightweight dynamic verific...
15361    questions require counting variety objects ima...
15362    choice model class fundamental statistical lea...
15363    study deep linear network expressed form matri...
15364    reynolds parametricity theory captures propert...
15365    program schema defines class programs identica...
15366    polarized topics often spark discussion debate...
15367    study problem cooperative multiagent reinforce...
15368    machine learning increasingly prevalent stock ...
15369    let mathbb qnc complete simplyconnected ndimen...
15370    plasticity zirconium alloys mainly controlled ...
15371    fourier optics principle using fourier transfo...
15372    densitybased clustering relies idea linking gr...
15373    report provides introduction machine learning ...
15374    let us say nsided polygon semiregular circumsc...
15375    class cressieread empirical likelihoods constr...
15376    aim paper prove generalization famous theorem ...
15377    set density functionals coming different rungs...
15378    use direct numerical integration vlasov equati...
15379    efficient simulation isotropic gaussian random...
15380    paper concerned initialboundary value problem ...
15381    examine velocity profile coherent vortices app...
15382    estimating human longevity computing life expe...
15383    deep learning given way new era machine learni...
15384    fracinstitutions introduced extension institut...
15385    postulated good representation one disentangle...
15386    boundary value problem could represent transce...
15387    ddimensional quantum system subjected periodic...
15388    data torrent unleashed current upcoming astron...
15389    ancient phrase roads lead rome applies chemist...
15390    paper study anisotropic variant rudinosherfate...
15391    paper first study partial regularity weak solu...
15392    paper studies optimal control problem string v...
15393    kernelbased methods exhibit welldocumented per...
15394    deep neural networks gained tremendous popular...
15395    paper construct regular sequences arise natura...
15396    perform zeeman spectroscopy rydberg electromag...
15397    propose principled method gradientbased regula...
15398    larger deeper neural network architectures del...
15399    paper describes experience preparing testing s...
15400    drone delivery hot topic industry past years h...
15401    past decade seen significant advances cmwave v...
15402    let x locally compact zerodimensional space le...
15403    show gurarij space mathbbg noncommutative anal...
15404    securitysensitive applications success machine...
15405    conventional cryptography solutions illsuited ...
15406    consider online oneclass collaborative filteri...
15407    controlling nanocircuits single electron spin ...
15408    autonomous ai systems entering human society n...
15409    complexity size software projects increases re...
15410    paper studies auction design problem seller se...
15411    one fundamental tasks understanding genomics p...
15412    compute effects generic shortrange interaction...
15413    refraction index quantized lossy composite rig...
15414    method model averaging become important tool d...
15415    deep neural networks dnns achieve stateofthear...
15416    consider refinement differential privacy per i...
15417    define holomorphic quadratic differentials spa...
15418    paper use python implement two efficient modul...
15419    due freely available tailored software bayesia...
15420    work addresses problem path tracking control s...
15421    study time decay estimates fourthorder schrdin...
15422    problem recovering signal power spectrum calle...
15423    purpose note verify results attained admit ext...
15424    paper develop methods extend minimal hypersurf...
15425    concentration inequalities form essential tool...
15426    consider four structures mathbbz mathrmsqfmath...
15427    kotliar ruckenstein slaveboson representation ...
15428    deep neural networks trained using softmax lay...
15429    consider decidability problems selfsimilar sem...
15430    find negative charges armchair singlewalled ca...
15431    deep neural networks dnns become increasingly ...
15432    attributed graphs model real networks enrichin...
15433    thermochemical models used past constrain deep...
15434    antibodies critical part immune system functio...
15435    kcualoso highly onedimensional spin inequilate...
15436    offer umbrella type result extends weak conver...
15437    parsing expression grammars pegs formalism use...
15438    paper describes pressure ulcers online website...
15439    study brain networks including derived functio...
15440    paper obtain new results related minkowski fra...
15441    major challenges automatic track counting dist...
15442    recently impressive denoising results achieved...
15443    structure based ligand discovery one successfu...
15444    bayesian update viewed variational problem cha...
15445    report finding unidirectional electronic prope...
15446    paper propose mixture model sparsemix clusteri...
15447    image registration fundamental issue multispec...
15448    many privacy mechanisms reveal highlevel infor...
15449    present work consider multifidelity surrogate ...
15450    statistical performance bounds reinforcement l...
15451    proper semantic representation encoding side i...
15452    consider variation problem corruption detectio...
15453    describe analyze algorithm computing homology ...
15454    paper propose distributed iterated hard thresh...
15455    let mathcala subhopf algebra mod steenrod alge...
15456    every rational number pq defines rational base...
15457    many efficient algorithms strong theoretical g...
15458    connections nodes fully connected neural netwo...
15459    use boltzmann transport equation study time ev...
15460    obtain formula turaevviro invariants link comp...
15461    detection frauds credit card transactions majo...
15462    popular approach semisupervised learning proce...
15463    applying machine learning techniques problems ...
15464    consider system differential equations mongeka...
15465    lowcomplexity point orthogonal approximate dct...
15466    classical descartes rule signs limits number p...
15467    multiple sequence alignment msa plays key role...
15468    evergreens science papers display continual ri...
15469    paper propose method model speaker session var...
15470    many applications systemssynthetic biology par...
15471    banachs fixed point theorem contraction maps w...
15472    paper addresses problem coordination fleet mob...
15473    note give socalled representative classificati...
15474    importance able verify quantum computation del...
15475    introduce spreading technique deduce finitenes...
15476    deep learning algorithms connectomics rely upo...
15477    consider problem classifying business process ...
15478    problem analyzing number number field extensio...
15479    introduce new formulation hidden parameter mar...
15480    sampling lattice gaussian distribution plays i...
15481    propose sleaping algorithm acceleration gilles...
15482    goal present study develop polymeric matrix fi...
15483    several independent algorithms computercalcula...
15484    unprecedented high volumes data becoming avail...
15485    paper focuses bestarm identification multiarme...
15486    work introduces novel reinterpretation structu...
15487    stateoftheart automatic speech recognition asr...
15488    consider compound testing problem within gauss...
15489    researchers often datasets measuring features ...
15490    consider framework proposed burgard kjaer deri...
15491    th symposium educational advances artificial i...
15492    arrangements particles forces granular materia...
15493    introduce several new constructions perfect pe...
15494    show nonlinear schwarzian differential equatio...
15495    state estimation heavytailed process measureme...
15496    study squeezed vacuum field generated hot rb v...
15497    paper describe improved algorithms compute jan...
15498    paper consider multistage stochastic optimizat...
15499    constrained model predictive control mpc widel...
15500    traditional recommendation systems rely past u...
15501    recently endtoend models become popular approa...
15502    sheng zuos characteristic forms invariants var...
15503    investigate quantum graphs infinitely many ver...
15504    recently ciufolini et al reported test general...
15505    ngc p ultraluminous xray source harboring accr...
15506    new largescale parallel multiconfigurational s...
15507    start gaia era time come address major challen...
15508    propose multiobjective framework learn seconda...
15509    diarization audio recordings adhoc mobile devi...
15510    model incentive salience function stimulus val...
15511    lecture notes based three lectures given anton...
15512    report detection extended halpha emission tip ...
15513    consider problem estimating large rankone tens...
15514    paper parameter estimation problem multitimesc...
15515    introduce new method qualify goodness fit para...
15516    nongaussian stochastic dynamical systems mean ...
15517    study modal team logic mtl teamsemantical exte...
15518    propose cooperative training cot training gene...
15519    associate iterated function system consisting ...
15520    paper study energy decay thermoelastic bresse ...
15521    study scenario baryon asymmetry universe arise...
15522    noinsulation ni rebco magnets many advantages ...
15523    paper propose implicit gradient descent algori...
15524    compute frobenius number sequences triangular ...
15525    solitary waves propagation baryonic density pe...
15526    recent einsteinpodolskyrosenbohm experiments g...
15527    exist tilings plane pairwise noncongruent tria...
15528    paper study cauchy problem radially symmetric ...
15529    propose general framework called network disse...
15530    paper study systole growth arithmetic locally ...
15531    featured transition system transition system t...
15532    introduce schrdinger model unitary irreducible...
15533    analysing new emerging infectious disease outb...
15534    evolve binary mux trees generations evolving p...
15535    openstreetmap offers valuable source worldwide...
15536    detection planetary ring exoplanets remains on...
15537    scientific discovery via numerical simulations...
15538    dimension reduction often preliminary step ana...
15539    flag domain real g complex semismiple lie grou...
15540    nominal transition systems ntss parrow et al d...
15541    solve problem r nandakumar proving tiling plan...
15542    phase limitations continuoustime discretetime ...
15543    investigate using hydrodynamic simulations fra...
15544    propose simple generic layer formulation exten...
15545    stellar shells low surface brightness arcs ove...
15546    present monitoring approach verifying systems ...
15547    recent years deep learning algorithms become i...
15548    paper adaptive nonuniform compressive sampling...
15549    order automate verification process regulatory...
15550    survey problems results combinatorial geometry...
15551    recently proposed learning algorithm massive n...
15552    consider recovery regression coefficients deno...
15553    way nonequilibrium greens function simulations...
15554    liar paradox widely seen serious problem try e...
15555    chapter highdimensional abc appear forthcoming...
15556    unlike web web page global url reach specific ...
15557    chapter introduce digital holographic microsco...
15558    data compression popular technique improving e...
15559    task translating programming languages differs...
15560    initializing elements array specified value ba...
15561    present simple generative framework learning p...
15562    paper presents probabilistic method capturing ...
15563    mobileedge computing mec emerging paradigm pro...
15564    discuss three spacetime dimensional mathbbcmat...
15565    observed solartype binaries within pc sun prev...
15566    integers n k density halesjewett number cnk de...
15567    paper explores entertainment experience learni...
15568    blind deconvolution ubiquitous problem recover...
15569    illustrate potential applications machine lear...
15570    paper investigate power law pagerank component...
15571    wholesale electricity market designs practice ...
15572    fan et al recently introduced remarkable metho...
15573    goal making highresolution forecasts regional ...
15574    paws tool analyse behaviour weighted automata ...
15575    measurements plasma electric fields essential ...
15576    r popular language programming environment dat...
15577    humans routinely asked evaluate performance in...
15578    path planning important problem robotics one w...
15579    deeplearning inference accelerator synthesized...
15580    problem determining multiplets forces sets for...
15581    last decade researchers engineers developed va...
15582    based independently distributed x sim nptheta ...
15583    interpretation electroencephalogram eeg signal...
15584    feiginstoyanovskys type subspaces affine lie a...
15585    present two related methods deriving connectiv...
15586    present measurement baryon acoustic oscillatio...
15587    examine gammaray optical light curves three br...
15588    ground state diatomic molecules nature inevita...
15589    tk tokaitokamioka longbaseline neutrino experi...
15590    general class contractions variety x base disc...
15591    present first simultaneous photometric spectro...
15592    realize scattering states lossy chaotic twodim...
15593    present simple model nonequilibrium selforgani...
15594    theoretical study currentdriven dynamics magne...
15595    paper prove rigidity result equality case penr...
15596    introduce algebra model study higher order sum...
15597    problems nonparametric hypothesis testing intr...
15598    major goal unsupervised learning discover data...
15599    conformal coating technique nanocarbon develop...
15600    context th release sdss moving object catalog ...
15601    critical behavior random transversefield ising...
15602    paper extend known methodology fitting stable ...
15603    user participation online communities driven i...
15604    detection software vulnerabilities vulnerabili...
15605    investigate problem learning discrete undirect...
15606    consider orthogonal decompositions invariant s...
15607    paper propose novel object proposal generation...
15608    study effects quantum fluctuations dynamical g...
15609    independent component analysis ica cornerstone...
15610    general thus popular model autonomous systems ...
15611    barber candes introduced new variable selectio...
15612    paper sequel gh notion marking isolated hypers...
15613    propose soaalloc dynamic object allocator sing...
15614    radiological characterization contaminated ele...
15615    note derive backward automatic differentiation...
15616    fundamental atomic parameters oscillator stren...
15617    hamiltonian truncation aka truncated spectrum ...
15618    critical challenging problem reinforcement lea...
15619    high penetration renewable energy source makes...
15620    summarize recent findings proposed framework l...
15621    intensive studies three decades elucidated mul...
15622    vector autoregressive moving average varma mod...
15623    investigating information flow general parityt...
15624    popular strategies capture subjective judgment...
15625    world connected internet abundance internet us...
15626    random network models play prominent role mode...
15627    largescale dipolar surface magnetic fields det...
15628    focusing nls equation simplest universal model...
15629    present first discoveries survey zgtrsim quasa...
15630    prove solution timedependent schrdinger equati...
15631    one puzzling features hightemperature cuprate ...
15632    thermal noise expected one noise sources limit...
15633    effort understand meaning intermediate represe...
15634    investigate star formation efficiency signific...
15635    hybrid digitalanalog hda systems resource allo...
15636    present experimental study nonequilibrium tunn...
15637    aid variety research studies propose twirole h...
15638    protection user privacy important concern mach...
15639    studied peculiarities selective reflection rb ...
15640    lambdacalculus peculiar computational model wh...
15641    paper viewed sequel authors long survey zimmer...
15642    paper proposes new algorithm recovery belief n...
15643    mechanical properties cell depend crucially te...
15644    widespread adoption dissemination online news ...
15645    interaction chchptch methylcyclopentadienyltri...
15646    examine hbeta lick index sample sim massive rm...
15647    present collective coordinate approach study c...
15648    class selfdecomposable distributions free prob...
15649    cloud storage systems hot data usually replica...
15650    binomial system electoral system unique world ...
15651    prove highly uniform stability almostnear theo...
15652    pandapower python based bsdlicensed power syst...
15653    consider lightinduced binding motion dielectri...
15654    study rates convergence central limit theorems...
15655    anomaly detection aims detect abnormal events ...
15656    magnetic adatom chain proximity coupled conven...
15657    certain fibered hyperbolic manifolds admit mat...
15658    graph representations offer powerful intuitive...
15659    computational fluid dynamics cfd hugely import...
15660    firstorder optimization methods stochastic gra...
15661    consider stochastic shortest path ssp problem ...
15662    study existence properties onedimensional edge...
15663    turmit turing machine works twodimensional gri...
15664    bitcoin cryptocurrencies surged popularity las...
15665    let mathbbk infinite field prove variety antic...
15666    present properties magnetooptical trap mot caf...
15667    paper construct nonautonomous version hietarin...
15668    performancecritical machine learning models ro...
15669    paper presents realization approach spatial st...
15670    fractional quantum hallsuperconductor heterost...
15671    paper present first results pilot experiment c...
15672    encoderdecoder gans architectures eg bigan ali...
15673    paper concerned existence least energy signcha...
15674    study action monads categories equipped severa...
15675    evacuation one main disaster management soluti...
15676    discovery topological insulators reformed mode...
15677    deep convolutional neural network cnn inferenc...
15678    formation large voids cosmic web initial adiab...
15679    stability sequence replication crucial emergen...
15680    paper obtain variational characterization hard...
15681    recent work demonstrated neural networks vulne...
15682    present first internal delensing cmb maps temp...
15683    introducing programmability automated verifica...
15684    todays cyberenabled smart grids high penetrati...
15685    article provide new algorithm solving constrai...
15686    geodetic vlbi technique capable measuring suns...
15687    unbiased estimator ellipticity object noisy im...
15688    several spectral bounds percolation transition...
15689    paper extend works tancer malgouyres francs sh...
15690    paper present approach solve physicsbased rein...
15691    acquisition labeled training samples affective...
15692    paper sparse markov decision process mdp novel...
15693    dustforming nova v oph unique first nova provi...
15694    article consists two parts part present formul...
15695    data stream mining problem caused widely conce...
15696    investigate lowenergy scaling behavior interac...
15697    positively resp negatively associated point pr...
15698    increasing abundance digital footprints left h...
15699    present finite difference time domain fdtd mod...
15700    paper investigates achievable rates additive w...
15701    consider problem probabilistic projection tota...
15702    persistent homology typically studies evolutio...
15703    using focused electronbeaminduced deposition f...
15704    developing efficient numerical algorithms solu...
15705    study optical forces acting upon semiconductor...
15706    intersubject variability individuals poses cha...
15707    bell inequalities usually derived assuming loc...
15708    paper find explicit formulas higher order deri...
15709    eastrogam enhanced astrogam breakthrough obser...
15710    report magnetic thermodynamic properties mo ma...
15711    paper introduce concept eventness audio event ...
15712    work proposes new online algorithm estimating ...
15713    given orthogonal polygon p n vertices goal wat...
15714    standard theorem nonsmooth analysis states pie...
15715    propose class intrinsic gaussian processes ing...
15716    existing approaches coexisting communicationra...
15717    many settings important model capable providin...
15718    language corpus probability word occurs n time...
15719    many prediction problems arise context robotic...
15720    propose universal experiment measure different...
15721    derive explicit formula scalar curvature twoto...
15722    paper presents multipose face recognition appr...
15723    twisted equivariant ktheory given freed moore ...
15724    report observations magnetoresistance quantum ...
15725    frchet mean variance provide way obtaining mea...
15726    backward simulation stochastic process defined...
15727    present spectral inference networks framework ...
15728    appropriate models spatially autocorrelated da...
15729    investigate learning differential geometric st...
15730    investigate whether training load monitoring d...
15731    spectroscopically investigate hyperfine rotati...
15732    describe hopf ring structure direct sum cohomo...
15733    oneway quantum computation wqc model initial h...
15734    note shall compute categorical entropy autoequ...
15735    development widespread use wireless devices re...
15736    study subdiffusive wavepacket spreading disord...
15737    origin activity solar corona longstanding prob...
15738    online creative communities able develop large...
15739    mutualexclusion property locks stands way scal...
15740    concepts unitary evolution matrices associativ...
15741    gene regulatory networks play crucial role con...
15742    paper discuss recent results generalized metri...
15743    present paper demonstrate results statistical ...
15744    visionlanguage navigation vln task navigating ...
15745    fermilab committed upgrading accelerator compl...
15746    given clustertilted algebra tame type proved d...
15747    article discusses automation tensor algorithms...
15748    conventional methods estimating latent behavio...
15749    propose rescaled lasso premultipying lasso mat...
15750    present results smoothed particle hydrodynamic...
15751    redox flow batteries rfbs potential solutions ...
15752    work analyzed magnetocaloric effect mce tsalli...
15753    framework mssm inflation matter gravitino prod...
15754    blind spots one causes road accidents hilly fl...
15755    paper study rotabaxter modules emphasis role p...
15756    viral videos reach global penetration travelin...
15757    work find equation relates ricci curvature rie...
15758    logic programming prolog widely used supply pe...
15759    paper show transformations modified jacobi ber...
15760    let ngeq kgeq two integers subset dotsk graph ...
15761    electromagnetic properties single crystal terb...
15762    set quantify number density quiescent massive ...
15763    probabilistic load forecasts provide comprehen...
15764    show nonlinear stability instability results s...
15765    article jags software program systematically i...
15766    model based iterative reconstruction mbir algo...
15767    negotiation diagrams model concurrent computat...
15768    theory hitchin systems something like global t...
15769    confidence fundamental concept statistics tend...
15770    investigate symmetry reduction optimal control...
15771    provide new simple characterization multivaria...
15772    accelerated gradient ag methods breakthroughs ...
15773    use energy packet network paradigms investigat...
15774    paper prove refined version theorem tamagawa m...
15775    recent paper lopezsuarez neri l gammaitoni lng...
15776    let sigmadelta quasi derivation ring r mr righ...
15777    aim paper define bivariate exponentiated gener...
15778    despite attractive features congruentmelted li...
15779    taobao largest online retail platform world pr...
15780    consider recursive decoding techniques rm code...
15781    report design performance mixedsignal applicat...
15782    paper provides efficient solutions maximize pr...
15783    study higher gradient integrability distributi...
15784    careful analyses photometric star count data a...
15785    global crisis provoked heightened interest amo...
15786    identifying arbitrary topologies power network...
15787    gaussian belief propagation bp widely used dis...
15788    provided analogue banachalaoglu theorem hilber...
15789    consider problem enabling robust range estimat...
15790    incentivized advertising new ad format gaining...
15791    selfannihilation dark matter particles mass me...
15792    prove orbifold version zvonkines relsv formula...
15793    study connected locally compact metric spaces ...
15794    prove abstract theorem giving langle trangleep...
15795    userbased collaborative filtering cf one popul...
15796    direct imaging exoplanets requires detection f...
15797    rapidly growing number large network analysis ...
15798    paper prove gradient ideal morse polynomial ra...
15799    image instance retrieval problem retrieving im...
15800    study phase transitions two dimensional weakly...
15801    work study thermal conductivity insitu ringope...
15802    investigate forecasting ability commonly used ...
15803    recent years seen increasing need location awa...
15804    massive popularity online social media provide...
15805    investigate characteristics factual emotional ...
15806    paper develop conservative sharpinterface meth...
15807    among several developments field economic comp...
15808    twodimensional materials graphene mos attracti...
15809    perform ultrasound velocity measurements singl...
15810    propose oneclass neural network ocnn model det...
15811    opensource vehicle testbed enable exploration ...
15812    consider minimization nonconvex functions typi...
15813    following advent electromagnetic metamaterials...
15814    community structure describes organization net...
15815    weak attractive interactions spinimbalanced fe...
15816    aim paper study twoweight norm inequalities fr...
15817    say algorithm stable small changes input resul...
15818    turing test long considered measure artificial...
15819    investigate basic thermal mechanical structura...
15820    present magnetohydrodynamic mhd simulations ma...
15821    discovering statistical structure links fundam...
15822    signature closed oriented manifolds wellknown ...
15823    develop new closed form representations sums n...
15824    studied intermediate filaments ifs retina pied...
15825    using purple mountain observatory delingha pmo...
15826    test theory using data common focus correctnes...
15827    paper presents clustering approach allows rigo...
15828    doublestranded dna may contain mismatched base...
15829    setting weighted combinatorial finite infinite...
15830    paper characterize surjective linear variation...
15831    existing visual reasoning datasets visual ques...
15832    article characterize possible cases may occur ...
15833    base station cooperation heterogeneous wireles...
15834    srruo sro films known exhibit insulating behav...
15835    prove local wellposedness regular spaces beale...
15836    study question natural interpretations quantum...
15837    paper propose dynamical systems perspective ex...
15838    paper consider general matrix factorization mo...
15839    error bound conditions ebc properties characte...
15840    runtime performance modern sat solvers random ...
15841    little known different types advertising affec...
15842    te nmr studies carried bismuth telluride topol...
15843    discuss ricciflat model metrics mathbbc cone s...
15844    motivated stationkeeping applications various ...
15845    carried molecular dynamics simulations md usin...
15846    show subcategory mcluster category type tilded...
15847    solid collaboration developed intelligent read...
15848    paper propose novel scheme data hiding fingerp...
15849    consider asymptotic normality linear rank stat...
15850    document contains notes lecture gave journes n...
15851    demonstrate presence chaos stochastic simulati...
15852    questionanswering qa video contents significan...
15853    work proposes study quality service qos cognit...
15854    introduce notion kideals associated kuratowski...
15855    given functional data samples survival process...
15856    determine three invariants arnolds jinvariant ...
15857    motivated problem deducing lpbounds second fun...
15858    biomedical sciences increasingly recognising r...
15859    given classical channel stochastic map inputs ...
15860    model compression significant wide adoption re...
15861    thunderstorms produce strong electric fields r...
15862    cox proportional hazards model measurement err...
15863    paper study efficiency egoistic altruistic str...
15864    learning drive faithfully highly stochastic ur...
15865    anomaly detection ad task corresponds identify...
15866    accurate calculation proton ranges phantoms de...
15867    show level sets automorphisms free groups resp...
15868    machine learning algorithms typically run larg...
15869    work consider detection manoeuvring small obje...
15870    recent rapid progress observations circumstell...
15871    memorytype control charts ewma cusum powerful ...
15872    short note obtain error estimates riemann sums...
15873    observed constraints variability proton electr...
15874    work introduce pose interpreter networks dof o...
15875    regularized risk minimization procedure regres...
15876    one primary objectives human brain mapping div...
15877    deep generative models achieved impressive suc...
15878    face recognition fr methods report significant...
15879    ellenberg gijswijt gave recently new exponenti...
15880    study role environment evolution central satel...
15881    investigate configuration space deltamanipulat...
15882    earlier decade socalled feast algorithm releas...
15883    element monoid h set lengths mathsf l subset m...
15884    increasing interests spinorbit torque sot vari...
15885    static program analysis used summarize propert...
15886    major challenge solar heliospheric physics und...
15887    paper construct explicit smooth solutions stro...
15888    common clustering algorithms require multiple ...
15889    implicit models one often interpolates sampled...
15890    consider optimal control problem subject semil...
15891    paper consider stochastic model incompressible...
15892    describe set tools services strategies latin a...
15893    article investigate duistermaatheckman theorem...
15894    paper examines behavior price anarchy function...
15895    line terms reference icfa neutrino panel devel...
15896    many scientific data sets contain temporal dim...
15897    first step model emotional state person build ...
15898    many situations across computational science e...
15899    present tutorial determination physical condit...
15900    work propose simple effective method interpret...
15901    adversarial learning probabilistic models rece...
15902    inference using deep neural networks often out...
15903    consider factorization problem matrix symbols ...
15904    paper presents study metaphorism pattern relat...
15905    show orthogonal projection operator onto range...
15906    determine joint limiting distribution adjacent...
15907    paper prove fundamental theorems holomorphic c...
15908    use ldau approach search possible ordered grou...
15909    last decades vaste amount evidence existence d...
15910    nuclear starburst discs nsds starforming discs...
15911    despite vast morphological diversity many inve...
15912    wellknown randomcoefficient ar process long me...
15913    hilsumskandalis maps differential geometry stu...
15914    present explicit version berger coburn lebows ...
15915    paper provides results application boundary fe...
15916    polyethylene naphtalate pen mechanically favor...
15917    expanded version third authors lecture stringm...
15918    consider prehomogeneous vector space pairs ter...
15919    tasks like code generation semantic parsing re...
15920    derivation approximate wave functions electron...
15921    oumuamua first bonafide interstellar planetesi...
15922    implementation discontinuous galerkin finite e...
15923    quantity distribution land eligible renewable ...
15924    conduct extensive empirical study shortterm el...
15925    let h subgroup fundamental group pixx extendin...
15926    analyze dataset providing complete information...
15927    present systematical study via scanning tunnel...
15928    paper propose novel generative models creating...
15929    investigate mixed conic quadratic optimization...
15930    atmospheres exoplanets reveal properties beyon...
15931    concurrent systems form synchronisation typica...
15932    gaussian graphical models used determining con...
15933    deep learning models achieved stateoftheart ac...
15934    unit vector field closed immersed euclidean hy...
15935    lyapunov rank proper cone k finite dimensional...
15936    detecting feature interactions imperative accu...
15937    molecular adsorption surfaces plays important ...
15938    theoretically investigate mechanism generate l...
15939    analysis cancer genomic data long suffered cur...
15940    graph fourier transform gft general dense requ...
15941    neural networks capable learning rich nonlinea...
15942    prizecollecting steiner forest pcsf problem gi...
15943    large literature semiparametric estimation ave...
15944    study discretizations polynomial processes usi...
15945    paper propose new method estimation constructi...
15946    present extragalactic survey using observation...
15947    degenerate autonomous kirchhoff equation set m...
15948    doppler tracking data change lunar mission use...
15949    modern tracking technology made collection lar...
15950    propose topic compositional neural language mo...
15951    numerically investigate electronic transport p...
15952    generative modeling high dimensional data like...
15953    paper consider ddimensional parabolicelliptic ...
15954    paper prove explicit formulas willmore surface...
15955    consider problem optimal budget allocation cro...
15956    study unsupervised generative modeling terms o...
15957    paper study gauss map free boundary minimal su...
15958    computational approaches finding nontrivial in...
15959    present variation autoencoder ae explicitly ma...
15960    planning motions two robot arms move object co...
15961    shortbaseline neutrino sbn program shortbaseli...
15962    novel algorithm proposed candecompparafac tens...
15963    testing conditional independence multivariate ...
15964    despite overwhelming capacity overfit deep lea...
15965    jintegral recognized fundamental parameter fra...
15966    revealed preference theory studies possibility...
15967    view universe genomic regions harboring variou...
15968    article discuss verification study operational...
15969    use plasmon rulers follow conformational dynam...
15970    shown total set equations determines dynamics ...
15971    short circuit ratio scr widely applied analyze...
15972    work addressed issue applying stochastic class...
15973    largebatch sgd important scaling training deep...
15974    recent years seen flurry activities designing ...
15975    new numerical solutions socalled selection pro...
15976    report sptclj giant system arcs created cluste...
15977    one interesting features bayesian optimization...
15978    paper prove existence nonnegative ground state...
15979    paper aims apply complex octonion explore infl...
15980    knowledge graphs versatile framework encode ri...
15981    emerging smart grid techniques cyber attackers...
15982    thanks multispacecraft mission recently possib...
15983    field k prove ith homology groups glnk slnk sp...
15984    highsignal noise observations lyalpha forest t...
15985    intermediatevalence compound smb wellknown kon...
15986    dramatic increase data connectivity demand add...
15987    techniques known nonlinear set membership pred...
15988    despite enormous progress object detection cla...
15989    paper considers network sensors without fusion...
15990    recently open geometry fourier modal method ba...
15991    apply liebrobinson bounds multicommutators rec...
15992    cloud users little visibility performance char...
15993    paper new hpadaptive strategy elliptic problem...
15994    recent space missions provided information phy...
15995    titanium dioxide tio wide band gap semiconduct...
15996    generative adversarial nets gans represent imp...
15997    present cloud storage used searchable symmetri...
15998    control electron spin external means key issue...
15999    report observation phase space modulations cor...
16000    unimodular random graph grho consider deformat...
16001    paper presents selfsupervised method detecting...
16002    traquad autonomous tracking quadcopter capable...
16003    persistence diagrams widely recognized compact...
16004    pair recent papers andrews fraenkel sellers pr...
16005    mobile computing one main drivers innovation y...
16006    midinfrared mir spectral range pertaining impo...
16007    networks elastic fibers ubiquitous biological ...
16008    elliptic curve e defined padic field k pisogen...
16009    android apps cooperate message passing via int...
16010    usability small devices smartphones interactiv...
16011    construct complexitybased morphospace study sy...
16012    use coupled cluster method ccm study frustrate...
16013    study polyhedron n vertices fixed volume minim...
16014    develop theory weakly interacting fermionic at...
16015    heterogeneitygap different modalities brings s...
16016    paper analyzes iterationcomplexity generalized...
16017    vehicle bypassing known negatively affect dela...
16018    use secular model describe nonresonant dynamic...
16019    note investigates stability linear nonlinear s...
16020    develop terminology methods working maximally ...
16021    paper introduces new surgical endeffector prob...
16022    assisted availability data high performance co...
16023    deep learning dl guide understanding computati...
16024    quantum functional inequalities eg logarithmic...
16025    paper proposes new family algorithms training ...
16026    propose generalization best arm identification...
16027    paper study new class finsler metrics falphaph...
16028    optimal transport recently gained interest mac...
16029    present novel analysis metalpoor star sample c...
16030    recently intervention calculus dag absent ida ...
16031    note present new proof cyclotomic integers con...
16032    study stochastic homogenization cauchy problem...
16033    article presents survey automatic software rep...
16034    technical details balloon stratospheric missio...
16035    selfdriving technology advancing rapidly albei...
16036    synoptic view longestablished theory light pro...
16037    nucleation growth calcite important research s...
16038    galactic magnetic field gmf plays role many as...
16039    mechanisms organs acquire functional structure...
16040    national toxicology program issuing final repo...
16041    answer following longstanding question kolchin...
16042    investigated outofplane exchange bias system b...
16043    recommendation systems widely used different u...
16044    complex event processing cep emerged unifying ...
16045    electroencephalography eeg source imaging inve...
16046    present multiwavelength compilation new previo...
16047    concept distance covariancecorrelation introdu...
16048    letter presents novel method estimate relative...
16049    show contrast free electron model standard bcs...
16050    decisionmakers faced challenge estimating like...
16051    present new qfunction operator temporal differ...
16052    study entanglement entropy gapped phases matte...
16053    paper concerned two frequencydependent sis epi...
16054    gravitational clustering nonlinear regime rema...
16055    independent component analysis ica problem lea...
16056    round trip time light pulse limits maximum det...
16057    continuity gauge fixing condition ncdotpartial...
16058    asymptotic theory approximate martingale estim...
16059    malignant melanoma one rapidly increasing inci...
16060    consider problem improving kernel approximatio...
16061    various measures used estimate bias unfairness...
16062    entropy quantum system measure randomness appl...
16063    studying tropical cyclones using fplane axisym...
16064    present voice conversion challenge designed fo...
16065    companion paper developed efficient algebraic ...
16066    introduce imaginationaugmented agents ias nove...
16067    study impact quenched disorder random exchange...
16068    remotesensing system determine position hidden...
16069    algorithm create original compelling fashion d...
16070    paper discusses challenges faceted vocabulary ...
16071    reconstruction species phylogeny genomic data ...
16072    new amortized variancereduced gradient avrg al...
16073    paper considers novel framework detect communi...
16074    nanostructures open shell transition metal mol...
16075    inverse problem calculus variations one asked ...
16076    let mathbbk algebraically closed field charact...
16077    conventional textbook treatments electromagnet...
16078    large number sensors control units networked s...
16079    confidence interval procedures used low dimens...
16080    surfacefunctionalized nanomaterials act theran...
16081    nyquist ghost artifacts epi images originated ...
16082    classical binary search path aim detect unknow...
16083    adam optimizer exceedingly popular deep learni...
16084    wholesale electricity markets increasingly int...
16085    recently demonstrated textured closed surfaces...
16086    research automated image enhancement gained mo...
16087    radially outward flow fluid porous medium occu...
16088    even though transitivity central structural fe...
16089    hohenbergkohn theorem plays fundamental role d...
16090    digital sculpting popular means create models ...
16091    since tweet limited characters ambiguous diffi...
16092    paper consider precoder designs multiuser mult...
16093    sampling random graphs essential many applicat...
16094    forecasting fault failure fundamental elusive ...
16095    new upper limit mixing parameter hidden photon...
16096    three gap theorem also known steinhaus conject...
16097    st century astrophysicists confronted herculea...
16098    give elementary proof fact irreducible hyperbo...
16099    predicting unobserved entries partially observ...
16100    browsing finding relevant information banglade...
16101    let p graph vertex v pbackslash v forest let q...
16102    extend theory computation real numbers continu...
16103    capsule networks shown encouraging results tex...
16104    adversarial attack exploitative process minute...
16105    detailed monte carlostudy satisfiability thres...
16106    feast eigenvalue algorithm subspace iteration ...
16107    planar magnetic structures pmss periods solar ...
16108    feature map obtained denoising autoencoder dae...
16109    learning algorithms energy based boltzmann arc...
16110    dark energy plus cold dark matter lambdacdm co...
16111    alternating minimization heuristics seek solve...
16112    paper prove positivity denominator vectors hol...
16113    primordial black holes pbh dark matter singlef...
16114    supervised speech separation uses supervised l...
16115    challenge isogeometric analysis constructing a...
16116    paper provides theoretical justification super...
16117    report first experimental demonstration freque...
16118    study upper bounds weierstrass primary factors...
16119    prove certain conditions multigraded betti num...
16120    recent work learning ontologies hierarchical p...
16121    past decade discovery active pharmaceutical su...
16122    define study probability monad category comple...
16123    design robotic systems safely efficiently oper...
16124    aim paper show analytically numerically existe...
16125    scalable quantum photonic systems require effi...
16126    tasks search recommendation become increas ing...
16127    investigate groundstate properties collective ...
16128    waves used probe image unknown medium passive ...
16129    investigate anderson localization nonhermitian...
16130    using lift nonperturbative volume stabilizatio...
16131    background pairwise network metaanalyses using...
16132    central question statistical learning design a...
16133    machine learning ensemble methods demonstrated...
16134    demonstrate full functionality circuit generat...
16135    paper derive family fast stable algorithms mul...
16136    paper develops variational continual learning ...
16137    multiple testing problem independent tests cla...
16138    paper investigates information theoretic groun...
16139    invariant one central topics science technolog...
16140    windowed orthogonal frequencydivision multiple...
16141    neural networks recently lot success many task...
16142    investigate noknowledge measurementbased feedb...
16143    earthquakes seismogenic plate boundaries respo...
16144    study continuoustime assetallocation problem f...
16145    proliferation fake news social media opened ne...
16146    recently growing interest development statisti...
16147    seek infer parameters ergodic markov process s...
16148    textcnn convolutional neural network text usef...
16149    political polarization united states continues...
16150    present probabilistic approach generate small ...
16151    recent advances generative adversarial network...
16152    feature extraction becomes increasingly import...
16153    sentiment classification sarcasm detection imp...
16154    review paper discusses context used neural mac...
16155    pair typeii dirac cones pdte recently predicte...
16156    propose novel metropolishastings algorithm sam...
16157    present weak lensing analysis sample sdss comp...
16158    complexity knowledge production complex system...
16159    classify certain subcategories quotients exact...
16160    present new approach search first order invari...
16161    statistical analyses urban environments recent...
16162    paper technique suggested integrate linear ini...
16163    manuscript generalize fcalculus apply fractal ...
16164    longstanding goal behaviorbased robotics solve...
16165    paper introduces new member family variational...
16166    results wasan geometry tangents circles still ...
16167    beta family owes privileged status within unit...
16168    investigate mean curvature flows class warped ...
16169    finitedifference methods widely used solving p...
16170    work propose ontology support automated negoti...
16171    present technique efficiently synthesizing ima...
16172    study size complexity computing finite state a...
16173    artificial intelligence federates numerous sci...
16174    elementary net systems ens fundamental class p...
16175    three exceptional lattices e e e attracted muc...
16176    analysis conjugate natural convection surface ...
16177    anosov representations word hyperbolic groups ...
16178    examine role memorization deep learning drawin...
16179    recent advances fully convolutional networks f...
16180    study phase diagram minority game three classe...
16181    complexity philip wolfes method minimum euclid...
16182    work using strong gravitational lensing sgl ob...
16183    hydrogen peroxide ho important signaling molec...
16184    many organisms repartition proteome circadian ...
16185    present investigation intrinsic magnetic prope...
16186    present explicit construction moduli spaces ra...
16187    report development validation datadriven realt...
16188    global registration multiview robot data chall...
16189    paper introduce variable exponent local hardy ...
16190    robust pca problem wherein given input data ma...
16191    study postnikov tower classifying space compac...
16192    using dataset million messages posted twitter ...
16193    muon g experiment plans use fermilab recycler ...
16194    collecting training data physical world usuall...
16195    alternating minimization fienup methods long h...
16196    work develop importance sampling estimator cou...
16197    existence absence nonanalytic cusps loschmidte...
16198    explore ways creating cold kevscale dark matte...
16199    developing algorithms solving highdimensional ...
16200    spatiotemporal data processes prevalent across...
16201    develop optimization model corresponding algor...
16202    superhydrophobic surfaces shss potential achie...
16203    paper considers problem recovering either low ...
16204    speech separation task separating target speec...
16205    reinforcement learning state real world often ...
16206    assess range validity sgoldstinoless inflation...
16207    foveal vision makes less visual field peripher...
16208    previous paper assembled collection mediumreso...
16209    let mathbbfp prime field order p set mathbbfp ...
16210    prove family lattices rm slmathcalof f running...
16211    clustering one universal approaches understand...
16212    discuss parametric oscillatory instability fab...
16213    suppose compact khler manifold x ample line bu...
16214    lobachevski entertained possibility multiple r...
16215    note show given irreducible binary quadratic f...
16216    present analysis microlensing event moablg sho...
16217    misunderstanding driver correction behaviors d...
16218    internet things iot intended ubiquitous connec...
16219    graphs naturally sparse objects used study man...
16220    finite dimensional operator commutes symmetry ...
16221    probabilistic framework proposed optimization ...
16222    upstream steady uniform supersonic flow imping...
16223    one consequences passing mass production mass ...
16224    provide new perspective fracton topological ph...
16225    largescale penetration internet first time hum...
16226    paper propose novel supervised learning method...
16227    paper develop system lowcost indoor localizati...
16228    well known every finite simple group generated...
16229    electronic magneto transport properties reduce...
16230    new types machine learning hardware developmen...
16231    nowadays many methods allowing exploit regular...
16232    introduce persistent homotopy type distance dh...
16233    paper determine optimal convergence rates stro...
16234    superconductivity angstrom singlewalled carbon...
16235    behavior simplex algorithm widely studied subj...
16236    paper present regression framework involving s...
16237    recently along emergence food scandals food su...
16238    study topological structure omegalimit sets sk...
16239    discovery topological states matter profoundly...
16240    propose dynamical system tumor cells prolifera...
16241    explaining unexpected presence dunelike patter...
16242    challenge sharing communicating information cr...
16243    use sparse precision inverse covariance matric...
16244    let geq fixed positive integer adotsas mathbbz...
16245    one possible approach tackle class imbalance c...
16246    paper propose new robustness notion applicable...
16247    fusing satellite observations station measurem...
16248    goal paper examine experimental progress laser...
16249    person identification technology recognizes in...
16250    present paper motivated one fundamental challe...
16251    characterize approximate monomial complexity s...
16252    present nonperturbative numerical technique ca...
16253    present paper introduce new families elliptic ...
16254    knowledge graphs enable wide variety applicati...
16255    several geophysical applications full waveform...
16256    directed acyclic graph g v e pseudotransitive ...
16257    networkbased approach presented investigate ce...
16258    study devoted polynomial representation matrix...
16259    today digital forensics images normally provid...
16260    topological metrics graphs provide natural way...
16261    reservoir characterization involves estimation...
16262    deep learning applies hierarchical layers hidd...
16263    study multiarmed bandit mab problem agent rece...
16264    weyl points monopole charge pm extensively stu...
16265    theoretical investigation extremely high field...
16266    act experience programming heart fundamentally...
16267    partiallyobserved boolean dynamical systems po...
16268    political polarization public space seriously ...
16269    program termination undecidable yet important ...
16270    investigate effect disorder potential exciton ...
16271    let rfrakm ddimensional cohenmacaulay local ri...
16272    free electron lasers fel commonly regarded pot...
16273    family exponential maps faz eza fundamental im...
16274    part fornax deep survey eso vlt survey telesco...
16275    wellknown demilloliptonschwartzzippel lemma sa...
16276    backpressure algorithm widely used distributed...
16277    kondo lattice systems mixed valence ybal inter...
16278    study transitivity directed acyclic graphs use...
16279    method transmitting information interstellar s...
16280    application domains healthcare want accurate p...
16281    automated detection voice disorders computatio...
16282    perform direct numerical simulations dns passi...
16283    one fundamental questions one ask pair random ...
16284    ordered chains chains amino acids ubiquitous b...
16285    based ab initio evolutionary crystal structure...
16286    past decade optical wdm networks wavelength di...
16287    consider linearly transformed spiked model obs...
16288    deep learning revolutionized vision via convol...
16289    diverse fault types fast reclosures complicate...
16290    tensor given tensor space said hidentifiable a...
16291    let g connected reductive group previous paper...
16292    apply generalized kepler map theory describe q...
16293    famous theorem weyl states compact submanifold...
16294    online interval coloring variants important co...
16295    paper devoted factorization multivariate polyn...
16296    study geometry singularities principal directi...
16297    immense amount daily generated communicated da...
16298    rna secondary structure designable rna sequenc...
16299    consider f h homeomorphims generating faithful...
16300    fault localization popular research topic many...
16301    basins convergence associated roots attractors...
16302    irreducible representations full support ratio...
16303    models postulate lognormal dynamics interest r...
16304    paper concerned simultaneous estimation k popu...
16305    paper review recent progress indefinite string...
16306    paper introduces simple efficient density esti...
16307    planning early medieval landscape project peml...
16308    population recovery problem basic problem nois...
16309    multibugs https url new version generalpurpose...
16310    present overview recently developed datadriven...
16311    largescale study human mobility significantly ...
16312    study problem assigning nonoverlapping geometr...
16313    let f continuous real function defined subset ...
16314    paper present formulas valuation debt equity f...
16315    consider schrdinger operator combinatorial gra...
16316    anions molecules zno atomic zn constitute mass...
16317    describe category integrable sln modules posit...
16318    selflocalize large teams underwater nodes usin...
16319    developed system combining backilluminated com...
16320    paper propose new coding scheme establish new ...
16321    aim comment show anisotropic effects image fie...
16322    paper proposed novel twostage optimization met...
16323    investigate possible pathways formation low de...
16324    spectral shape descriptors used extensively br...
16325    consider inverse dynamical problem dynamical s...
16326    jacobsthals function recently generalised case...
16327    due iterative nature nonnegative matrix factor...
16328    open access nature wireless communications wir...
16329    study threedimensional gauge theories based or...
16330    consider classical gaussian unitary ensemble s...
16331    derive equations motion reduced density matrix...
16332    weyl semimetallic compound euiro along hole do...
16333    winds predicted ubiquitous lowmass actively st...
16334    present compact current sensor based supercond...
16335    understand evolution extinction curve calculat...
16336    simple reading report professor weiping zhangs...
16337    recent work using plasmonic nanosensors clinic...
16338    consider twodimensional ginzburglandau problem...
16339    twopart paper details theory solvability power...
16340    introduced evolutionary game dynamics onedimen...
16341    quantum moves citizen science game investigate...
16342    seismic monitoring one usually interested resp...
16343    two procedures checking bayesian models compar...
16344    let k field characteristic zero mathcal kalgeb...
16345    following roos say local ring r good finitely ...
16346    population protocols well established model co...
16347    purpose note point simplicial methods wellknow...
16348    efficiently answer queries datalog systems oft...
16349    let mg complete noncompact riemannian manifold...
16350    bizarrely shaped voting districts frequently l...
16351    disordered manyparticle hyperuniform systems e...
16352    modern industrial automatic machines robotic c...
16353    approaches machine learning electronic health ...
16354    present new viscosity measurements synthetic s...
16355    problem estimating highdimensional sparse vect...
16356    implemented various dftu schemes including acb...
16357    tests bl symmetry breaking models important pr...
16358    gradient boosted decision trees popular machin...
16359    paper problem road friction prediction fleet c...
16360    collective animal behaviors paradigmatic examp...
16361    shown increasing model depth improves quality ...
16362    speech recognition systems achieved high recog...
16363    adhoc social networks become popular support n...
16364    paper presents posteriori error analysis coupl...
16365    security critical vital task wireless sensor n...
16366    geologic activity enceladuss south pole remain...
16367    recent surge interest studying permutationbase...
16368    system development often involves decisions hi...
16369    cyber defence exercises intensive handson lear...
16370    develop continuous kleene omegaalgebra realtim...
16371    recently researchers proposed various lowpreci...
16372    paper examine convergence mirror descent class...
16373    multipath communications internet scale myth l...
16374    present paper reports effort characterize vort...
16375    paper extend state art model predictive contro...
16376    study relationship geometry capacity measures ...
16377    developed control visualization programs yui h...
16378    identify four countable topological spaces sd ...
16379    cryoelectron microscopy provides projection im...
16380    paper prove lqestimates gradients solutions si...
16381    various applications relations dependent indep...
16382    based median median absolute deviation estimat...
16383    paper consider cluster estimation problem stoc...
16384    representing data hyperbolic space effectively...
16385    investigate nightly mean emission height width...
16386    spinelperovskite heterointerface gammaalosrtio...
16387    give finite axiomatization variety generated r...
16388    show every ell counterexample ellmodular secre...
16389    zeta functions linear codes defined iwan duurs...
16390    classical spectral analysis based discrete fou...
16391    modern corporations physically separate sensit...
16392    study koszul property standard graded kalgebra...
16393    deep neural networks currently among commonly ...
16394                                                  yes
16395    endtoend training scratch current deep archite...
16396    optical ir spectra acquired using detectors fi...
16397    recent successful methods accurate object dete...
16398    study mth gauss map sense flzak projective var...
16399    mathcalg group composition diffeomorphisms f b...
16400    previous secondary eclipse observations hot ju...
16401    using combination analytic numerical methods s...
16402    largescale instance dramatic collective behavi...
16403    classical linear blackscholes model pricing de...
16404    heart bitcoin blockchain protocol protocol ach...
16405    regret bound optimization algorithms one basic...
16406    set points x xb cup xr subseteq mathbbrd linea...
16407    magnetic fields ubiquitous universe extragalac...
16408    multiple colliding laser pulse concept formula...
16409    work jointly address problem text detection re...
16410    water hydroxyl thought found primitive airless...
16411    propose general framework studying jumpdiffusi...
16412    recently suggested dust growth cold gas phase ...
16413    paradigm shift shallow classifiers handcrafted...
16414    paper present novel approach initializing deep...
16415    practical significance define notion measure q...
16416    task clustering data given ordinal scale condi...
16417    alice large ion collider experiment heavyion d...
16418    paper proposes approach domain transfer based ...
16419    report results dfvst atlas cold spot galaxy re...
16420    construct toy model demonstrates large field s...
16421    develop metalearning approach learning hierarc...
16422    present procedure build validate brightstar ma...
16423    generative adversarial networks gans family ge...
16424    discuss memory models based tensor decompositi...
16425    published reporters without borders every year...
16426    advanced satellitebased frequency transfers tw...
16427    paper investigate problem detecting dynamicall...
16428    paper propose encoderdecoder convolutional neu...
16429    consider finitedimensional quantum system coup...
16430    modelbased control building heating systems en...
16431    propose formal approach relating abstract sepa...
16432    owing capability summarising interactions elem...
16433    atacama millimetersubmillimeter array alma pha...
16434    simulate rotating bec study melting vortex lat...
16435    coronary ct angiography series ct images taken...
16436    let mathcala finitedimensional subspace cmathc...
16437    world wide web www fundamentally changed ways ...
16438    shanchen model numerical scheme simulate multi...
16439    thesis study deformation problem coisotropic s...
16440    complexity learning task increased transformat...
16441    general greedy approach construct coverings co...
16442    formalism reduced density matrix pursued lengt...
16443    report muon spin relaxation musr measurements ...
16444    advances unsupervised learning enable reconstr...
16445    open bisimilarity original notion bisimilarity...
16446    cities across united states undergoing great t...
16447    bayesian statistical models allow us formalise...
16448    flowbased generative models dinh et al concept...
16449    virtue suitable approximation argument prove p...
16450    expository survey recent sumproduct results fi...
16451    using method eliashogancamp combinatorics tori...
16452    rgeq mathbfn mathbbzgeqr setminus mathbf const...
16453    colloidal migration temperature gradient refer...
16454    paper proposes ultrawideband uwb aided localiz...
16455    sensor fusion fundamental process robotic syst...
16456    growth electronic magnetic properties gammafen...
16457    nand flash memory ubiquitous everyday life tod...
16458    common practice deep convolutional neural arch...
16459    recent advances weakly supervised classificati...
16460    halting probability turing machinealso known c...
16461    faced challenging image classification tasks o...
16462    deep learning refers set machine learning tech...
16463    multilevel converters found many applications ...
16464    english translation old paper definicin estudi...
16465    present work develop delayed logistic growth m...
16466    investigate hybrid quantumclassical solution m...
16467    modern deep transfer learning approaches mainl...
16468    paper introduces novel method perform transfer...
16469    perceptual aliasing one main causes failure si...
16470    among important hallmarks human intelligence a...
16471    modified gramschmidt mgs orthogonalization one...
16472    firstly derive dimension one new covariance in...
16473    present algorithms real complex dot product ma...
16474    unsupervised representation learning tweets im...
16475    brny kalai meshulam recently obtained topologi...
16476    paper theoretical numerical studies perfectnea...
16477    infrastructure touches daytoday life fellow ci...
16478    surveying scenes common task robotics systems ...
16479    distribution abundance ratios calculated detai...
16480    paper presents recently published cerema awp a...
16481    estimating distributions node characteristics ...
16482    traditional recurrent neural networks assume v...
16483    multivariate probit model mvp popular classic ...
16484    leclerc zelevinsky motivated study quasicommut...
16485    ngeq show generic closed riemannian nmanifolds...
16486    propose novel design parallel manipulator stew...
16487    introduce novel loss maxpooling concept handli...
16488    work study nonlinear traveling waves density s...
16489    internal gravity waves play primary role geoph...
16490    siliconvacancy color centers nanodiamonds prom...
16491    online reviews provided consumers valuable ass...
16492    compare results semiclassical sc quantummechan...
16493    introduce algebraic fourier transform quantum ...
16494    semisupervised learning deals problem possible...
16495    measurements rootzone soil moisture across spa...
16496    study discrete time linear constrained switchi...
16497    challenge taking many variables account optimi...
16498    fundamental component game theoretic approach ...
16499    idea combining different twodimensional crysta...
16500    construct examples cohomogeneity one special l...
16501    regression analysis multivariate data tacitly ...
16502    paper study matrix scaling balancing fundament...
16503    present data profile evaluation plan second or...
16504    illustristng project new suite cosmological ma...
16505    paper present fast implementation singular val...
16506    gallium arsenide gaas widest used second gener...
16507    paper use detailed monte carlo simulations dem...
16508    social networks contain implicit knowledge use...
16509    consolidation synaptic changes response neural...
16510    paper investigates gradient recovery schemes d...
16511    let complement plane quartic curve defined num...
16512    collective motion intriguing phenomenon especi...
16513    present first cmb power spectra numerical simu...
16514    community detection networks actual important ...
16515    paper new index coding problems studied receiv...
16516    report result campaign monitor hatsouth candid...
16517    ultrafaint dwarf galaxies ufds faintest known ...
16518    enterprise resource planning erp systems cover...
16519    general approach selective inference considere...
16520    future mmwave mobile communication systems use...
16521    approaches convergence concept filter taken pr...
16522    neural machine translation nmt achieved notabl...
16523    internet things iot enables numerous business ...
16524    use positive sequivariant symplectic homology ...
16525    global modelspriors example using wavelet fram...
16526    prove new upper lower bounds vcdimension deep ...
16527    compare performances wellknown numerical times...
16528    due wide field view conebeam computed tomograp...
16529    internet things iot promises improve areas ene...
16530    weakly compact reflection principle textreflte...
16531    techniques ensembling distillation promise mod...
16532    finding easytobuild coils set critical issue s...
16533    propose new cellular network model captures de...
16534    aims paper focus occurrence glycolaldehyde hco...
16535    consider generation comprehension natural lang...
16536    human brain one complex living structures know...
16537    feature aided tracking often yield improved tr...
16538    heavyweight stellar initial mass function imf ...
16539    deep learning enabled traditional reinforcemen...
16540    abridged formation largescale hundreds thousan...
16541    computational quantum technologies entering ne...
16542    paper mixedeffect modeling scheme proposed con...
16543    distributed singlesource shortest paths proble...
16544    formation vortices usually considered main mec...
16545    securityconstrained unit commitment scuc one s...
16546    construct constant mean curvature surfaces euc...
16547    consider hyperkhler reduction describe via fra...
16548    introduce novel approach maximum posteriori in...
16549    prove inverse theorem gowers unorm maps gtomat...
16550    extensively explore networks weakly unbalanced...
16551    human movement used indicator human activity m...
16552    realtime instrument tracking crucial requireme...
16553    blockchain systems designed produce blocks con...
16554    theoretically study onedimensional mutually in...
16555    paper consider privacy preserving encoding fra...
16556    consider problem recovering ddimensional manif...
16557    rgbd camera maintains limited range working ha...
16558    letter provides conditions determining rank no...
16559    random geometric graphs consist randomly distr...
16560    motivation wordbased alignmentfree methods phy...
16561    show geodesics jacobi vector fields flag curva...
16562    finite mixture models apart underlying mixing ...
16563    article explains phase noise jitter slower phe...
16564    order pursue vision robocup humanoid league be...
16565    novel low cost near equiatomic alloy comprisin...
16566    project tritium endpoint neutrino mass experim...
16567    report two general concepts proper efficiency ...
16568    paper provides outline algorithms submitted ws...
16569    derive general statistical model interactions ...
16570    sparse stochastic block model sbm two communit...
16571    given constant data density rho velocity ubf e...
16572    xray observations two metaldeficient luminous ...
16573    corotb one rare longperiod p days transiting g...
16574    paper derives analyses semidiscrete dispersion...
16575    deep learning models aka deep neural networks ...
16576    topological data analysis tda novel statistica...
16577    build autoencoding sequential monte carlo aesm...
16578    show uniformly accelerated reference systems p...
16579    propose deep learningbased approach problem pr...
16580    assuming conjecture distinct zeros dirichlet l...
16581    well known parameters strongly correlated pred...
16582    sumproduct networks recently emerged attractiv...
16583    propose novel numerical approach optimal desig...
16584    autonomous driving presents one largest proble...
16585    present novel time phaseresolved backgroundfre...
16586    optimized spatial partitioning algorithms corn...
16587    paper addresses problem handling spatial misal...
16588    basic goal complexity theory understand commun...
16589    effective gauge fields allowed emulation matte...
16590    investigate interplay modality controlling beh...
16591    modularity maximization using greedy algorithm...
16592    generalise surface cluster algebras case infin...
16593    investigate impact choosing regressors molecul...
16594    let hqp p vq degree freedom mechanical hamilto...
16595    comprehensive theoretical analysis photoinduce...
16596    paper propose novel framework called semisuper...
16597    consider kernel partial least squares algorith...
16598    define homology theory virtual links built dir...
16599    purpose paper investigate asymptotic behavior ...
16600    formulate study general family continuoustime ...
16601    kinetic inductance detectors kids similar appl...
16602    smoothing one technique overcome data sparsity...
16603    structural discrimination appears persistent p...
16604    robots control systems rely upon precise timin...
16605    magnetic domain wall dw motion induced localiz...
16606    paper presents algorithm enhances undesirably ...
16607    paper introduce flashtext algorithm replacing ...
16608    logistics network expected opened facilities w...
16609    carried dimensional resistive mhd simulations ...
16610    standard probabilistic linear discriminant ana...
16611    deep learning graph structures shown exciting ...
16612    kinetic equations play major rule modeling lar...
16613    meteoric rise deep learning models computer vi...
16614    purpose develop generic optimization strategie...
16615    paper investigate contribution color names sal...
16616    recent theoretical predictions unprecedented p...
16617    unsteady characteristics flow thick flatback a...
16618    research implemented use arduino uno r microco...
16619    extremal graph theory aims determine bounds gr...
16620    develop algorithm forecasts cascading events e...
16621    dz cha weaklined tauri star wtts surrounded br...
16622    bayesian filtering algorithm developed class s...
16623    propose generic algorithmic building block acc...
16624    past years shown remarkable growth usecases mi...
16625    construct exact solutions representing friedma...
16626    paper investigate robustness external disturba...
16627    singular value matrix decomposition plays ubiq...
16628    complex network reconstruction hot topic many ...
16629    study twodimensional stochastic nonlinear wave...
16630    twisted electromagnetic waves helical phase fr...
16631    effective file transfer vehicles fundamental m...
16632    bayesian context prior specification inference...
16633    consider problem automated assignment papers r...
16634    regularization methods commonly used xray ct i...
16635    unsupervised clustering one fundamental challe...
16636    pepper robot become widely recognised face per...
16637    ensemble kalman filter enkf monte carlo based ...
16638    fullduplex fd technology likely adopted variou...
16639    unmanned aerial vehicles uavs recently shown g...
16640    paper give infinite family strings length lemp...
16641    tactile sensing enable robot infer properties ...
16642    safe interaction human drivers one primary cha...
16643    paper consider final state problem nonlinear s...
16644    performing localization mapping working level ...
16645    prove generic lefschetz pencil plane curves de...
16646    many state art methods thermodynamic kinetic c...
16647    construct finite commutative ring r family rep...
16648    lz dark matter detector like many rareevent se...
16649    present models singleparticle dispersion verti...
16650    microcolonies aggregates dozen thousand cells ...
16651    estimators computed adaptively collected data ...
16652    alignment curve data integral part statistical...
16653    introduce new class sequential monte carlo met...
16654    classical cuntz semigroup important role study...
16655    earths population resides urban areas steadily...
16656    direct comparison areal profile roughness meas...
16657    present vlacosmos ghz large project based hour...
16658    point source detection low signaltonoise chall...
16659    codesign conditions design jumpingrule sampled...
16660    study ground state onedimensional trapped bose...
16661    rust represents major advancement production p...
16662    game theory gt used significant success formul...
16663    general theoretical description influence osci...
16664    robots performing manipulation tasks must oper...
16665    mexico per cent urban population lives informa...
16666    based work schoenyau derive estimate first eig...
16667    present easeml declarative machine learning se...
16668    encrypting data sending cloud protects hackers...
16669    let icd c qin c irightarrowinfty function give...
16670    demonstrate close connection observed fieldind...
16671    report realization transversely loaded twodime...
16672    present experimental measurements steadystate ...
16673    summary infectious disease outbreaks plants th...
16674    investigated way predict gender name using cha...
16675    information technology used widely many aspect...
16676    paper consider online recommendation setting p...
16677    paper present expand upon procedures obtaining...
16678    consider optimal designs general multinomial l...
16679    learning optimize idea learn data algorithms o...
16680    well known logistic map parameter interest wei...
16681    advanced brain imaging techniques make possibl...
16682    present deep neural network modelfree predicti...
16683    introduce arbitragefree framework robust valua...
16684    apply method nonlinear steepest descent comput...
16685    paper consider coding short data frames bits i...
16686    report three main ingredients calculate three ...
16687    present harp novel method learning low dimensi...
16688    signal recorded enclosed room typically gets a...
16689    current generation radio millimeter telescopes...
16690    first paper estimates price determinants bitco...
16691    kenmotsus formula describes surfaces euclidean...
16692    paper structural controllability systems fz st...
16693    strongly coupled quantum fluids found differen...
16694    paper study problem hyperball hypersphere pack...
16695    critical infrastructure physiology human brain...
16696    l systems generalise contextfree grammars inco...
16697    one key aspects united states democracy free f...
16698    work study kmeans cost function euclidean kmea...
16699    internet things iot revolutionizing management...
16700    new form variational autoencoder vae proposed ...
16701    matrix product vectors form appropriate framew...
16702    deep learning recently become hugely popular m...
16703    alastair graham walker cameron astrophysicist ...
16704    demonstrate nonconvex time crystal lagrangians...
16705    paper introduce novel method gradient normaliz...
16706    dynamic pushdown networks dpns natural model m...
16707    new approach solving illconditioned inverse pr...
16708    deep reinforcement learning algorithms data in...
16709    demonstrate technique obtaining density atomic...
16710    prove first rigidity classification theorems c...
16711    inhomogeneous interacting electronic systems t...
16712    paper analyzes use convolutional neural networ...
16713    kernel embedding algorithm important component...
16714    paper first attempt systematically study prope...
16715    consider compact lie group g closed subgroup h...
16716    algorithm constructing control function transf...
16717    last years growing interest using financial tr...
16718    computers increasingly used make decisions sig...
16719    opioid addiction severe public health threat u...
16720    examine perturbation method selftrapping gmode...
16721    discuss computability computational complexity...
16722    estimating pose known objects important robots...
16723    steiner forest problem among fundamental netwo...
16724    analyze origins luminescence germaniasilica fi...
16725    define new class languages omegawords strictly...
16726    maximum regularized likelihood estimators mrle...
16727    enhancement spinspace symmetry usual mathrmsu ...
16728    morita theoretic viewpoint computing morita in...
16729    limited annotated data available recognition f...
16730    generating molecules desired chemical properti...
16731    survey short version chapter written first two...
16732    optimization fidelity control operations criti...
16733    layered neural networks greatly improved perfo...
16734    chapter guide generalpurpose abc software appe...
16735    feature selection facilitate learning mixtures...
16736    robots potential assist people bed healthcare ...
16737    hierarchical attention networks recently achie...
16738    let positive real number graph called ttough r...
16739    vitro vivo spiking activity clearly differ whe...
16740    propose simple objective evaluation measure ex...
16741    present many new results related reliable inte...
16742    work investigate novel training procedure lear...
16743    pairwise comparison data arises many domains i...
16744    decoupling multivariate polynomials useful obt...
16745    voicecontrolled smarthome controller must resp...
16746    paper introduces evolutionary approach enhance...
16747    plasmonics currently faces problem seemingly i...
16748    consider problem minimizing smooth convex func...
16749    economic evaluations individuallevel data impo...
16750    past years calorimeters become important detec...
16751    recent experiments revealed diffusivity exothe...
16752    paper introduces new approach automatically qu...
16753    propose datadriven filtered reduced order mode...
16754    linear feast algorithm method solving linear e...
16755    recent heuristic argument based basic concepts...
16756    establish upper bounds bit complexity computin...
16757    recalculate leading relativistic corrections g...
16758    establish interior lipschitz estimates macrosc...
16759    people simultaneously belong several distinct ...
16760    present proof concept solving complexvalued de...
16761    range anxiety persistent worry enough battery ...
16762    nystrm method popular technique computing fixe...
16763    present quantitative analysis response dilute ...
16764    future multiprocessor chips integrate many dif...
16765    give explicit description weight three generat...
16766    prove moore myhill property strongly irreducib...
16767    objective learning health system lhs requires ...
16768    simplified molecular input line entry system s...
16769    approach tomographic problem terms linear syst...
16770    give elementary combinatorial proof following ...
16771    composite materials comprised ferroelectric na...
16772    study kernel evaluated burau representation br...
16773    paper study possibilities interpolation symbol...
16774    constructed database stars local group using e...
16775    general relativistic effects long predicted su...
16776    role phase separation emergence superconductiv...
16777    primordial black holes pbhs long suggested can...
16778    consider highdimensional inference problem sig...
16779    gaussian processes gps offer flexible class pr...
16780    paper explores various special functions gener...
16781    common model inductive datatypes least fixed p...
16782    let mathcaldnm algebra quantum integrals defor...
16783    study suggests classification technologies bas...
16784    triangulation planar polygon n sides one assoc...
16785    present kband multiobject spectrograph kmos ob...
16786    gas near solid planar wall propose scaling for...
16787    donohos jcgs press paper spirited call action ...
16788    demographics dwarf galaxy populations long ten...
16789    risk prediction central clinical medicine publ...
16790    address problem activity detection continuous ...
16791    regularization one crucial ingredients deep le...
16792    paper examine statistical soundness comparativ...
16793    n hindman leader strauss proved consistent fin...
16794    even confronted data agents often disagree mod...
16795    addition hardware walltime restrictions common...
16796    recently showed several local group lg galaxie...
16797    present method scalable fully magnetic field s...
16798    consider network binaryvalued sensors fusion c...
16799    largescale gaussian process inference long fac...
16800    diffusion mri measurements using hyperpolarize...
16801    understanding nature twolevel tunneling defect...
16802    propose algorithm adaptation learning rate sto...
16803    generalizations hermite polynomials many varia...
16804    interactions people basis structure society ar...
16805    dynamic topic models dtms model evolution prev...
16806    setting picalculus binary sessions aim relaxin...
16807    modularity military vehicle designs enables on...
16808    certain general conditions explicit formula co...
16809    work study problem dispersion mobile robots dy...
16810    early prognosis alzheimers dementia hard mild ...
16811    automatic music transcription amt one oldest w...
16812    prove gaschtz lemma holds metrisable compact g...
16813    present simplified description spindependent e...
16814    interconnected nature graphs often results dif...
16815    compact version variation evolving method vem ...
16816    convolutional neural networks cnns become stat...
16817    design differentially private algorithms probl...
16818    acoustic neutrino detection promising approach...
16819    deep reinforcement learning rl methods general...
16820    present deep illumination novel machine learni...
16821    recurrent neural networks rnns important class...
16822    behrensfisher problem wellknown hypothesis tes...
16823    understanding mechanisms underlying formation ...
16824    active learning aims train classifier fast pos...
16825    compute polarization function doped threedimen...
16826    unsupervised machine learning via restricted b...
16827    study thermodynamics ideal bose gas well trans...
16828    using highfrequency expansion periodically dri...
16829    paper deals two related problems namely distan...
16830    past work social network link fraud detection ...
16831    show whenever delta eta real constants lambdai...
16832    compositional game theory new recently introdu...
16833    let x ldots xn iid sample mathbbrp zero mean c...
16834    variational autoencoders vaes well generative ...
16835    space probability measures positive density fu...
16836    article study automorphisms toeplitz subshifts...
16837    recent results alagic russell given evidence e...
16838    present work use information theory understand...
16839    collaborative filtering broad powerful framewo...
16840    define lattice model rock absorbers gas makes ...
16841    consider extension contextual bandit setting m...
16842    using theory cohomology support locus give nec...
16843    analyzing temperature dependent photoemission ...
16844    although proportional hazard rate model popula...
16845    propose las vegas transformation markov chain ...
16846    show noncollapsed cdkn space x nge curvature b...
16847    data warehouse performance usually achieved ph...
16848    bayesian optimization bo methods useful optimi...
16849    aim work study intrinsic geometric point view ...
16850    cosmic ray electrons measured voyager mev beyo...
16851    following present example illustrative experim...
16852    monomial special multiserial algebras general ...
16853    context considering importance software testin...
16854    article provides short review structural resul...
16855    study data model data matrix expressed l c l l...
16856    power sum n n cdots xn interest mathematicians...
16857    indexing massive data sets extremely expensive...
16858    develop new theoretical framework analyze gene...
16859    closedloop field development clfd optimization...
16860    regular tbalanced cayley map rbcmt short group...
16861    transition metal oxides promising candidates t...
16862    analyze motion rod floating weightless environ...
16863    prove basic results dimension theory algebraic...
16864    ideal polynomial ring kx field moved change co...
16865    shown mccoy right ideal polynomial ring severa...
16866    propose new generic type stochastic neurons ca...
16867    randomly generated programs popular testing co...
16868    preexposure prophylaxis prep consists use anti...
16869    based observation correlation observed traffic...
16870    accommodating electric vehicles evs battle fos...
16871    let g reductive algebraic group field positive...
16872    despite increasing use social media platforms ...
16873    paper contains nontrivial generalization haris...
16874    magnetic particle imaging mpi shown provide re...
16875    community detection key data analysis problem ...
16876    let k infinite perfect field provide general c...
16877    momentum simple widely used trick allows gradi...
16878    investigate equilibrium behavior decentralized...
16879    paper linear model diffusion processes unknown...
16880    among proposals joint disease mapping shared c...
16881    show decaying hydromagnetic turbulence initial...
16882    prove two finite volume hyperbolic manifolds a...
16883    provide first quantum exact protocol dining ph...
16884    fog computing seen promising approach perform ...
16885    present computerassisted proof heteroclinic co...
16886    present millimetre dust emission measurements ...
16887    experiments reported performance pitching heav...
16888    paper consider problem attackresilient state e...
16889    recent explosion applications dialogue interac...
16890    aims purpose paper detect investigate nature l...
16891    introduce perfect half space games goal player...
16892    research challenge current wireless sensor net...
16893    address computation groundstate properties che...
16894    inverse uncertainty quantification uq bayesian...
16895    mendelian randomization mr popular instrumenta...
16896    trace alignment algorithms used process mining...
16897    topological insulator surfaces proximity super...
16898    let g finite simple connected graph arithmetic...
16899    study neuronal interactions currently center s...
16900    present analysis main systematic effects could...
16901    peridynamics pd represents new approach modell...
16902    continuous attractor neural networks generate ...
16903    paper develop framework innovative perceptive ...
16904    show smallest nonabelian quotient mathrmautfn ...
16905    paper explores informationtheoretic limitation...
16906    paper show category module spectra cbmathcalgm...
16907    present family python modules numerical integr...
16908    diffusionbased classifiers relying personalize...
16909    active learning al methods proven costsaving p...
16910    introduce torchbearer model fitting library py...
16911    lineintensity mapping surveys probe largescale...
16912    classifiers trained datadependent constraints ...
16913    several studies shown network traffic generate...
16914    paper explores characteristics datacite determ...
16915    obtain strong consistency asymptotic normality...
16916    article proposed new elearning information tec...
16917    eulerpoissonalignment epa system appears mathe...
16918    new bispectral orthogonal polynomials obtained...
16919    unsupervised node embedding methods eg deepwal...
16920    twodimensional spin affleckkennedyliebtasaki a...
16921    efficient management low blood pressure bp pre...
16922    power press shape informational landscape popu...
16923    selecting representative vector set vectors co...
16924    esa gaia mission producing accurate source cat...
16925    present amelioration current known algorithms ...
16926    seven nine known mars trojan asteroids belong ...
16927    abundance metals galaxies key parameter permit...
16928    show quantum communication means collapse wave...
16929    terramechanics plays critical role areas groun...
16930    provide novel characterizations multivariate n...
16931    consider multitask regression models observati...
16932    since social interactions shown lead symmetric...
16933    cohomological ktheoretic stable bases originat...
16934    amount information available mathematics teach...
16935    paper presents convergence analysis kernelbase...
16936    combine bondaluehara method producing exceptio...
16937    due proliferation online social networks osns ...
16938    deep learning advances algorithms music compos...
16939    suppose yn obtained observing uniform bernoull...
16940    supervised deep learning often suffers lack su...
16941    clustering problems wellstudied variety fields...
16942    order preserving pattern matching oppm problem...
16943    present simple categorical framework treatment...
16944    let k standard hlder continuous caldernzygmund...
16945    effects including hubbard onsite coulombic cor...
16946    present construction multiscale gaussian beam ...
16947    functional risk curve gives probability undesi...
16948    paper provides global optimization algorithms ...
16949    visuomotor tasks robots must compensate tempor...
16950    article present cut finite element method twop...
16951    explore problem learning selective labels cont...
16952    present model evolution supermassive protostar...
16953    prospection important part humans come new tas...
16954    classical weisfeilerlehman method wl uses edge...
16955    explore properties bytelevel recurrent languag...
16956    combining material informatics highthroughput ...
16957    study nonlocal variant diffuse interface model...
16958    although gradient descent gd almost always esc...
16959    let l nth order linear differential operator l...
16960    traditional humanism twentieth century inspire...
16961    loss functions large number saddle points one ...
16962    paper addresses automatic generation typograph...
16963    article deals connection second postulate eucl...
16964    modern mobile embedded platforms see large num...
16965    show iterated identity satisfied finite groups...
16966    goal tutorial introduce key models algorithms ...
16967    partial least squares pls methods heavily expl...
16968    study asymptotic behaviour solutions fifth pai...
16969    internetwide scans common active measurement a...
16970    present method metric optimization large defor...
16971    suggested algorithm searching recursion operat...
16972    best knowledge paper presents first largescale...
16973    many complex systems biology physics engineeri...
16974    second derivativebased moment method proposed ...
16975    sequence calgebra called completely sidon span...
16976    conflictfree kcoloring graph assigns one k dif...
16977    study problem utility maximization terminal we...
16978    globular clusters gcs amongst oldest objects g...
16979    given infinitycategory c one naturally constru...
16980    training object detectors autonomous driving l...
16981    study changes opinions vaccination together ev...
16982    casp extension asp allows numerical constraint...
16983    study production primordial black holes pbhs e...
16984    typical reinforcement learning rl agents learn...
16985    deep generative models recently shown great pr...
16986    paper discuss possible usage compressive sampl...
16987    paper presents scenecut novel approach jointly...
16988    paper show different body parts play equally i...
16989    objective work take advantage deep neural netw...
16990    years ago semitoric systems classified pelayo ...
16991    paper study emphthreefolds isogenous product m...
16992    observe standard transfer learning improve pre...
16993    fast carrier cooling important high power grap...
16994    pattern matching powerful tool part many funct...
16995    beams ilc produce electron positron pairs due ...
16996    hamming graph hdn cartesian product complete g...
16997    android mobile app framework enforces singlegu...
16998    among many anticipated roles robots future hum...
16999    certain quasisplit reductive groups g general ...
17000    earlier work helen wong author discovered cert...
17001    note short summary workshop energy time measur...
17002    current stateoftheart approaches spatiotempora...
17003    percolation based graph matching algorithms re...
17004    establish rate region extended graywyner syste...
17005    introduce problem simultaneously learning powe...
17006    many problems configurations euclidean geometr...
17007    use deep neural networks crucial provide appro...
17008    tumor cells acquire different genetic alterati...
17009    predicting properties nodes graph important pr...
17010    paper studies daily connectivity time series w...
17011    happens new social convention replaces old one...
17012    article propose new class priors bayesian infe...
17013    uniform boundary condition normed chain comple...
17014    recent years widespread concern scientific com...
17015    present reinforcement learning framework calle...
17016    plasmas varying collisionalities occur many ap...
17017    study vcdimension short formulas presburger ar...
17018    traffic accident data usually noisy contain mi...
17019    thirdparty library reuse become common practic...
17020    bacteria easily characterizable model organism...
17021    data augmentation essential part training proc...
17022    knowledge bases employed variety applications ...
17023    machine scheduling problems longtime key domai...
17024    conditional mutual information ixyz measures a...
17025    interesting attempt solving infrared divergenc...
17026    consider spectral structure indefinite second ...
17027    paper study integral curvatures finsler manifo...
17028    convex cocompact subgroups slz consider congru...
17029    massive parallel approach neuromorphic circuit...
17030    first study discrete schrdinger equations anal...
17031    greedy optimization methods matching pursuit m...
17032    analyze relation emission radii twin kilohertz...
17033    article offers personal perspective current st...
17034    e elliptic curve mathbbq follows work serre ho...
17035    unified fluidstructure interaction fsi formula...
17036    transverse momentum pt spectra heavyion collis...
17037    toxicity prediction chemical compounds grand c...
17038    introduce general scheme permits generate succ...
17039    multinomial choice models fundamental empirica...
17040    study limit shape successive coronas tiling mo...
17041    properties galaxies like absolute magnitude st...
17042    stochastic gradient langevin dynamics sgld pop...
17043    million people suffered heart failure worldwid...
17044    combination strong correlation emergent lattic...
17045    practical biologically motivated case protein ...
17046    multivariate generalized pareto distributions ...
17047    alvarezmacovski method line integrals xray bas...
17048    let g adjoint quasisimple group defined split ...
17049    bboundary mathematical tool used attach topolo...
17050    lattice quantum chromodynamics lattice qcd qua...
17051    new mhd solver based nektar spectralhp element...
17052    describe results qualitative study journalists...
17053    problem low rank matrix completion considered ...
17054    report magnetic calorimetric measurements mk c...
17055    consider following control problem fair alloca...
17056    use cnns build system classifies images faces ...
17057    paper presents method generate high quality tr...
17058    engine likelihoodfree inference elfi python so...
17059    deep neural networks vulnerable adversarial ex...
17060    critical time information spread aftermath ser...
17061    paper discusses potential applying deep learni...
17062    general video game ai gvgai competition associ...
17063    paper consider pure infiniteness generalized c...
17064    convex sparsitypromoting regularizations ubiqu...
17065    exoplanets smaller neptune numerous nature pla...
17066    surge political information discourse interact...
17067    open set recognition osr almost existing metho...
17068    projection factor p key quantity used baadewes...
17069    united states spends b year initiatives americ...
17070    propose stochastic nonparametric activation fu...
17071    analyze proprietary dataset trades single asse...
17072       list questions raised joint work arxiv sequels
17073    zrse band semiconductor studied long time ago ...
17074    study map largescale structure citation networ...
17075    large class modified theories gravity used mod...
17076    notion entropyregularized optimal transport al...
17077    paper present methodology estimate parameters ...
17078    introduce problem variablelength source resolv...
17079    dpolarized light imaging dpli reconstructs ner...
17080    pair density wave pdw superconducting state pr...
17081    neuroscience carried domain big data high perf...
17082    developed recently proposed josephson travelin...
17083    background unstructured textual data increasin...
17084    present study continuum polarization nm range ...
17085    study deals contentbased musical playlists gen...
17086    res considered promising candidate novel elect...
17087    paper deal problem extending zadehs operators ...
17088    paper present algorithm coupling magnetotherma...
17089    contrast wellknown methods matching asymptotic...
17090    bioinspired paradigms proving useful analyzing...
17091    viral zoonoses emerged key drivers recent pand...
17092    operationalizing machine learning based securi...
17093    objective research design ghz rf soi switch um...
17094    given positive linear combination five respect...
17095    paper studies landscape empirical risk deep ne...
17096    aim understanding effect environment star form...
17097    recommender systems play crucial role mitigati...
17098    work addresses instability asynchronous data p...
17099    work presents algorithm changing latitudinal l...
17100    given ideal mathcali omega show sequence topol...
17101    gravitons possess berry curvature due helicity...
17102    allgoals updating exploits offpolicy nature ql...
17103    key structured prediction exploiting problem s...
17104    nanocommunications understood communications n...
17105    winogradbased convolution quickly gained tract...
17106    paper investigate properties function spaces u...
17107    propose new method learning structure convolut...
17108    maximum gap gf polynomial f maximum difference...
17109    paper analyzed stability cylindrically symmetr...
17110    present elladic trace formula saturated admiss...
17111    present results extensive spectroscopic survey...
17112    superconducting bulk rebacuox materials rerare...
17113    exhibit exact simulation algorithm supremum st...
17114    consider nonparametric bayesian approach estim...
17115    topological superconductor tsc hosting majoran...
17116    consider henselian rank one valued field k equ...
17117    report first observation magnonpolariton bista...
17118    italy adopted performancebased system funding ...
17119    study performed initial investigation evaluati...
17120    numerical analysis perspective assessing robus...
17121    paper defines homology homotopy type theory pr...
17122    investigate timedependent spatial vectorhost e...
17123    recently principal component pursuit received ...
17124    axionlike particles alps might constitute tota...
17125    stochastic knapsack problem stochastic variant...
17126    study problem using iid samples unknown multiv...
17127    introduce new setting population agents modell...
17128    present work analyzes distribution function fi...
17129    propose new partial decoding algorithm onepoin...
17130    article generalize wellknown result ideals noe...
17131    consider relationship two sufficient condition...
17132    show selfcomplementary graph n vertices contai...
17133    study asymptotic behavior estimators twovalued...
17134    paper discusses magnetic state zeta phase iron...
17135    determining wavelengthdependent exoplanet radi...
17136    major system mnemonic system used memorize seq...
17137    present experimental results controlled deexci...
17138    extend theoretical analysis recently proposed ...
17139    endtoend neural network based approaches audio...
17140    fully programmable valve array fpva emerged ne...
17141    define extremal length elements fundamental gr...
17142    investigate properties ground state light quar...
17143    gyrokinetic reduction based specific ordering ...
17144    paper study properties carmichael numbers fals...
17145    general phase reduction method network coupled...
17146    knowledge graphs large useful incomplete knowl...
17147    many relevant tasks require agent reach certai...
17148    recently gave arguments two unique topological...
17149    paper tutorial formal concept analysis fca app...
17150    present results multiwavelength investigation ...
17151    recently educational initiative teded publishe...
17152    consider tuning parameter selection rules nucl...
17153    todays internet traffic mostly dominated multi...
17154    paper consider weak convergence eulermaruyama ...
17155    nowadays problem historical beadworks conserva...
17156    work higsonroe fundamental role signature homo...
17157    tensor decomposition methods popular tools lea...
17158    consider discrete quadratic phase hilbert tran...
17159    tree augmentation problem tap fundamental netw...
17160    generative source separation methods nonnegati...
17161    consider problem finding confidence intervals ...
17162    report magnetoresistance nonlinear hall effect...
17163    volume contains proceedings fide third interna...
17164    animals especially humans amazing ability lear...
17165    paper present new approach visual servoing rob...
17166    epidemiological models spread pathogens popula...
17167    study help computer program polish algorithm f...
17168    introduce new class mean regression estimators...
17169    large eddy simulation les become defacto compu...
17170    surface stress surface energy fundamental quan...
17171    biaxial magneticfield setup angular magnetic m...
17172    investigate dynamics dilute suspension hydrody...
17173    formalism partial information decomposition pr...
17174    study asymptotic behavior sequence positive so...
17175    paper present two new results classical floque...
17176    ultrathin twodimensional nanosheets raise rapi...
17177    resonant xray scattering dy ni l absorption ed...
17178    answer question durham hagen sisto proving tei...
17179    deep learning requires data useful approach ob...
17180    anomalously large radii strongly irradiated ex...
17181    bands vectorvalued functions ftmapstomathbbrd ...
17182    general underestimation risk something avoided...
17183    atomic swap protocol allows exchange cryptocur...
17184    design analyse implement arbitrary order schem...
17185    known one construct nonparametric functions as...
17186    extend classic convergence rate theory subgrad...
17187    introduce practical calculation scheme descrip...
17188    prove h topological group closed subgroups h s...
17189    differentiable systems paper means systems equ...
17190    simulation pedestrian crowd reflects reality m...
17191    structural description intriguing link fast vi...
17192    purpose paper focuses automated analysis surgi...
17193    strong mode probability measure normed space x...
17194    motivated theory quasideterminants study nonco...
17195    introduce multimodal neural machine translatio...
17196    phase retrieval algorithms become important co...
17197    cobaltgermanium coge fascinating complex alloy...
17198    many imagetoimage translation problems ambiguo...
17199    paper addresses optimal control problem known ...
17200    deep neural networks dnns transformed several ...
17201    let mn denote maximum size family subsets cont...
17202    test mass charging caused cosmic rays signific...
17203    propose memorymodelaware static program analys...
17204    present evaluation update simply update algori...
17205    analyse extreme event statistics experimentall...
17206    selfconsistent nonlinear interaction monoenerg...
17207    present first adaptive strategy active learnin...
17208    synthesizing images eye fundus challenging tas...
17209    investigate growth graphene buffer layer invol...
17210    vaccine hesitancy recognized major global heal...
17211    personal electronic devices including smartpho...
17212    study least squares regression function estima...
17213    thermal stability electronic photoelectronic d...
17214    paper study emergent irreducible information p...
17215    paper concerns low mach number limit weak solu...
17216    paper formulas exponential sums finite field r...
17217    preserving privacy individuals protecting sens...
17218    interplay superconductivity charge density wav...
17219    background quality software product depends qu...
17220    although gaia catalogue powerful tool combinat...
17221    use quarters textitkepler mission data analyze...
17222    reconstruction water wave elevation bottom pre...
17223    schatten quasinorm introduced bridge gap trace...
17224    consider truncated circular unitary matrix pn ...
17225    paper taskrelated fmri problem treated matrix ...
17226    motivated task clustering either variables poi...
17227    present widefield deg weak lensing mass maps h...
17228    finite difference methods traditionally used m...
17229    kinetic energy density functionals kedfs centr...
17230    mutilayer information bottleneck ib problem in...
17231    propose new mathematical model nkdimensional n...
17232    central problem algebraic topology understand ...
17233    optimization becoming crucial element industri...
17234    paper study convergence properties gradient ex...
17235    direct detection gravitational wave laser inte...
17236    approximations program analysis necessary evil...
17237    development efficient algorithms data structur...
17238    nonlinear wave interactions affect evolution s...
17239    singleparticle spectral function measures dens...
17240    purpose article determine explicitly complete ...
17241    work introduce new type linear classifier impl...
17242    multilabel image classification fundamental ch...
17243    atmospheres one quarter one half observed sing...
17244    present quantization isomorphism mirkovi vybor...
17245    paper concerned multiasset meanvariance portfo...
17246    deep learning enabled major advances fields co...
17247    undesired unintentional doping doping limits s...
17248    recent years many research works propose embed...
17249    applications exploiting valley pseudospin degr...
17250    predicting highrisk vascular diseases signific...
17251    understanding evolution human society complex ...
17252    autonomic nervous system ans activity altered ...
17253    unsupervised learning lowdimensional semantic ...
17254    bestkarm problem given n stochastic bandit arm...
17255    study equilibrium measures kenmki measures sup...
17256    present thermal emission spectrum bloated hot ...
17257    deep learning yields great results across many...
17258    neural networks used prominently several machi...
17259    precise knowledge static density response func...
17260    magnetocrystalline anisotropy exhibited prpdge...
17261    paper experimentally demonstrate realtime soft...
17262    continuous dynamical system approach deep lear...
17263    popularity linked open data lod associated ris...
17264    wave motion two threedimensional periodic latt...
17265    paper formulate analogue warings problem algeb...
17266    many realworld multilayer systems critical inf...
17267    reconstruction sparse signals requires solutio...
17268    paper propose fault detection isolation based ...
17269    study numerically constantinlaxmajdade gregori...
17270    consider fitting heavy tailed data distributio...
17271    paper introduces deep incremental boosting new...
17272    consider linear structural equation models ass...
17273    show solutions large class partial differentia...
17274    reinhardt conjectured shape centrally symmetri...
17275    study heating mechanisms lyalpha escape fracti...
17276    chapter explain briefly fundamentals interacti...
17277    electronic structure thrusi studied angleresol...
17278    factorable surfaces ie graphs associated produ...
17279    paper presents two results first shown discret...
17280    sequential changepoint detection distribution ...
17281    give algorithms construct nron desingularizati...
17282    recent years deep learning made tremendous pro...
17283    consider problem training generative models de...
17284    ontologybased query answering obqa asks whethe...
17285    despite popularity practical performance async...
17286    paper study new learning paradigm neural machi...
17287    determine amalgamated products surface groups ...
17288    understanding shading effects images critical ...
17289    let power series ring polynomial ring field k ...
17290    generative adversarial networks gans innovativ...
17291    causal mediation analysis aims estimate natura...
17292    work novel subspacebased method blind identifi...
17293    extend previously introduced semianalytical re...
17294    article study existence strong consistency gee...
17295    report selective fabrication highquality sriro...
17296    note prove lfracnenergy gap result yangmills c...
17297    pomsets model concurrent computations introduc...
17298    ecological invasion problem weaker exotic spec...
17299    nonlocality key feature many physical systems ...
17300    introduce deephits rotation invariant convolut...
17301    various approaches learning notably domain ada...
17302    principle common cause asserts positive correl...
17303    three species compete cyclically wellmixed sto...
17304    study multiclass online learning problem forec...
17305    deep learning techniques hugely successful tra...
17306    paper study infinitesimal symmetries newtonoid...
17307    studying anomalous diffusion pulsed field grad...
17308    report nontrivial transition core structure vo...
17309    multiarmed bandit mab class online learning pr...
17310    investigate initialboundary value problem gene...
17311    demonstrate deep neural network significantly ...
17312    development needlefree injection systems utili...
17313    paper initiate rigorous theoretical study clus...
17314    classical reversemode automatic differentiatio...
17315    manydegreescale gammaray halos expected surrou...
17316    work investigate onedimensional paritytime pts...
17317    present generative adversarial capsule network...
17318    zoonotic diseases major cause morbidity produc...
17319    exploitation excellent intrinsic electronic pr...
17320    investigate steady planar flow ideal fluid bou...
17321    article demonstrates convolutional operation c...
17322    due success deep learning solving variety chal...
17323    let r commutative ring identity let zr set zer...
17324    following paper analyse idprice german intrada...
17325    characterization uncertainty robotic manipulat...
17326    patchbased denoising algorithms like bmd achie...
17327    studied disordering effects coefficients ginzb...
17328    simulationbased inference plays major role mod...
17329    knearest neighbours knn popular classification...
17330    paper extend work ryuzo sato devoted developme...
17331    report results search light weakly interacting...
17332    orionis group discovered almost decade ago des...
17333    paper proposes xmldefined network policies xdn...
17334    paper discusses roadmap investigate domain obj...
17335    discuss effect dissipation heating occurs peri...
17336    goal compressed sensing estimate vector underd...
17337    several researchers described twopart models p...
17338    along deraining performance improvement deep n...
17339    statistical inference based lossy incomplete s...
17340    nearest neighbor imputation popular handling i...
17341    demonstrate semiconductor laser perturbed dist...
17342    paper propose new deep feature selection metho...
17343    detect segment salient objects accurately exis...
17344    provide complete picture asymptotically minima...
17345    paper studies secrecy rate maximization proble...
17346    stochastic integration textitwrt gaussian proc...
17347    naturally associate measurable space paths cou...
17348    paper focuses automated synthesis divideandcon...
17349    present work prove nikolski inequality trigono...
17350    inferring model parameters experimental data g...
17351    paper establishes upper bound kolmogorov dista...
17352    considering limiting case kroneckertype identi...
17353    paper consider temporal pattern traffic flow t...
17354    propose paper new approach kaluzaklein idea fi...
17355    prove conjecture medvedev scanlon case regular...
17356    asymptotic behaviour commonly used bootstrap p...
17357    compute physical properties across phase diagr...
17358    introduce minimalrnn new recurrent neural netw...
17359    let bqpn boolean quadric polytope lopm linear ...
17360    analyzing arraybased computations determine da...
17361    independent component analysis ica one basic t...
17362    study weighted hinfty spaces analytic function...
17363    cauchy exponential transforms characterized co...
17364    report extensive theoretical calculations rota...
17365    consider multiview data completion problem ie ...
17366    consider problem gridforming control power con...
17367    characterize nearinfrared nir dust attenuation...
17368    using tape optical devices scaleout storage on...
17369    noisy pn learning problem binary classificatio...
17370    present neural model representing snippets cod...
17371    robust data association necessary virtually ev...
17372    study effect dynamical tides associated excita...
17373    consider boseeinstein condensate bec attractiv...
17374    execution sequential programs allows represent...
17375    specify randomized algorithm given large graph...
17376    paper prove modularity results taylor coeffici...
17377    future networks ie fifth generation g wireless...
17378    many existing methods learning joint embedding...
17379    keplerb currently best example earthsize plane...
17380    report propagation square wave signal quasiper...
17381    present sequential attend infer repeat sqair i...
17382    present new local descriptor shapes directly a...
17383    present theoretical guarantees alternating min...
17384    recent years increasing concerns geomagnetic d...
17385    paper propose utilize convolutional neural net...
17386    paper consider derivation kadomtsevpetviashvil...
17387    paper introduces variational implicit processe...
17388    transformation optics methods gradient index e...
17389    lanthanum family hightemperature cuprate super...
17390    capable reaching similar magnitudes large mega...
17391    general nsolitons three recentlyproposed nonlo...
17392    revisit mathematical models wireless network j...
17393    symbolic data analysis sda emerging area stati...
17394    many realworld data mining applications need v...
17395    cherenkov telescope array cta next generation ...
17396    restricted isometry property rip universal too...
17397    nonparametric kernel density estimation natura...
17398    applied machine learning predict whether gene ...
17399    paper investigates algorithmic dimension spect...
17400    inference loglinear models scales linearly siz...
17401    ordered spin system given dimensionality under...
17402    report bright solitons generalized grosspitaev...
17403    recent experimental advances could provide way...
17404    stronger selection implies faster evolutiontha...
17405    lj savage hoped show superficially incompatibl...
17406    stochastic gradient descent sgd central workho...
17407    kontsevich integral powerful link invariant ta...
17408    note prove selection commutativity theorems va...
17409    short message service sms spam serious problem...
17410    measuring analyzing performance software reach...
17411    present method calculating complex green funct...
17412    literature modeling simulation complex adaptiv...
17413    paper study new type spatial sparse recovery p...
17414    game theory literature appears little research...
17415    superior performance ease implementation foste...
17416    wavelet frame systems known effective capturin...
17417    recently proposed exact algorithm maximum inde...
17418    privatizing data useful strategy increasing pa...
17419    cellular electron cryotomography cect powerful...
17420    largescale deep convolutional neural networks ...
17421    report evidence enstrophy cascade largescale p...
17422    study contextual multiarmed bandit problems li...
17423    variational inference latent variable models p...
17424    understand selfsustenance subcritical turbulen...
17425    learning would convincing method achieve coord...
17426    paper addresses trajectory tracking control pr...
17427    though significant amount work investigating e...
17428    paper gives new results synchronization string...
17429    apply distancebased jin matteson kernelbased p...
17430    study local geometry testing mean vector withi...
17431    two fundamental prototypes greedy optimization...
17432    study problem subsampling differential privacy...
17433    assigning satisfactory truly concurrent semant...
17434    propose technique multitask learning demonstra...
17435    present probabilistic language model timestamp...
17436    multiple scattering ultra relativistic electro...
17437    give necessary sufficient conditions manifold ...
17438    photoelectric effect established einstein well...
17439    apply sequencetosequence model mitigate impact...
17440    investigate use ghz ho masers characterization...
17441    free energy principle proposed unifying theory...
17442    paper study setting features added change inte...
17443    contextual bandit algorithms sensitive estimat...
17444    smart solar inverters used store monitor manag...
17445    despite recent advances face recognition using...
17446    citizen science projects recruit members publi...
17447    study category representations mathfrakslmn po...
17448    complex networks found provide good representa...
17449    analyze short cadence k light curve trappist s...
17450    robots become increasingly prevalent almost ar...
17451    let consistent ominimal theory extending theor...
17452    standard bayesian analyses difficult perform f...
17453    large area xray proportional counter laxpc one...
17454    give counterexample vector generalization cost...
17455    work ask two questions predict type community ...
17456    hilberts th problem studies finite generation ...
17457    design stochastic algorithm train smooth neura...
17458    find evidence strong thermal inversion dayside...
17459    magneticfieldtemperature phase diagram solid o...
17460    extended kalman filter ekf guarantee consisten...
17461    establish new approximation results sense lusi...
17462    paper multiagent coordination problem steadyst...
17463    first time intermodulation distortion microele...
17464    ingaasbased gateallaround gaa fets moderate hi...
17465    paper study integral type deltaagammarhobx gam...
17466    paper define notion pullback lifting lifting c...
17467    simplex algorithm linear programming based fac...
17468    diffusionbased communication molecular systems...
17469    modified hamiltonian monte carlo mhmc methods ...
17470    whitepaper proposes design adoption new genera...
17471    paper introduce dicod convolutional sparse cod...
17472    study uniqueness dirichlet problems second ord...
17473    interfaces oxide materials lattice electronic ...
17474    mathematical model emerging contaminants sorpt...
17475    deep generative models based generative advers...
17476    approximate vanishing ideal new concept comput...
17477    xray free electron lasers xfels proven generat...
17478    avenues majorana bound states mbss become one ...
17479    research tertiary priority ehr priorities pati...
17480    show whereas spin onedimensional u quantumlink...
17481    paper two portfolio choice models studied pure...
17482    study basic properties class universal operato...
17483    realize test advanced accelerator concepts har...
17484    investigated magnetic behavior metal hydrides ...
17485    cloud computing helps reduce costs increase bu...
17486    password security longer provide enough securi...
17487    paper presents practical approach towards impl...
17488    recent advances deep learning especially deep ...
17489    mechanical failure amorphous media ubiquitous ...
17490    validity strong law large numbers multiple sum...
17491    letter study mean sizes halpha clumps turbulen...
17492    motivated host empirical evidences revealing b...
17493    consider spectral dirichlet problem laplace op...
17494    examine meaning complexity probabilistic logic...
17495    recently thas et al introduced new statistical...
17496    present strongest constraints date anisotropie...
17497    paper introduce system unsupervised object dis...
17498    one significant challenges involved efforts un...
17499    paper examines speaker identification potentia...
17500    paper using idea linearizing maximal operators...
17501    look interval exchange transformations defined...
17502    consider parabolic equation measure data begin...
17503    number contributors online peerproduction syst...
17504    brief note highlights basic concepts required ...
17505    present novel experimental results pattern for...
17506    purpose paper study yamabe solitons threedimen...
17507    investigate exceedances process sufficiently h...
17508    problem classification local field potentials ...
17509    give explicit examples answer open minded ques...
17510    consider inference history sample dna sequence...
17511    paper ellipsoid method linear programming deri...
17512    experimentally demonstrate ring geometry allfi...
17513    explore possibility discovering extreme voting...
17514    recently integrability conditions ics mutistat...
17515    consider estimation multiperiod optimal portfo...
17516    tests gravity galaxy scale infancy first step ...
17517    mapping advanced elements contemporary social ...
17518    prove generating functions colored homflypt po...
17519    study n supersymmetric solutions supergravity ...
17520    paper show recent integration statistical mode...
17521    paper proposes segmentationfree automatic effi...
17522    determined new relations ubv colors masstoligh...
17523    study numerically bloch electron wavepacket dy...
17524    sequential monte carlo become standard tool ba...
17525    decades psychological research aimed modeling ...
17526    present collection conjectural trace identitie...
17527    targeted attacks network infrastructure notori...
17528    reinforcement learning symbolic planning used ...
17529    pristine material surfaces exposed air highly ...
17530    develop theory hydrodynamic charge heat transp...
17531    predicting proposed cancer treatment affect gi...
17532    rechargeable redox flow batteries serpentine f...
17533    present list open questions mathematical physi...
17534    online advertising product recommendation impo...
17535    goal population spectral synthesis pss deciphe...
17536    citechenfgi proposed differential operator eva...
17537    paper new restarting method krylov subspace ma...
17538    paper nil extensions special type ordered semi...
17539    examine class embeddings based structured rand...
17540    probabilistic modeling fundamental statistical...
17541    considerable research automated index tuning d...
17542    despite remarkable successes deep reinforcemen...
17543    demonstrate diffusive superconductorferromagne...
17544    although majority theoretical literature highd...
17545    paper use iterative algorithm solving fredholm...
17546    kernel quadratures kernelbased approximation m...
17547    work introduce conditional accelerated lazy st...
17548    generative moment matching network gmmn deep g...
17549    study multipartite entanglement quantum manybo...
17550    thermal properties graphene monolayers studied...
17551    summary presented paper highlights results obt...
17552    stochastic model excitatory inhibitory interac...
17553    present new monte carlo methodology accurate e...
17554    study unitary representations noncompact real ...
17555    paper describe problem painter classification ...
17556    paper establish elliptic local liyau gradient ...
17557    due one representative contributions energy di...
17558    environmental pollutants colors textile indust...
17559    paper provides generating series embedding tre...
17560    report results simultaneous xray reflectivity ...
17561    observation micron size spin relaxation makes ...
17562    advanced gravitationalwave detectors laser int...
17563    design spacecraft trajectories missions visiti...
17564    prove every bushnellkutzko type satisfies cert...
17565    let k mathbbfqt rational function field finite...
17566    present result number decoupled molecules syst...
17567    learning remember long sequences remains chall...
17568    increasingly internet things iot domains senso...
17569    recently shown yield amorphous solids oscillat...
17570    present review data types statistical methods ...
17571    provide sufficient conditions guarantee transl...
17572    paper new contribution aims explore impacts bi...
17573    classification performances supervised machine...
17574    propose autoencoding sequencebased transceiver...
17575    prove effective nullstellensatz elimination th...
17576    let q prime power prime p n positive integer m...
17577    zebrafish pretectal neurons exhibit specificit...
17578    able predict whether song hit impor tant appli...
17579    train multitask autoencoders linguistic tasks ...
17580    time series forecasting crucial component many...
17581    investigate ground state properties ultracold ...
17582    recent determination hubble constant via cephe...
17583    automatic generation caption describe content ...
17584    swirlswitching lowfrequency oscillatory phenom...
17585    key advance learning generative models use amo...
17586    paper propose novel learning method image clas...
17587    sensitivity molecular dynamics changes potenti...
17588    work study multiagent coordination problem age...
17589    pattern lock widely used authentication protec...
17590    many analysis machine learning tasks require a...
17591    last decades increasing interest improving acc...
17592    conjecture universal probability distribution ...
17593    carry study statistical distribution rainfall ...
17594    bin packing problems widely studied broad appl...
17595    human populations exhibit complex behaviorscha...
17596    although timely sepsis diagnosis prompt interv...
17597    paper prove hlder regularity bounded uniformly...
17598    exists critical speed propagation line soliton...
17599    paper describes submission clac conll shared t...
17600    local existence uniqueness theorem odes specia...
17601    mapper produces compact summary high dimension...
17602    paper presents three dimensional collision avo...
17603    paper consider problems covering multiple inte...
17604    examine institutional context affects relation...
17605    great variety text tasks topic spam identifica...
17606    endovascular sealing new technique repair abdo...
17607    mapreduce framework de facto standard hadoop c...
17608    consider topic multivariate regression manifol...
17609    study problem finding small subset items empha...
17610    sketchbased modeling strives bring ease immedi...
17611    study problem ranking set items nonactively ch...
17612    saga fast incremental gradient method finite s...
17613    effects nitridation density traps siosic inter...
17614    derive finite temperature keldysh response the...
17615    work introduces tensorbased method perform sup...
17616    given set baseline assumptions breakdown front...
17617    study detection methods multivariable signals ...
17618    singular limits ftheory compactifications ofte...
17619    crystal structures bloch theorem play fundamen...
17620    consider multiway massive multipleinput multip...
17621    paper introduce study motives rational homotop...
17622    work extends elsner wandelt iterative method e...
17623    selfconsistent treatment cosmological structur...
17624    let kf finite extension number fields degree n...
17625    consider class rudinshapirolike polynomials wh...
17626    highlight rulebased integration rubi enhanced ...
17627    paper analyze performance timeslotted multiant...
17628    show polarization states electromagnetic waves...
17629    empirical work economics common report standar...
17630    prove two results concerning ulamtype stabilit...
17631    communication describe novel technique event m...
17632    despite significant advances artificial intell...
17633    paper generalises moris famous theorem project...
17634    investigate dynamics water confined soft ionic...
17635    main objective paper study global strong solut...
17636    planetary cores consist liquid metals low pran...
17637    followership generally defined strategy evolve...
17638    present improved mars odyssey neutron spectrom...
17639    let varphimathbbrrightarrow mathbbr continuous...
17640    navigation problem classically approached two ...
17641    paper presents thorough evaluation several wid...
17642    present deeppicar lowcost deep neural network ...
17643    considering structure functions streamwise vel...
17644    compact modeling interdevice radiationinduced ...
17645    note shown class multipliers dparameter hardy ...
17646    consider using battery storage system simultan...
17647    nervous system encodes continuous information ...
17648    present investigation clumpy galaxies hubble u...
17649    propose use incomplete dot products idp dynami...
17650    let commutative noetherian ring containing fie...
17651    last part series three papers entitled fourdim...
17652    cost per click cpc pricing model advertiser pa...
17653    important task many scientific domains efficie...
17654    planar linear restricted fourbody problem used...
17655    investigate mechanical properties amorphous po...
17656    skin cancer major public health problem common...
17657    article introduces notion arbitrage situation ...
17658    define class surfaces surface pairs correspond...
17659    efficient descriptor model fast screening pote...
17660    prove combinatorially product schubert polynom...
17661    topological nodal line dnl semimetals formed c...
17662    variational inference popular technique approx...
17663    monolayers transition metal dichalcogenides tm...
17664    exact solutions laminar stratified flows newto...
17665    large class machine learning techniques requir...
17666    covariant canonical formalism covariant extens...
17667    study cascading failures system comprising int...
17668    geodesic current associated quasimetric space ...
17669    trivial events ubiquitous human human conversa...
17670    paper investigate casacore table data system c...
17671    report experimental observation filamentation ...
17672    absence lens form image incoherent partially c...
17673    multiview video supports observing scene diffe...
17674    objective present work construct sound mathema...
17675    propose simple technique encouraging generativ...
17676    loosely speaking shannon entropy rate used gau...
17677    aspects preparation process performance degrad...
17678    mixed manna contains goods everyone likes bads...
17679    explain predictions blackbox model paper use i...
17680    study analytically numerically optical analogu...
17681    progress science advanced development human so...
17682    family mathcalm means natural partial order po...
17683    propose fully distributed actorcritic algorith...
17684    describe structure hausdorff locally compact s...
17685    electrons confined single landau level two dim...
17686    last decades numerous security privacy issues ...
17687    review discuss channel simulation used simplif...
17688    nonparametric method ranking stock indices acc...
17689    plastic deformation metallic glasses performed...
17690    work closely related theories set estimation m...
17691    detection cell nuclei microscopic images chall...
17692    given heegaard splitting threemanifold conside...
17693    modeling network traffic gaining importance or...
17694    quantum coherence phenomena driven electronicv...
17695    recently wide range smart devices deployed var...
17696    element e ordered semigroup scdotleq called or...
17697    let pi heckemaass cusp form slmathbbz chichich...
17698    known implied volatility skew fx options demon...
17699    calculate amplitudetophase amtopm noise conver...
17700    direct frequencycomb spectroscopy used probe a...
17701    variety energy resources identified flexible e...
17702    inferring walls configuration indoor environme...
17703    experience replay key technique behind many re...
17704    investigate problem dynamic portfolio optimiza...
17705    report sample highmass starless clump hmsc can...
17706    artificial neural networks learn perform princ...
17707    problem object localization recognition autono...
17708    propose fast simple robust algorithm computing...
17709    recently deep learning community given growing...
17710    heisenberg spin chain compound srcuo doped dif...
17711    joint introduction asterisque volume give shor...
17712    many realworld systems characterized stochasti...
17713    field biomedical imaging undergone rapid growt...
17714    new initiative international swaps derivatives...
17715    hierarchical models utilized wide variety prob...
17716    atomistic simulations carried analyze interact...
17717    hyperspectralmultispectral imaging hsimsi cont...
17718    among large number promising twodimensional at...
17719    starting langevin formulation thermally pertur...
17720    present feature functional theory binding pred...
17721    one serious issues communication people hiding...
17722    weighted automata wa important formalism descr...
17723    let g finite group let pdotspn distinct primes...
17724    generalize kobayashis example noether inequali...
17725    study continuity space translations nonparamet...
17726    study propose shrinkage methods based generali...
17727    formulate bayesian updates markov processes me...
17728    scanning tunnelling microscopy low energy elec...
17729    real hypersurface complex quadric qmsomsomso s...
17730    quest towards expansion max design space accel...
17731    deep learning proven powerful tool computer vi...
17732    determine value search games goal find hidden ...
17733    report discovery four short period extrasolar ...
17734    formulate general criterion exact preservation...
17735    use cva cover credit risk widely spread limita...
17736    ensemble pruning selecting subset individual l...
17737    paper devoted relationship psychophysics physi...
17738    study shimura curves pel type mathsfag generic...
17739    datadriven anomaly detection methods suffer dr...
17740    selfsimilarity recently introduced measure int...
17741    highly principled data science insists methodo...
17742    study class focusing nonlinear schroedingertyp...
17743    following previous studies restarting automata...
17744    work nonparametric statistical inference provi...
17745    symbol used describe springer correspondence c...
17746    harms allocation increasingly studied part sub...
17747    xray spectra neutron stars located centers sup...
17748    prove various inequalities number partitions b...
17749    overabundances highly siderophile elements hse...
17750    consider bayesian model inversion observed amp...
17751    promising route realization majorana fermions ...
17752    paper introduce raduls fastest parallel sorter...
17753    deterministic neural nets shown learn effectiv...
17754    work relates famous experiments performed wern...
17755    shortest paths problem spp longer unresolved l...
17756    paper present short elementary proof error sim...
17757    cosmology near future promises measurement sum...
17758    liquidphaseexfoliation technique capable produ...
17759    designing exoskeleton reduce risk lowback inju...
17760    todays researchers field pulmonary embolism pe...
17761    point classical thermodynamics results paper k...
17762    hightransmissivity alldielectric metasurfaces ...
17763    proposed probabilistic approach joint modeling...
17764    quantum key distribution qkd offers way establ...
17765    deep neural networks family computational mode...
17766    economy asymmetric information smart contract ...
17767    ordering theorems characterizing partial order...
17768    foundation driverless vehicle intelligent robo...
17769    existing markov chain monte carlo mcmc methods...
17770    embed flipped rm su times rm u gut model nosca...
17771    interactive computation paradigm reviewed part...
17772    iin recent years growing interest applying dat...
17773    propose analyze efficient spectralgalerkin app...
17774    mendelian randomization uses genetic variants ...
17775    direct acousticstoword aw models endtoend para...
17776    convolutional dictionary learning cdl sparsify...
17777    present latetime optical rband imaging data pa...
17778    article consider markov chain monte carlomcmc ...
17779    generalise multiple string pattern matching al...
17780    correspondence definable connected groupoids t...
17781    family qbetabeta geq markov chains said exhibi...
17782    present scheme deterministically prepare noncl...
17783    bayesian optimization sampleefficient method f...
17784    recent years attack leverages register informa...
17785    report discovery system two superearths orbiti...
17786    new electron beamoptical procedure proposed qu...
17787    due excellent shockcapturing capability high r...
17788    paper presents educational code written using ...
17789    document outlines approach supporting crossnod...
17790    smallscale topological structure airline netwo...
17791    principle glitch states device makes discrete ...
17792    article perform asymptotic analysis bayesian p...
17793    recent interest topological semimetals lead pr...
17794    recent research shown usefulness using collect...
17795    random geometric graphs hyperbolic spaces expl...
17796    study efficient learnability geometric concept...
17797    editorial board members considered gatekeepers...
17798    paper examines standard model strongelectrowea...
17799    introduce flexible robust functional regressio...
17800    paper concerned deterministic wave generation ...
17801    dual energy ct dect enhances tissue characteri...
17802    wind farms wake interaction leads losses power...
17803    show ensemble qfunctions leveraged effective e...
17804    two modestsized symbolic corpora posttonal pos...
17805    existing urban boundaries usually defined gove...
17806    peer review foundation scientific publication ...
17807    generating random variates highdimensional dis...
17808    show mild topological assumptions small oscill...
17809    present systematic method designing distribute...
17810    terrorism become one tedious problems deal pro...
17811    present first results ongoing pilot project te...
17812    wellknown gans difficult train several differe...
17813    acute respiratory infections epidemic pandemic...
17814    model uncertainty empirical bayes eb procedure...
17815    paper introduce finite field analogue appell s...
17816    article consider twoway twotape alternating au...
17817    circ video requires human viewers actively con...
17818    zeroshot learning zsl challenging task aiming ...
17819    speaker change detection scd important task di...
17820    paper develop bivariate discrete generalized e...
17821    new people united states diagnosed colorectal ...
17822    users online social networks osns interact eve...
17823    present approach path following using socalled...
17824    theoretically study scattering process superco...
17825    model selection mixed models based conditional...
17826    study ground state energy neumann magnetic lap...
17827    develop implement automated methods optimizing...
17828    testing simplifying assumption highdimensional...
17829    paper study natural special case traveling sal...
17830    shown using similarity transformations set thr...
17831    recent studies shown reinforcement learning rl...
17832    artificial neural network ann useful tool solv...
17833    determinantal point processes dpps wideranging...
17834    double machine learning provides sqrtnconsiste...
17835    perform direct numerical simulations shockwave...
17836    latent factor models recommender systems repre...
17837    establish large sample approximations arbitray...
17838    wordvec mikolov et al proven successful natura...
17839    study extremal algorithmic questions subset ca...
17840    selection west java governor one event seizes ...
17841    next generation ai applications continuously i...
17842    temporary work employment situation useful sui...
17843    transition metal dichalcogenides represent ide...
17844    demonstrate identification position material o...
17845    prove set symplectic lattices siegel space mat...
17846    viterbilike decoding algorithm proposed paper ...
17847    multiferroic bifeo cycloidal antiferromagnetic...
17848    project proposes reuse dafne accelerator compl...
17849    understanding planetary interiors directly lin...
17850    occurrence new events system typically driven ...
17851    work conduction ionwater solution two discrete...
17852    extreme values modeling attracting attention r...
17853    systems subject uncertain inputs produce uncer...
17854    combination large open data sources machine le...
17855    discrete cosine transform dct key step many im...
17856    well known initialization weights deep neural ...
17857    boundary value problem complete second order e...
17858    change point analysis statistical tool identif...
17859    realtime monitoring functional tissue paramete...
17860    interaction occurs light solid object horizont...
17861    compared relational database rdb graph databas...
17862    paper present algorithm sparse signal recovery...
17863    twodimensional materials among promising candi...
17864    article provides first survey computational mo...
17865    tensor network methods taking central role mod...
17866    present four logic puzzles solutions joseph ye...
17867    exploration bonus derived novelty states envir...
17868    much success single agent deep reinforcement l...
17869    synthetic aperture imaging systems achieve con...
17870    designing software applications much effort pl...
17871    principal component analysis important pattern...
17872    recent years several convex programming relaxa...
17873    building recent work bhargavaelkiesschnidman k...
17874    drug repositioning dr refers identification no...
17875    work investigate dynamics nonlinear dde delayd...
17876    aim characterize lipschitz functions variable ...
17877    consider thin normal metal sandwiched two ferr...
17878    consider privacy implications public release d...
17879    nash equilibrium paradigm rational choice theo...
17880    predictions parameteric property models uncert...
17881    split manufacturing promising technique defend...
17882    autonomous sorting crucial task industrial rob...
17883    whittle likelihood widely used bayesian nonpar...
17884    geophysical model domains typically contain ir...
17885    map merging component crucial proper functiona...
17886    paper introduces family local feature aggregat...
17887    paper demonstrate subharmonic injection lockin...
17888    studied longitudinal spin seebeck effect polar...
17889    complete picture available literature showing ...
17890    approximate bayesian computation abc method ba...
17891    regression problems pervasive realworld applic...
17892    define new method estimate centroid text class...
17893    calculation nearneighbor interactions among hi...
17894    evolution present status gaseous photon detect...
17895    propose hybrid quantum system lc resonator ind...
17896    video games playing thereof fixture american c...
17897    learning latent representation data unsupervis...
17898    sensor selection refers problem intelligently ...
17899    introduce discrete distribution wiener process...
17900    coherent control resonant response spatially e...
17901    recently demonstrated presence spinorbit toque...
17902    study relationship ultraproduct crossed produc...
17903    fundamental issue statistical classification m...
17904    problem machine learning missing values common...
17905    paper provides entry point problem interpretin...
17906    digital era one thing still holds convention p...
17907    paper proposes gamma process modelling damage ...
17908    suppose one data one completed vaccine efficac...
17909    let b autx doldlashof classifying space orient...
17910    sophisticated gated recurrent neural network a...
17911    study manybody localization properties disorde...
17912    deep neural networks show great potential solu...
17913    paper two robust model predictive control mpc ...
17914    hidden markov models hmms ubiquitous tool mode...
17915    network growth processes understood generative...
17916    advances data analytics bring civil rights imp...
17917    present paper dedicated global wellposedness i...
17918    present largefield times deg mapping observati...
17919    unseen data conditions inflict serious perform...
17920    study generation matterantimatter asymmetry bo...
17921    paper introduces acoustic scene classification...
17922    propose class particleincell pic methods vlaso...
17923    methodological research rarely generates broad...
17924    deep learning established framework learning h...
17925    demographic studies suggest changes retinal va...
17926    review study rigorously notion mixed states de...
17927    background chromatin remodelers swisnf family ...
17928    consider two questions heart machine learning ...
17929    provide full analysis ghost free higher deriva...
17930    introduce novel approach predicting progressio...
17931    many baryons galaxy probably lie outside well ...
17932    supercontinuum generation using chipintegrated...
17933    series examples illustrate important drawbacks...
17934    give rigorous characterization means programmi...
17935    present new class service location based socia...
17936    characterize completeness framebasis property ...
17937    deep learning models often successfully traine...
17938    computer based recognition detection abnormali...
17939    let expanding dtimes matrix integer entries ma...
17940    paper consider dvali gmez assumption end state...
17941    consider problem convergence saddle point conc...
17942    investigate extent mobile use patterns predict...
17943    previous study algebraic formulation first fun...
17944    micro aerial vehicles mavs limited operation o...
17945    describe algorithms compute elliptic functions...
17946    magnetic skyrmions localized nanometric spin t...
17947    generative models long dominant approach speec...
17948    hidden markov models one popular estimates hid...
17949    paper considers insertion deletion channels ad...
17950    periodic supercell models electric double laye...
17951    paper present crowdtone system designed help p...
17952    restricted boltzmann machines rbms energybased...
17953    compound random measures corms flexible tracta...
17954    test gravitational force antimatter field matt...
17955    attentionbased sequencetosequence models autom...
17956    propose new approach train generative adversar...
17957    seminal work gatys et al demonstrated power co...
17958    aim characterizing largescale distribution ho ...
17959    consider certain quotient polynomial ring cate...
17960    blog becoming increasingly popular media infor...
17961    meaningful laws nature must independent units ...
17962    characterization primary events involved cistr...
17963    consider implementations highorder finite diff...
17964    lattice monte carlo simulations parallelizatio...
17965    prove upper lower bounds effective content log...
17966    morphable models dmms powerful statistical mod...
17967    medicine visualizing chromosomes important med...
17968    based agile transformation cases years article...
17969    symboliccomputational algorithm fully implemen...
17970    hess j unidentified hard spectrum source disco...
17971    investigate nextgeneration laser pulses pw pw ...
17972    social dilemmas mutual cooperation lead high p...
17973    casimir free energy dielectric films freestand...
17974    pharmacoepidemiology pe study uses effects dru...
17975    new form variational autoencoder vae developed...
17976    prove exist hypersurfaces contain given closed...
17977    inverse problems broad sense task learn noisy ...
17978    work presents model reduction approach problem...
17979    stochastic gradient descent sgd popular stocha...
17980    precise trajectory control near ground difficu...
17981    communication presents longitudinal modelfree ...
17982    new book cosmologists geraint f lewis luke bar...
17983    novel sparsitybased algorithm audio inpainting...
17984    identifying palindromes sequences interesting ...
17985    remanufacturing significant factor securing su...
17986    temperature tdependent coarsegrained cg hamilt...
17987    paper present libdirectional matlab library di...
17988    novel idea proposed natural solution dark ener...
17989    selfpaced learning hard example mining reweigh...
17990    investigate electronic structure weyl semimeta...
17991    purpose study analyze cyber security security ...
17992    develop theory weak fraisse categories crucial...
17993    music recommendation services collectively spi...
17994    paper studies large time behavior solution cla...
17995    paper studies mathematical properties reaction...
17996    chemical reaction networks generalized massact...
17997    paper study missing sample recovery problem us...
17998    one kind skin cancer melanoma dangerous dermos...
17999    extend rubio de francias extrapolation theorem...
18000    layered transition metal dichalcogenides ltmdc...
18001    consider problem zero distribution first kind ...
18002    discovered two novel types planar defects appe...
18003    manuscript investigates selfconsistent solutio...
18004    examine article pricing target volatility opti...
18005    revisit blind deconvolution problem focus unde...
18006    present unified perspective symmetry protected...
18007    volume contains proceedings eighth internation...
18008    analyze effect quenched disorder spin quantum ...
18009    knowledge graphs structured representations re...
18010    consider multi armed bandit problem nonstation...
18011    propose new randomized coordinate descent meth...
18012    investigate performance standard greedy algori...
18013    paper algebroid bundle associated affine metri...
18014    control complex networks significant challenge...
18015    despite fundamental role determining material ...
18016    surface observations indicate speed solar meri...
18017    many studies environmental change past centuri...
18018    illposed analytic continuation problem greens ...
18019    program slicing provides explanations illustra...
18020    synthetic dimensions alter one fundamental pro...
18021    managedmetabolism hypothesis suggests cooperat...
18022    silicon drift detectors sdds revolutionized sp...
18023    online learning rank core problem information ...
18024    extend technique called compiling control tech...
18025    largescale vortices protoplanetary disks thoug...
18026    paper introduces new nonlinear dictionary lear...
18027    smillie proved interesting result stability no...
18028    geospatial semantics broad field involves vari...
18029    paper continue study citemiaotxdnlsstab use pe...
18030    technical note describes new baseline natural ...
18031    even advance frontiers physics knowledge under...
18032    study energy functional set lagrangian tori ma...
18033    viewing trajectory patient dynamical system re...
18034    consider schrdinger equation half space dimens...
18035    background nuclear structure cluster bands ne ...
18036    investigate terminalpairibility problem case b...
18037    meta learning optimal classifier error rates a...
18038    event detection critical feature datadriven sy...
18039    paper locally classifies finitedimensional lie...
18040    work sets compute discuss effects spin velocit...
18041    paper provide axiomatic characterization idemp...
18042    investigate constraints sum neutrino masses si...
18043    show number unique function mappings neural ne...
18044    blackbox explanation problem explaining machin...
18045    derive finitevolume correction binding energy ...
18046    additive models produced gradient boosting ful...
18047    formulate quasiclassical theory omegactau less...
18048    context rosetta orbiter spectrometer ion neutr...
18049    walking quadruped robots face challenges posit...
18050    field neuroimaging grows difficult scientists ...
18051    number trees random forest rf algorithm superv...
18052    study investigates shortcrested wave breaking ...
18053    transition metal dichalcogenides tmdcs twodime...
18054    theoretically study bilayer superconducting to...
18055    paper consider threenode cooperative wireless ...
18056    let f nonarchimedean locally compact field stu...
18057    game semantics rich successful class denotatio...
18058    present proposal applying nanoscale magnetomet...
18059    preprocessing tools automated text analysis be...
18060    propose new method embedding graphs preserving...
18061    develop feedback control method networked epid...
18062    prove number iterations taken weisfeilerleman ...
18063    prove analogue hardylittlewood conjecture asym...
18064    besides enabling enhanced mobile broadband nex...
18065    work prove existence local convex solution deg...
18066    prove following superexponential distribution ...
18067    since beginning new millennium stock markets w...
18068    superconducting energy gap rm dynibc investiga...
18069    paper study problem finding small safe set gra...
18070    although ample work literature dealing skewnes...
18071    using age information freshness metric examine...
18072    applied predefined kernels also known filters ...
18073    paper proposes neural network architecture tra...
18074    let mathcalk subseteq universal class lsmathca...
18075    superneptune exoplanet waspb exciting target a...
18076    logical models successfully used describe regu...
18077    work present scalable balancing domain decompo...
18078    fluxsplitting method proposed hyperbolicequati...
18079    address unsupervised optical flow estimation e...
18080    autonomous driving requires perception vehicle...
18081    present search cii emission cosmological scale...
18082    complete proof generalized smale conjecture ap...
18083    reinforcement learning rl algorithms involve d...
18084    multiscale analysis stochastic bistable reacti...
18085    interpretability emerged crucial aspect machin...
18086    propose new technique singular vector canonica...
18087    paper establishes general equivalence discrete...
18088    prove hardy inequality ultraspherical expansio...
18089    bayesian neural networks bnns recently receive...
18090    several realistic situations interactive learn...
18091    paper compares results applying recently devel...
18092    acoustical radiation force arf induced single ...
18093    construct two infinite series moufang loops ex...
18094    paper formality conjecture kontsevich designed...
18095    many similaritybased clustering methods work t...
18096    paper apply shrinkage strategies estimate regr...
18097    let transitive model set theory canonical inte...
18098    propose paralleldatafree voiceconversion vc me...
18099    leastsquares models linear regression linear d...
18100    present new map interstellar reddening coverin...
18101    seasonal patterns associated stress modulation...
18102    paper consider existence nonexistence solution...
18103    present study andreev quantum dots qdots fabri...
18104    introduce helsinki neural machine translation ...
18105    phase transformations ruled nonsimultaneous nu...
18106    work considers resilient cooperative state est...
18107    critical challenge observation redshifted cm l...
18108    autonomous robots dynamic environments mixed h...
18109    analyze invariant measures two coupled piecewi...
18110    virtually free group h containing nontrivial f...
18111    letter presents performance comparison two pop...
18112    paper consider stochastic dual coordinate sdca...
18113    regularized inversion methods image reconstruc...
18114    three dimensional galaxy clustering measuremen...
18115    let lubeginbmatrix u endbmatrix rvbeginbmatrix...
18116    work presents methodology modeling predicting ...
18117    study problem designing models machine learnin...
18118    paper consider markov chain choice model singl...
18119    sas introduced type iii methods address diffic...
18120    parents teachers often express concern extensi...
18121    existing logical models fairly represent epist...
18122    study critical behavior ncolor ashkinteller mo...
18123    study conductance junction normal superconduct...
18124    training neural machine translation nmt models...
18125    chromosome conformation capture hic technologi...
18126    wellknown verification partial correctness pro...
18127    study growth entanglement entropy density matr...
18128    work show saturating output activation functio...
18129    defined notion quantum torus ttheta masanori i...
18130    release two artificial datasets simulated flyi...
18131    introduce new probabilistic approach quantify ...
18132    tropical cyclone windintensity prediction chal...
18133    given pairwise distinct vertices alphai betaik...
18134    cirquent calculus proof system manipulating ci...
18135    dualfunctional nanoparticles property aggregat...
18136    photometric observations planetary transits ma...
18137    exist number mathematical approaches modeling ...
18138    recorded enclosed room sound signal certainly ...
18139    sizes entire systems globular clusters gcs dep...
18140    field enhancement factor emitter tip variation...
18141    demand drives systems generalize various domai...
18142    paper market values football players forward p...
18143    huanghilbert transform applied seismic electri...
18144    prove exceptional group e hurwitz group course...
18145    rapid development artificial intelligence brou...
18146    let smooth manifold let om poset open subsets ...
18147    wellknown fact adding noise input data often i...
18148    deal hypersurfaces framework ndimensional rela...
18149    present fully edible pneumatic actuator based ...
18150    stateoftheart methods proteinprotein interacti...
18151    decision making process extremely prone differ...
18152    recent reports claiming tentative association ...
18153    simplistic estimation neural connectivity meeg...
18154    paper provide update concerning operations nas...
18155    reason inference require process well memory s...
18156    pharmaceutical industry witnessed exponential ...
18157    let k simply connected compact lie group tastk...
18158    performed magnetic field frequency tunable ele...
18159    paper new smartphone sensor based algorithm pr...
18160    depthsensing important navigation scene unders...
18161    work answerset programs specify repairs databa...
18162    develop variant multiclass logistic regression...
18163    approximate bayesian computation abc synthetic...
18164    paper introduce notions iterated planar lefsch...
18165    paper considers scenario multiple data owners ...
18166    peer code review locates common coding rule vi...
18167    considering sphericallysymmetric nonstatic cos...
18168    paper reproduces text part authors dphil thesi...
18169    private information retrieval pir protocols ma...
18170    iterative algorithms like gradient descent com...
18171    commented translation paper universelle bedeut...
18172    electronic charge carriers ionic materials sel...
18173    paper metric reduction generalized geometry in...
18174    consider forecast aggregation problem repeated...
18175    paper cyber attack detection isolation studied...
18176    paper study nonself dual extended harpers mode...
18177    lieb lattice exhibits intriguing properties ge...
18178    analyzed effects bulk shear viscosities pertur...
18179    realistic models quantum chaotic systems hamil...
18180    paper combines fast zeromomentpoint zmp approa...
18181    work investigates influence geometric variatio...
18182    several recent works empirically observed conv...
18183    major challenge designing neural network nn sy...
18184    paper study smoothness regularization method v...
18185    painleveiv equation three families rational so...
18186    numerically study behavior selfpropelled liqui...
18187    rdma increasingly adopted cloud computing plat...
18188    recently introduced method approximate functio...
18189    answer question k mulmuley efremenkolandsbergs...
18190    develop onedimensional notion affine processes...
18191    listed among one hundred famous unsolved probl...
18192    paper develop distributed intermittent communi...
18193    paper conducts secondorder variational analysi...
18194    interpreting performance deep learning models ...
18195    apply acyclicity theorem hess kerdziorek riehl...
18196    study aims analyze methodologies used estimate...
18197    expedient design precision components aerospac...
18198    article presents use answer set programming as...
18199    paper define ainftykoszul duals directed ainft...
18200    paper introduces class backward stochastic dif...
18201    paper present thorough analysis nature news di...
18202    superconductorinsulator transition sit conside...
18203    introduce novel formulation motion planning co...
18204    injective polynomial modules general linear gr...
18205    goal present manuscript introduce reader nonst...
18206    least absolute shrinkage selection operator la...
18207    wireless sensor networks deployed many monitor...
18208    whitebox test generator tools rely code test s...
18209    study b rings complex optical depth structure ...
18210    determined shockdarkening pressure range ordin...
18211    paper study global fluctuations block gaussian...
18212    paper analyzes publication efficiency terms hi...
18213    eventbased cameras shown great promise variety...
18214    deep learning yielded stateoftheart performanc...
18215    many methods exist bipedal robot keep balance ...
18216    inspired tremendous success deep convolutional...
18217    federated learning recent advance privacy prot...
18218    okapi new causally consistent georeplicated ke...
18219    epithelial cell monolayers exhibit traveling m...
18220    context complexanalytic structure within unit ...
18221    initialization parameters deep neural networks...
18222    consider multitask estimation problem nodes ne...
18223    report mm continuum chcn cs line observations ...
18224    highfrequency measurements images acquired var...
18225    kpartition problem kpp one given edgeweighted ...
18226    present study reports interesting findings reg...
18227    show definition city boundaries dramatic influ...
18228    radio intensity polarization footprint cosmicr...
18229    investigate formation optical localized nonlin...
18230    intriguing properties emergent materials typic...
18231    nature threedimensional reconnection twisted f...
18232    observe finitedimensional central simple grade...
18233    crosslingual text classificationcltc task clas...
18234    map interacting helical liquid system coupled ...
18235    consider nonnegative solutions delta ufu halfp...
18236    rapidly growing product lines services require...
18237    entanglement entropy ee quantum systems often ...
18238    argue preferred classical variables emerge pur...
18239    momentum conservation law applied analyse dyna...
18240    whereas maintenance recognized important effec...
18241    hopf gave examples nonround convex spheres euc...
18242    revisit linear programming approach determinis...
18243    lightmatter interaction processes significantl...
18244    bechgaard salts tmtsfx tmtsf tetramethyl tetra...
18245    introduce inhomogeneous bosonic mixture compos...
18246    introduce new natural generalizations classica...
18247    paper presents klout topics lightweight ontolo...
18248    studying effects groups single nucleotide poly...
18249    theme paper threephase distribution system mod...
18250    develop general framework cvectors calabiyau c...
18251    thesis study lateral electrostatic interaction...
18252    paper study sectional curvature bounds riemann...
18253    paper proposes novel method automatically enfo...
18254    paper devoted contribution probability theory ...
18255    paper studies dynamic complexity definable cha...
18256    report documents implementation several relate...
18257    show stateoftheart services creating trusted t...
18258    paper contribution classical cops robber probl...
18259    wikipedia communitycreated online encyclopedia...
18260    people change physical contacts preventive res...
18261    study problem nonparametric estimation blploss...
18262    direct imaging suggests jovian exoplanet aroun...
18263    paper propose quantum variation combinatorial ...
18264    gegenbauer weight function wlambdattlambda lam...
18265    produce precise estimates kogbetliantz kernel ...
18266    identify strong equivalence neural network bas...
18267    use empirical normalized smoothed periodogram ...
18268    ultracold atomic fermi gases twodimensions inc...
18269    paper instead usual gaussian noise assumption ...
18270    complex spatiotemporal patterns called chimera...
18271    estimation unknown values parameters hidden va...
18272    address boundary value problem ellipsoidal bgk...
18273    octahedral tilting common distortion process o...
18274    elastic weight consolidation ewc kirkpatrick e...
18275    following decision reduce l beamcal moved clos...
18276    transition metal oxide memristors resistive ra...
18277    paper deep neural network dnn utilized improve...
18278    program comprehension vast research area neces...
18279    socalled binary perfect phylogeny persistent c...
18280    develop uniform asymptotic expansion empirical...
18281    understanding visual scene goes beyond recogni...
18282    investigate apparent powerlaw scaling pseudo p...
18283    aim paper present results relating properties ...
18284    study dynamical properties one twodimensional ...
18285    propose direct estimation method rnyi fdiverge...
18286    mixtures mallows models popular generative mod...
18287    optimal scheduling hydrogen production dynamic...
18288    modified ac method based microfabricated heate...
18289    project explores public opinion supplemental n...
18290    let pn set posets n elements nipn set nonisomo...
18291    advancement technology generated abundant high...
18292    neural models particular dvector xvector archi...
18293    methods detecting structural changes change po...
18294    statecharts frequently used modeling formalism...
18295    recently dynamics signed networks ties among a...
18296    stagnation grain growth often attributed impur...
18297    present three natural combinatorial properties...
18298    study cauchy problem effectively hyperbolic op...
18299    uniform electron gas finite temperature high c...
18300    study connection mapping spaces bimodules infi...
18301    area law violations entanglement entropy form ...
18302    guarantee integrity security data transmitted ...
18303    present new largescale square degrees simultan...
18304    matrixvalued covariance functions crucial geos...
18305    propose new dynamic stochastic blockmodel focu...
18306    context visual aesthetics increasingly seen es...
18307    largescale multiobject tracker based generalis...
18308    coefficient determination known r commonly use...
18309    gpsdenied uav agent b localised ins alignment ...
18310    inner surface superconducting cavities plays c...
18311    recent paper lasseux valdsparada porter jfluid...
18312    highly distributed training deep neural networ...
18313    present haloindependent determination unmodula...
18314    deep reinforcement learning achieved many rece...
18315    seminal paper chua presented fundamental physi...
18316    differential event rate weakly interacting mas...
18317    past years datacenter dc energy consumption be...
18318    numerical analysis diffraction features render...
18319    show dcolored set points general position math...
18320    purpose modeling specifying reasoning integrat...
18321    consider higher order parabolic operator parti...
18322    fashion industry establishing presence number ...
18323    fluidstructure interactions ubiquitous nature ...
18324    early universe could feature multiple reheatin...
18325    propose intuitive method called timedependent ...
18326    predicting epidemic dynamics great value under...
18327    limitations processing capabilities memory tod...
18328    problem synchronization coupled hamiltonian sy...
18329    semantic segmentation remains computationally ...
18330    motivated applications mixed longitudinal stud...
18331    recent nobelprizewinning detections gravitatio...
18332    outline construction local floer homology cois...
18333    paper presents contributions nonlinear trackin...
18334    consider problem estimating rate defects mean ...
18335    different questions related analysis extreme v...
18336    inductive kindependent graphs generalize chord...
18337    prove word problem undecidable functionally re...
18338    current processes building machine learning sy...
18339    show totally geodesic submanifold teichmuller ...
18340    show klocally smash product string bordism spe...
18341    paper explore various forms osmotic transport ...
18342    small pvalues often required accurately estima...
18343    researchers previously shown coincidental corr...
18344    observe effects three different events cause s...
18345    paper consider use structure learning methods ...
18346    show quantale v mathsfsetmonad mathbbt laxly e...
18347    compute leading postnewtonian pn contributions...
18348    tangent categories provide axiomatic approach ...
18349    objective bayesian approach estimate number de...
18350    navigation unknown chaotic environments contin...
18351    artificial intelligence ai effective science e...
18352    headline generation special type text summariz...
18353    observed galactic mixedmorphology supernova re...
18354    software systems static undergo frequent chang...
18355    explore efficient neural architecture search m...
18356    purpose uncertainty quantification uq reynolds...
18357    present new model algorithm performs efficient...
18358    paper studies sobolev regularity estimates wea...
18359    despite recent advances large scale visual art...
18360    work proposes process efficiently searching co...
18361    multilabel classification framework observatio...
18362    work establish tightest lower bound uptodate m...
18363    web archives large longitudinal collections st...
18364    begin summarizing relevance importance inducti...
18365    expanding upon earlier results arxiv present c...
18366    paper present awesome airborne wind energy sta...
18367    propose onedimensional model collecting lympha...
18368    prove existence oneparameter family nondisplac...
18369    haptic feedback essential acquire immersive ex...
18370    although recent progress deep neural network l...
18371    recently continuous cache models proposed exte...
18372    dyson demonstrated equivalence infiniterange c...
18373    establish lower bounds volume surface area geo...
18374    previously unreported pbbased perovskite pbmoo...
18375    long memory forecasting studies assume memory ...
18376    source code plagiarism detection problem addre...
18377    early attempts apply asteroseismology study ga...
18378    semantic labeling numerical values task assign...
18379    statistical model assuming preferential attach...
18380    descent theory linear categories developed giv...
18381    give topological game theoretic definitions th...
18382    theory influence thermal fluctuations electric...
18383    demonstrate optomechanical interference multim...
18384    propose algorithms online principal component ...
18385    crossterm spatiotemporal encoding xspen recent...
18386    derive formulas performance capital assets con...
18387    apart solving complicated problems require cer...
18388    article considers algorithmic statistical aspe...
18389    privacy become serious concern modern informat...
18390    give brief description birchswinnertondyer con...
18391    unmanned aerial vehicles uavs gained lot popul...
18392    present denotational account dynamic allocatio...
18393    deep networks thrive trained large scale data ...
18394    restricted threebody problem consecutive colli...
18395    paper presents notion andor reduction reduces ...
18396    present work shows application transfer learni...
18397    paper study simple splines riemannian manifold...
18398    hand one complex important parts human body de...
18399    study popular centrality measure known effecti...
18400    detail dynamic evolution localised reconnectio...
18401    risk analysis models systematically underestim...
18402    curve theta ito e metric space e equipped dist...
18403    consider learning fundamental properties commu...
18404    artificial intelligence methods solve continuo...
18405    workhorse atomic physics quantum electrodynami...
18406    feedback control theory extensively implemente...
18407    users suffering mental health conditions often...
18408    famous pentagon identity quantum dilogarithms ...
18409    traditional linear genetic programming lgp alg...
18410    given link lsubset representation pisltorm slm...
18411    wellknown every nonnegative univariate real po...
18412    discuss existence injectively universal calgeb...
18413    numerous embedding models recently explored in...
18414    present paper propose study estimators wide cl...
18415    complex kohn variational method electronpolyat...
18416    develop geometric approach quantum mechanics b...
18417    given relatively projective birational morphis...
18418    current theories hold brain function highly re...
18419    computer scientists working bioinformaticscomp...
18420    convolution critical component modern deep neu...
18421    paper present results studying famous young pa...
18422    apply firstorder reversal curve forc method bo...
18423    datadriven economy led significant shortage da...
18424    motivated safetycritical applications testtime...
18425    paper proposed nonuniform power delivery netwo...
18426    competition bind micrornas induces effective p...
18427    long range frequency chirping bernsteingreenek...
18428    type inference application domain natural fit ...
18429    introduce multifactor stochastic volatility mo...
18430    singlephoton avalanche diodes spad affordable ...
18431    give complete picture tensor product induced m...
18432    establish firstorder methods avoid saddle poin...
18433    connectivity related concepts fundamental inte...
18434    generative adversarial networks gans exciting ...
18435    study fingering instabilities pattern formatio...
18436    informationtheoretic bayesian optimisation tec...
18437    h ubiquitous important astronomical species wh...
18438    generalized linear model glm plays key role re...
18439    test case prioritization tcp techniques aim pr...
18440    birhythmicity occurs many natural artificial s...
18441    el nino probably influential climate phenomeno...
18442    recent results grepstad lev used show weighted...
18443    investigate ordinal invariants height length w...
18444    xml becoming standard business information rep...
18445    deal kernel theorems modulation spaces complet...
18446    artificial neural networks anns received incre...
18447    potential lack fairness outputs machine learni...
18448    vertices four dimensional cell form noncrystal...
18449    study singlecrystal raman spectra series cryst...
18450    realworld setting visual recognition systems b...
18451    repulsive hubbard model spinasymmetric hopping...
18452    optical properties color centers diamond subje...
18453    julian besag outstanding statistical scientist...
18454    dielectric lined waveguides extensive study ac...
18455    rotational hyperfine spectrum xsigma rightarro...
18456    domain name system translates human friendly w...
18457    article study plasmonic resonance infinite pho...
18458    investigate numerically experimentally effect ...
18459    show onedimensional circle case closed smooth ...
18460    field software engineering many new archetypes...
18461    feature descriptor provide information corresp...
18462    propose throughly investigate temporalized ver...
18463    paper introduce provide short overview nonnega...
18464    paper presents randomized algorithm computing ...
18465    obtaining reliable numerical simulations turbu...
18466    using among things fourier analysis techniques...
18467    study focusfocus singularities also known noda...
18468    using implicit loci geogebra eulers rgeq r ine...
18469    study physical dynamical properties ionized ga...
18470    recovery multispecies oral biofilms investigat...
18471    multicommodity flowcut gap fundamental paramet...
18472    poststarbursts psbs candidate rapidly transiti...
18473    point two milnes fourthorder integrators wells...
18474    conventional theory hydrodynamics describes ev...
18475    consider problems compressed sensing optimal d...
18476    problem nonparametric estimation signal gaussi...
18477    show gradient descent fullwidth linear convolu...
18478    work study degradation clofibric acid cfa aque...
18479    stability quench one main issue pursued superc...
18480    paper presents new methods estimate cardinalit...
18481    turlab facility laboratory equipped diameter d...
18482    electrical machines employing superconductors ...
18483    deterministic recursive algorithms computation...
18484    provide method solve optimization problem obje...
18485    shown ising distribution treated latent variab...
18486    multiagent systems mas able characterize behav...
18487    streaming instability powerful mechanism conce...
18488    microlocal gevrey regularity class sums square...
18489    give new formulation proof theorem halmos wall...
18490    construct linear basis free gdn superalgebra f...
18491    article investigate inexact iterative regulari...
18492    mixture models combine multiple components sin...
18493    existing medicine recommendation systems mainl...
18494    deep neural networks dnns achieved great succe...
18495    magnetic resonance imaging mri widely applied ...
18496    speech enhancement model used map noisy speech...
18497    double edge swaps transform one graph another ...
18498    background played important role xray missions...
18499    widespread interest emerging area predictive a...
18500    using dimensional bosonvortex duality nonlinea...
18501    new coding technique based textitfixed blockle...
18502    transport excitations along proteins formulate...
18503    solubility dyes amphiphilic association struct...
18504    many modelbased visual odometry vo algorithms ...
18505    prediction popularity profound impact social m...
18506    smart grid smart meters numerous control monit...
18507    consider homogeneous equation mathcal u mathca...
18508    crowded environments modify diffusion macromol...
18509    study effect coupling spin bath environment sy...
18510    quest large low frequency band gaps one princi...
18511    search instability nucleons bound xe nuclei re...
18512    massive stars like company provide brief overv...
18513    analyze behavior eigenvalues following non loc...
18514    using formalism based twobody smatrix study tw...
18515    srruo best candidate spintriplet superconducti...
18516    concerned regularity solutions lighthill probl...
18517    european space agency esa defines earth observ...
18518    minimum error correction mec approach used met...
18519    present opinion recommendation novel task join...
18520    formulate optimization problem maximizing data...
18521    propose boundary conditions diffusion equation...
18522    consider stable coxingersollross process drive...
18523    paper presents millimeter wave mmwave penetrat...
18524    electron spectrometer spede developed employed...
18525    control design approach developed general clas...
18526    introduce pipeline including multifractal detr...
18527    goal osirisrex mission return sample asteroid ...
18528    modify standard relativistic dispersion relati...
18529    present algorithm construction step wavelets l...
18530    fragmentation filaments dense cores thought im...
18531    transpires recent research temperatures radiat...
18532    paper studies problems locally stopping distri...
18533    present characteristics performance new ccd ca...
18534    consider class nested optimization problems in...
18535    designing new drug lengthy expensive process s...
18536    paper deals feature selection procedures spati...
18537    origins rapid dynamical slow glass forming liq...
18538    technological civilizations may rely upon larg...
18539    paper addressed issue estimating damage caused...
18540    nonavailability reliable sustainable electric ...
18541    express coefficients hirzebruch lpolynomials t...
18542    let xi function relating riemann zeta function...
18543    background many researchers studied relationsh...
18544    achieve explicit construction lowest landau le...
18545    linked data principles provide decentral appro...
18546    apply recently developed formalism generalized...
18547    study multiparametric family quadratic algebra...
18548    notes introductory lectures graduate school to...
18549    firms keep capital offer sufficient protection...
18550    angleresolved photoemission arpes experiments ...
18551    prove theorem completeness root functions schr...
18552    define web categories describing intertwiners ...
18553    one version concept structural controllability...
18554    study structure martingale transports finite d...
18555    branched covering surfaceknot surfaceknot form...
18556    wellknown question classical differential geom...
18557    attach langle vee ranglesemilattice graph bold...
18558    quasigray code dimension n length ell alphabet...
18559    recent theoretical work shown premainsequence ...
18560    present quantummechanical model surfaceassiste...
18561    explore existence global weak solutions hookea...
18562    resolve number longstanding open problems onli...
18563    performed empirical comparison ica pca algorit...
18564    band structure si inverse diamond structure wh...
18565    last decade digital footprints used cluster po...
18566    argue timesensitive networking tsn become de f...
18567    sparse subspace clustering ssc stateoftheart m...
18568    measurements ac losses htstape placed two bulk...
18569    examine performance efficient aipw estimators ...
18570    propose new ccg parsing model probability tree...
18571    developed polynomialtime algorithms generate t...
18572    assumption action perception investigated inde...
18573    article develop cliquebased method social netw...
18574    extend formalism matrix product states mps des...
18575    roller coaster ride turbulence tracer particle...
18576    study static game played finite number agents ...
18577    study bivariate stochastic recurrence equation...
18578    present unified classical treatment partially ...
18579    main goal modeling human conversation create a...
18580    principal component analysis pca successful di...
18581    work design proposed active permanent magnet b...
18582    learn object detector invariant occlusions def...
18583    linear arrays trapped laser cooled atomic ions...
18584    work revisit problem uniformity testing discre...
18585    refraction deflects photons pass atmospheres a...
18586    describe multiphased wizardofoz approach colle...
18587    argument component detection acd important sub...
18588    present vunet novel viewvu synthesis method mo...
18589    introduce new class priors bayesian hypothesis...
18590    paper novel multitaper modified group delay fu...
18591    paper studies deterministic consensus networks...
18592    investigate possible links largescale smallsca...
18593    consider searching trail maze composite hypoth...
18594    main aim article give necessary sufficient con...
18595    consider relative error low rank approximation...
18596    boolean matrix factorisation aims decompose bi...
18597    using negative gradient flow approach generali...
18598    show every countable group h solvable word pro...
18599    topological defects unavoidably form symmetry ...
18600    formulate present numerical method solving inv...
18601    introduce coherent state mapping ringpolymer m...
18602    stochastic gradient descent continuous time sg...
18603    consider family commuting local homeomorphisms...
18604    paper proposes new approach novel value networ...
18605    study problem recovering structured signal mat...
18606    describe new cognitive ability ie functional c...
18607    let compact connected smooth riemannian nmanif...
18608    present formal measure argument strength combi...
18609    property proposition paper remarks davies uniq...
18610    rasch model widely used item response analysis...
18611    one directly observable features transiting mu...
18612    investigate atmospheric dynamics terrestrial p...
18613    focus applied research topological insulators ...
18614    prove ple qinfty qpgeq p pqgeq q fracpfracpfra...
18615    low frequency array lofar radio telescope inte...
18616    growing interest learning data representations...
18617    consider nonunitary quantum dynamics neutral m...
18618    propose slightly revised millerhagberg mh algo...
18619    understanding topological insulators based und...
18620    reinforcement learning algorithms inefficient ...
18621    quantum technologies presented public without ...
18622    question continuousversusdiscrete information ...
18623    backgroundforeground classification fundamenta...
18624    investigate problem computing nested expectati...
18625    based version dudleys wiener process mass shel...
18626    path planning autonomous vehicles arbitrary en...
18627    training deep networks expensive timeconsuming...
18628    electroencephalogram eeg provides noninvasive ...
18629    derive new variance formulas inference general...
18630    paper propose method solve kadomtsevpetviashvi...
18631    key idea current deep learning methods dense p...
18632    halide perovskite hap semiconductors revolutio...
18633    data cube materialization classical database o...
18634    success deep convolutional architectures often...
18635    paper aim completion problem high order tensor...
18636    paper introduce family delignelusztig type var...
18637    embedded fano manifold x introduce new invaria...
18638    fog radio access network fran cellular wireles...
18639    intel software guard extensions sgx aims provi...
18640    volume transmission important neural communica...
18641    mixture factor analyzers model first introduce...
18642    semiexpository update rewrite ams ams memoir d...
18643    performing xrays measurements cosmic silence u...
18644    investigate corecollapse supernova ccsn nucleo...
18645    many technologies developed help improve spati...
18646    interactive session videoondemand vod streamin...
18647    paper show polynomial walks used establish twi...
18648    prove global existence unique mild solution ca...
18649    study concerned active use wikipedia teaching ...
18650    deep learning dl newgeneration artificial neur...
18651    ccnssim project open source implementation ccn...
18652    paper new approach proposed automated software...
18653    every time person encounters object given degr...
18654    paper prove analogue katorosenblum theorem sem...
18655    peculiar infrared ringlike structure discovere...
18656    question suitability transfer matrix descripti...
18657    paper studies bayesian ranking selection rs pr...
18658    paper propose perturbation framework measure r...
18659    paper claims new field empirical software engi...
18660    propose automatic diabetic retinopathy dr anal...
18661    present dryvr framework verifying hybrid contr...
18662    novice programmers often struggle formal synta...
18663    article construct additional perturbative quan...
18664    partial differential equations central describ...
18665    manifold calculus form functor calculus analyz...
18666    paper quick efficient method presented graspin...
18667    infants experts playing amazing ability genera...
18668    computational method based ellminimization pro...
18669    current flow closeness centrality cfcc better ...
18670    work paper presents animation extension chrvis...
18671    networks capture pairwise interactions entitie...
18672    present emphnustar observations neutron star n...
18673    motivated comparative genomics chen et al intr...
18674    study algebraic structures virtual singular br...
18675    games friendship links behaviors propose kplay...
18676    proxies regulatory reforms based categorical v...
18677    apply theory ground states classical finite he...
18678    show relative property abelianization nilpoten...
18679    study distributional properties linear discrim...
18680    despite impressive advances simultaneous local...
18681    overview recent work defining studying normal ...
18682    paper robust nonparametric estimators instead ...
18683    numerical simulations einsteins field equation...
18684    paper develops method construct uniform confid...
18685    investigate superconductinggap anisotropy one ...
18686    class lqregularized least squares lqls conside...
18687    paper firstly exploit interuser interference i...
18688    inspired recent work carleo troyer apply machi...
18689    central claim modern network science realworld...
18690    extend deep important results lichnerowicz con...
18691    propose simple mathematical model unemployment...
18692    success deep neural networks dnns wellestablis...
18693    sachdevyekitaev quantum mechanical model n maj...
18694    higher category theory exceedingly active area...
18695    supercdms experiment designed directly detect ...
18696    standard general relativity universe cannot st...
18697    recurrent neural networks rnns achieve stateof...
18698    study classes borel subsets real line mathbbr ...
18699    recently prakash et al discovered bulk superco...
18700    present paper provide description complete cal...
18701    many graphical gaussian selection methods baye...
18702    angiogenesis growth new blood vessels preexist...
18703    present article work henri bnard french physic...
18704    homomorphism graph g graph h vertex mapping f ...
18705    normalized subband adaptive filter nsaf widely...
18706    paper introduce novel framework distributional...
18707    propose graphbased process calculus modeling r...
18708    paper prove weyls law asymptotic formula diric...
18709    prove zagiers conjecture regarding adic valuat...
18710    develop approximate formula evaluating crossva...
18711    objective paper introduce artificial intellige...
18712    conventional chemisorption model dband center ...
18713    extracting significant places places interest ...
18714    generalizing several previous results literatu...
18715    hllhc federates efforts rd large international...
18716    various approaches proposed learn visuomotor p...
18717    derivation generating function gaudin hamilton...
18718    witnessing increasing availability event strea...
18719    paper consider network agents monitoring spati...
18720    analyze generic sequences geometrically linear...
18721    machine learning qualifies computers assimilat...
18722    network classification variety applications de...
18723    paper show mathrmrtmathsfwkl piconservative ex...
18724    paper considers joint design user power alloca...
18725    armed conflict led unprecedented number intern...
18726    deconstruct reasoned way reconstruct concept e...
18727    study problem generating adversarial examples ...
18728    introduce dynamic model default waterfall deri...
18729    paper propose novel receptiontransmission sche...
18730    correlation giantplanet mass atmospheric heavy...
18731    cooperative geolocation attracted significant ...
18732    define family intuitionistic nonnormal modal l...
18733    paper investigates impact link formation pair ...
18734    consider problem given data pair mathbfx mathb...
18735    treat utility maximization terminal wealth age...
18736    learningbased binary hashing become powerful p...
18737    idea incompetence learning adaptation function...
18738    analyze informationtheoretic limits recovery n...
18739    axiomatize molecularbiology reasoning style ve...
18740    briefly recall history nijenhuis torsion tenso...
18741    recently hydrodynamic description local equili...
18742    plane poiseuille flow pressure driven flow par...
18743    exponentially growing number scientific papers...
18744    many phase ii trials solid tumours patients as...
18745    provide explicit formulas evans kernels evanss...
18746    current stateoftheart image restoration enhanc...
18747    let mu ge dotsc ge mun mu dotsm mun let x dots...
18748    making right decision traffic challenging task...
18749    present sequential neural likelihood snl new m...
18750    generating diverse questions given images impo...
18751    demonstrated sympathetic cooling single ion bu...
18752    determine stability instability sufficiently s...
18753    agent modelling involves considering agents be...
18754    let q power prime let v vector space finite di...
18755    bayesian networks widely used last decades man...
18756    paper demonstrate manhattan structure exploite...
18757    analyzed performance biologically inspired alg...
18758    application humanoid robots common field healt...
18759    goal note show also bounded domain omega subse...
18760    rapid advancement highthroughput techniques fu...
18761    review instrumentation nuclear magnetic resona...
18762    shown ch implies existence compact hausdorff s...
18763    information intrinsic dimension crucial perfor...
18764    optimal dimensionality reduction methods propo...
18765    oseledets multiplicative ergodic theorem basic...
18766    electronic health records ehr data provide cos...
18767    framework generation bridgespecific fragility ...
18768    ubiquity systems using artificial intelligence...
18769    subsampling acquire directly passband within b...
18770    give moment map interpretation relatively bala...
18771    examine impact adversarial actions vehicles tr...
18772    paper presents two novel control methodologies...
18773    variational bayes vb common strategy approxima...
18774    weighted tree augmentation problem wtap fundam...
18775    social media tweets emerging platforms contrib...
18776    deal problem maintaining shortestpath tree roo...
18777    coupling human movement dynamics function desi...
18778    various models recently proposed reflect predi...
18779    paper consider problem sequentially optimizing...
18780    present observations taufunction fourth painle...
18781    representational similarity analysis rsa aims ...
18782    article explore algorithm diffeomorphic random...
18783    paper give characterization nikolskiuibesov ty...
18784    topological optical states exhibit unique immu...
18785    paper propose explore knearest neighbour ucb a...
18786    proportional mean residual life model studied ...
18787    paper consider extension results shape differe...
18788    state art integral evaluation analytical solut...
18789    aims determine flux densities photometric accu...
18790    synapses real neural circuits take discrete va...
18791    increasing interest applying methodology diffe...
18792    penetration distributed renewable energy dre g...
18793    paper consider x multiuser multipleinputsingle...
18794    autonomous driving electric vehicles nowadays ...
18795    identifying community structure complex networ...
18796    show solutions obtained paper exact solution a...
18797    researchers national institute standards techn...
18798    aim process discovery originating area process...
18799    obtain alternative explicit specht filtrations...
18800    network embeddings learn lowdimensional repres...
18801    axionlike particles promising candidates make ...
18802    obtain restrictions persistence barcodes lapla...
18803    carbon materials range properties high electri...
18804    paper use new approach prove largest eigenvalu...
18805    life complex biological phenomenon represented...
18806    study truncated point schemes connected graded...
18807    handcrafted features extracted dynamic contras...
18808    paper present new dataset distracted driver po...
18809    purpose document create data model serializati...
18810    use markov state models msms analyze dynamics ...
18811    current induced magnetization manipulation key...
18812    orientation effects resistivity copper grain b...
18813    applying classic telescoping summation formula...
18814    paper explore connection convergence distribut...
18815    longstanding debate concerning absence thresho...
18816    complete family solutions onedimensional react...
18817    paper develop numerical method solve nonlinear...
18818    pursuit realtime motion planning commonly adop...
18819    consider estimation parameters gaussian stocha...
18820    nine transiting earthsized planets recently di...
18821    study front propagation phenomena large class ...
18822    study problem designing distributed functional...
18823    contribution extend methodology proposed abry ...
18824    many researches demonstrated dna methylation o...
18825    toymodel publications citations processes prop...
18826    laserinduced adiabatic alignment mixedfield or...
18827    developed used collection statistical methods ...
18828    distributed algorithms solving additive consen...
18829    network analysis needs tools infer distributio...
18830    consider stationary autoregressive processes c...
18831    current results coverage control using mobile ...
18832    selfadjoint first order system hermitian piper...
18833    informally information inconsistency property ...
18834    material mixing induced rayleightaylor instabi...
18835    construct nonlinear oblique projections along ...
18836    becomes increasingly popular perform mediation...
18837    article dnnbased system detection three common...
18838    key challenge multirobot multiagent systems ge...
18839    work study extent structural connectomes topol...
18840    robust markov decision process rmdp sequential...
18841    fisher information matrix fim fundamental quan...
18842    paper study extension problem sublaplacian hty...
18843    univariate isotonic regression ir used nonpara...
18844    measuring domain relevance data identifying se...
18845    cyber attacks growing frequency severity past ...
18846    paper sequels give unified treatment higherdeg...
18847    present results optical spectroscopic monitori...
18848    algorithm solving smooth nonconvex optimizatio...
18849    consider inverse boundary value problem maxwel...
18850    discuss process building semantic maps interac...
18851    multimodal sensory data resembles form informa...
18852    blind gain phase calibration bgpc bilinear inv...
18853    empirical observations show ecological communi...
18854    discovered extremely red lowgravity l dwarf ma...
18855    determine abundances neutroncapture elements s...
18856    identification stuxnet worm provided highly pu...
18857    objective assessment prestige academic institu...
18858    ab initio description spectral interior absorp...
18859    analyze rank gradient finitely generated group...
18860    fuel cells batteries thermochemical energy con...
18861    comments play important role within online cre...
18862    develop new numerical schemes vlasovpoisson eq...
18863    markov chain monte carlo based bayesian data a...
18864    use nonabelian poincar duality recover stable ...
18865    report automated bartender system developed ma...
18866    spaces constant linear quadratic splines maxim...
18867    known primary source dietary vitamin c fruit v...
18868    propose new tabletop experimental configuratio...
18869    micropanel data collected analysed many resear...
18870    ab initio lowenergy effective hamiltonians two...
18871    clinical practice biomedical research measurem...
18872    present new model optical nebular emission hii...
18873    column closed pattern subgroups u finite upper...
18874    multicomponent nanoparticles synthesized eithe...
18875    unsupervised neural nets restricted boltzmann ...
18876    nathan fine gave beautiful product number bino...
18877    noisy environments achieve robust performance ...
18878    paper consider zerosum repeated games maximize...
18879    random codetrees necks introduced recently gen...
18880    let r commutative ring unity module r let gset...
18881    give first polynomialtime algorithms graphs bo...
18882    previous studies found significant number bug ...
18883    cell nuclei detection challenging research top...
18884    recently vertical shear instability vsi become...
18885    paper study optimal convergence rate distribut...
18886    braincomputer interface bci uses brain signals...
18887    provide uniform framework study exceptional ho...
18888    following paper present simple intensity estim...
18889    oxygen functional groups one important subject...
18890    study asymptotic properties conditional least ...
18891    paper concerned minimization fourthorder linea...
18892    let g simplyconnected semisimple algebraic gro...
18893    machine learning models widely used security a...
18894    main aim paper give new generalization hurwitz...
18895    stochastic user equilibrium important issue tr...
18896    investigate quantifier alternation hierarchies...
18897    let mathcali analytic pideal respectively summ...
18898    unprecedented demand large amount data catalyz...
18899    hardness learning errors lwe problem one fruit...
18900    nature bipolar gammaray fermi bubbles fb still...
18901    paper revisit primaldual dynamics convex optim...
18902    distribution sum rth power standard normal ran...
18903    propose dynamic boosted ensemble learning meth...
18904    paper novel framework proposed optimizing oper...
18905    consider problem training generative models ge...
18906    sound event detection sed typically posed supe...
18907    study optimally doped bisrcaycuodelta bi using...
18908    ordering dynamics selfpropelled particles inho...
18909    discuss amplification loop corrections quantum...
18910    reinforcement learning rl often powerful suffe...
18911    motivation epigenetic heterogeneity within tum...
18912    grangercausality frequency domain emerging too...
18913    asymmetric segregation key proteins cell divis...
18914    consider exchange wishes set suitable maketake...
18915    spontaneous symmetry breaking ssb important ph...
18916    evolutionary algorithms recently used create w...
18917    paper prove sharp limit community detection pr...
18918    nonlocal neural networks proposed shown effect...
18919    main aim present paper represent exact simple ...
18920    nature aerosols hot exoplanet atmospheres one ...
18921    introduce family mathematical objects called m...
18922    considerable amount machine learning algorithm...
18923    identify organization human social group commu...
18924    show solvable lie group real type homogeneous ...
18925    recently become feasible generate largescale m...
18926    zap qlearning algorithm introduced paper impro...
18927    recent years rapidly increasing amounts data c...
18928    work address problem disentanglement factors g...
18929    paper optimal control vlasovpoisson plasma ext...
18930    observe certain kind algebraic proof covers es...
18931    recent years great deal interest focused condu...
18932    discussions choice tree hash mode operation st...
18933    paper present neurally plausible model robot r...
18934    advances artificial intelligence ai transform ...
18935    recurrent neural networks rnns key technology ...
18936    mathematical modelling shown activity geminid ...
18937    lederer van de geer introduced new orlicz norm...
18938    justification logics modallike logics addition...
18939    number forehead nof multiparty communication m...
18940    key challenge online learning classical algori...
18941    let phi spherical heckemaass cusp form noncomp...
18942    newtons mechanical revolution unifies motion p...
18943    datadriven predictive analytics use today acro...
18944    give new proof wellknown competitive exclusion...
18945    random differential equations provide natural ...
18946    given set attributed subgraphs known different...
18947    present new technique probe central dark matte...
18948    propose ambiguity problem foreground object se...
18949    generalized polyhedral convex sets generalized...
18950    proteins commonly used biochemical industry nu...
18951    order handle intense time pressure survive dyn...
18952    recently link lorentzian finslerian geometries...
18953    recently grynkiewicz et al israel j math bf us...
18954    order robots perform missioncritical tasks ess...
18955    based convex leastsquares estimator propose tw...
18956    often significant tradeoff formulation strengt...
18957    paper addresses problem selecting choice possi...
18958    derive estimators density event times current ...
18959    propose new approach mirror symmetry conjectur...
18960    empirical researchers often trim observations ...
18961    paper realtime channel data acquisition platfo...
18962    substitution isovalent nonmagnetic defects zn ...
18963    higherorder logic programming interesting exte...
18964    describe approach based direct numerical solut...
18965    organisms earth descend common ancestor consen...
18966    introduce two models taxation latent natural t...
18967    provide novel approach model spacetime random ...
18968    study stability coupled impedance passive regu...
18969    paper consider estimation mean vector multivar...
18970    paper consider dense vehicular communication n...
18971    relate old new cohomology monoids arbitrary mo...
18972    stateoftheart methods convex nonconvex optimiz...
18973    report effects ce substitution structural elec...
18974    propose gaussian processes signals graphs gpg ...
18975    derive recommendations analyze longitudinal da...
18976    consider alternate formulations recently propo...
18977    flyby osiris camera onboard rosetta acquired h...
18978    show given compact discrete quantum group g cl...
18979    identification dynamical systems prediction er...
18980    learning graphical models data important probl...
18981    consider restless multiarmed bandit rmab finit...
18982    use gaugegravity duality write effective low e...
18983    develop analyze new protocols verify correctne...
18984    focus autonomously generating robot motion day...
18985    planar equilateral restricted fourbody problem...
18986    secular approximation hierarchical three body ...
18987    calgebras b generalize notion quasihomomorphis...
18988    study pattern formation reactiondiffusion rd s...
18989    modern biomedical research ubiquitous multiple...
18990    improving distant speech recognition crucial s...
18991    paper describes preliminary study producing di...
18992    combination highcontrast imaging highdispersio...
18993    lowrank structures play important role recent ...
18994    many scenarios require robot able explore envi...
18995    jpmorgan accumulated usd billion loss credit d...
18996    develop topology data analysisbased method det...
18997    one defining features manybody localization pr...
18998    study action dihedral group equivariant cohomo...
18999    living information communications system genom...
19000    present new class decentralized firstorder met...
19001    right assortment shipping boxes fulfillment wa...
19002    present flipper natural language interface des...
19003    article presents rigorous analysis efficient s...
19004    report methodology measuring krkr isotopic abu...
19005    address problem executing toolusing manipulati...
19006    motivated understanding majorana zero modes to...
19007    investigated band structure bulk crystal surfa...
19008    great need stock materials production storing ...
19009    autoencoder effective unsupervised learning mo...
19010    article interested nonlocal regional schrdinge...
19011    common practice decay learning rate show one u...
19012    qcd axions form large fraction total mass dark...
19013    bestk identification problem bestkarm given n ...
19014    recent paper baker bowler introduced matroids ...
19015    consider binary branching process structured s...
19016    computer science would without personal comput...
19017    recently ecommerce sites launch new interactio...
19018    calibration advanced ligo detectors quantifica...
19019    probability large deviations smallest schmidt ...
19020    largescale systems arrays solid state disks ss...
19021    provide justifications two questions special m...
19022    competitive alternative least squares regressi...
19023    understanding epidemics networks greatly benef...
19024    hybrid graphene photoconductorphototransistor ...
19025    paper proposes realtime embedded fall detectio...
19026    paper consider problem solving linear algebrai...
19027    present results investigation magnetic propert...
19028    stochastic block model sbm probabilistic model...
19029    well known extreme order statistic central ord...
19030    material recognition enables robots incorporat...
19031    paper presents method optimization multicompon...
19032    thermal effects already important currently op...
19033    show rigidity properties divergencefree vector...
19034    first goal note study almansi property mdimens...
19035    consider quantum complexity computing schatten...
19036    define mixed states associated submanifolds pr...
19037    precision measurement ams antiprotontoproton f...
19038    derive analogues classical rayleigh fjortoft a...
19039    propose superconducting spintriplet valve cons...
19040    learning propelled cutting edge performance ro...
19041    prove sharp upper lower bounds generalized cal...
19042    transition metal dichalcogenides tmds interest...
19043    give formula computing characteristic polynomi...
19044    process certify highly automated vehicles yet ...
19045    phase shifts influence two strong pulsed laser...
19046    present novel mechanism resolving mechanical r...
19047    present new kind structural markov property pr...
19048    introduce fisher consistency sense unbiasednes...
19049    notion disentangled autoencoders proposed exte...
19050    global hypothesis tests useful tool context eg...
19051    prove ordinary leastsquares ols estimator atta...
19052    motivated applications protein function predic...
19053    study properties quantim wires spinorbit coupl...
19054    paper presents new state estimation algorithm ...
19055    group affect emotion image people inferred ext...
19056    beamforming promising approach interference co...
19057    study sharp detection thresholds degree correc...
19058    driven visions internet things g communication...
19059    neural networks offer highaccuracy solutions r...
19060    multirate digital signal processing model redu...
19061    recent work shown stateoftheart classifiers qu...
19062    nanotechnology semiconductor device scaled dra...
19063    locationbased social network data offers promi...
19064    representing largescale motions topological ch...
19065    strong certification process required insure s...
19066    evolutionary game dynamics structured populati...
19067    paper study robust consensus problem set discr...
19068    analyze higher rank gauge theories capture phe...
19069    let k local field whose residue field characte...
19070    galactic orbits constructed long time interval...
19071    motion planning underwater vehicles must consi...
19072    hot dustobscured galaxies hot dogs rare dusty ...
19073    surface scattering key limiting factor thermal...
19074    systems engineering se set processes documenta...
19075    reduce exponent error term prime geodesic theo...
19076    paper introduces primal general privacypreserv...
19077    online problem computing top eigenvector funda...
19078    using maple implement sat solver based princip...
19079    consider submanifolds riemannian manifold meta...
19080    superconducting electronic devices reemerged c...
19081    notes correspond minicourse given poisson conf...
19082    investigating friedel oscillations ultracold g...
19083    variational methods among powerful tools solvi...
19084    metric learning aims learning distance consist...
19085    paper introduces fast algorithm simultaneous i...
19086    abridged investigate signatures left cosmic ne...
19087    data analytics association rule mining decisio...
19088    using firstprinciples monte carlo methods syst...
19089    note present fast algorithm finds r number nr ...
19090    investigate role transition metal atoms group ...
19091    introduce algorithm generate solve spinglass i...
19092    processes led formation planetary bodies solar...
19093    galaxy clusters thought grow accreting mass la...
19094    metamaterial made stacked holearray layers kno...
19095    develop novel policy synthesis algorithm rmpfl...
19096    reduced motor control one frequent features as...
19097    recent work md johnston et al produced suffici...
19098    persons weight status profound implications li...
19099    paper proposes new method builds simplex based...
19100    study correlators irregular vertex operators t...
19101    introduce new variant game cops robbers played...
19102    prove new pinching estimate inverse curvature ...
19103    present easytouse pythonbased framework allows...
19104    experiment conducted framework euhit project d...
19105    let fn denote nth fibonacci number relative in...
19106    based formation mechanisms dirac points threed...
19107    consider class fractional stochastic volatilit...
19108    finitedimensional algebra algebraically closed...
19109    paper studies nonparametric modal regression p...
19110    ability use map navigate complex environment q...
19111    average radio pulse profile pulsar b double pu...
19112    coreperiphery networks structures present set ...
19113    last decade seen surge interest adaptive learn...
19114    regarding analysis web communication social co...
19115    recent work redressed warped frames introduced...
19116    multiterminal secret key agreement problem pri...
19117    constructing smart wheelchair commercially ava...
19118    kernel methods produced stateoftheart results ...
19119    see person crowd occluded persons miss visual ...
19120    article presents john opensource software desi...
19121    real energy spectrum ptsymmetric hamiltonian h...
19122    virtually realworld networks dynamical entitie...
19123    b cells develop high affinity receptors course...
19124    merging mobile edge computing mec emerging par...
19125    realm delone sets locally compact second count...
19126    paper study biconservative surfaces parallel n...
19127    effort increase versatility finite element cod...
19128    investigate asymptotic behavior solutions hami...
19129    point set n elements ddimensional unit cube cl...
19130    performed angleresolved photoemission spectros...
19131    hierarchical formation model galaxy clusters g...
19132    using novel rewriting problem show several nat...
19133    construct two examples invariant manifolds des...
19134    determine barycentric coordinates triangle cen...
19135    active learning effective stopping method allo...
19136    paper random clique network model mimic large ...
19137    paucity videos current action classification d...
19138    introduce study game selfish cops active robbe...
19139    snook prize awarded diego tapias alessandro br...
19140    provide new computationallyefficient class est...
19141    biology several questions translate combinator...
19142    multipartite viruses replicate puzzling evolut...
19143    collective cell migration highly regulated pro...
19144    consider problem learning function classes com...
19145    steganography involves hiding secret message i...
19146    euler navierstokes variant systems dynamical i...
19147    define holographic dual donaldsonwitten topolo...
19148    systematically analyzed magnetodielectric reso...
19149    develop commuting vector field method general ...
19150    conducted search exotic spin velocitydependent...
19151    deep learning models lately shown great perfor...
19152    although block compressive sensing bcs makes t...
19153    consistent treatment coupling surface energy e...
19154    prove recent breaking zahl frac barrier wolffs...
19155    establish existence stein kernels probability ...
19156    synchronizations processing elements pes massi...
19157    future application automated vehicles public t...
19158    swift test originally proposed formability tes...
19159    strong gravitational lensing galaxy clusters f...
19160    e opdam introduced tool spectral transfer morp...
19161    propose batchexpansion training bet framework ...
19162    coordinate descent methods usually minimize co...
19163    set dimensional packing problems builds import...
19164    review replica symmetric solution classical qu...
19165    solve deep neural network dnns huge training d...
19166    hierarchy efficient way group organize often g...
19167    bioinformatics tools developed interpret gene ...
19168    given nonconvex function average n smooth func...
19169    present bounded model checking technique highe...
19170    paper study cubic fractional nonlinear schrodi...
19171    cryptovirological augmentations present immedi...
19172    various alexandrovfenchel type inequalities ap...
19173    paper consider role nonmodal instabilities dyn...
19174    face modeling paid much attention field visual...
19175    paper consider timeinhomogeneous branching pro...
19176    compact connected metric graphs boundary consi...
19177    mongekantorovich problem infinite wasserstein ...
19178    use nonperturbative renormalization group appr...
19179    given tournament positive integer k cpakcingt ...
19180    prove szegwidom asymptotics chebyshev polynomi...
19181    timings human activities marked circadian cloc...
19182    computational geometric problems involving rot...
19183    near infrared spectroscopy nirs imagingbased d...
19184    generalization performance classifiers deep le...
19185    measurements element abundances galaxies astro...
19186    aim getting closer performance animal musclesk...
19187    machine learning models benefit large diverse ...
19188    starting integral representation threedimensio...
19189    introduce concept requilateral mgons prove exi...
19190    according kearnes oman ordered set p emphjnsso...
19191    drawing recent results provide formalism neces...
19192    current article primary objects study compact ...
19193    thirdorder threedimensional symmetric traceles...
19194    strang splitting well established tool numeric...
19195    paper introduce new class nonsmooth convex fun...
19196    derive cramrrao lower bound variance floquet m...
19197    lack moderation online communities enables par...
19198    develop numerical tools diagrammatic montecarl...
19199    increasing interest accelerating neural networ...
19200    zeroshot learning zsl endows computer vision s...
19201    grid cells medial entorhinal cortex mec respon...
19202    online social network osn discussion groups ex...
19203    image stitching challenging consumerlevel phot...
19204    probabilistic modeling provides capability rep...
19205    semantic segmentation point clouds challenging...
19206    motivated posted price auctions buyers grouped...
19207    analyse certain haar systems associated groupo...
19208    numerical experimental data analysis often req...
19209    propose new active learning strategy designed ...
19210    nowadays security information event management...
19211    adaptive methods adam rmsprop widely used deep...
19212    films cukinse coevaporated varied kkcu composi...
19213    course last decade nice model dramatically cha...
19214    using natural action sinfty show countable her...
19215    cost attending college steadily rising years e...
19216    users virtual reality vr systems often experie...
19217    paper present comprehensive view prominent cau...
19218    examine sensitivity love quasirayleigh waves m...
19219    let varphimathbbfqtomathbbfq rational map fixe...
19220    form realanalytic eisenstein series twisted ma...
19221    study closed ndimensional manifolds metrics cr...
19222    using quantum representations mapping class gr...
19223    work propose infinite restricted boltzmann mac...
19224    present discovery four lowmass modot eclipsing...
19225    perovskite solar cells record power conversion...
19226    giant radio galaxies grgs one largest astrophy...
19227    propose general yet simple theorem describing ...
19228    study extreme scenario multilabel learning tra...
19229    explore largescale population indoor interacti...
19230    highly robust efficient estimators generalized...
19231    present lifestate rulesan approach abstracting...
19232    restricted boltzmann machines rbms class gener...
19233    becoming increasingly clear complex interactio...
19234    principal component regression linear regressi...
19235    propose efficient metaalgorithm bayesian estim...
19236    consider boundary rigidity problem asymptotica...
19237    consider spontaneous breaking translational sy...
19238    method brackets efficient method evaluation la...
19239    r package optimparallel provides parallel vers...
19240    key results obtained joint research projects a...
19241    show rashba spinorbit coupling interface super...
19242    fraud severely detrimental impacts business so...
19243    systems spontaneously reveal periodic evolutio...
19244    analysis demographic transition past century h...
19245    cyberphysical systems cps revolutionize variou...
19246    paper gives selfcontained grouptheoretic proof...
19247    measurable function mu unit disk mathbbd compl...
19248    give detailed account socalled universal const...
19249    asymmetric resonant cavity used form path much...
19250    micron characteristics agb variables lmc ic di...
19251    effective teams crucial organisations especial...
19252    given semigroup zero leftcancellative sense st...
19253    generalization classical determinant inequalit...
19254    propose new reinforcement learning algorithm p...
19255    introduce notion stpairs triangulated subcateg...
19256    introduce features massive data streams stream...
19257    study problem learning rank multiple sources t...
19258    order robot generalist perform wide range jobs...
19259    give explicit formula second variation logarit...
19260    idea black hole spin instrumental generation p...
19261    distance covariance two random vectors measure...
19262    investigate nonparametric regression methods b...
19263    number optimal decision problems uncertainty f...
19264    iterated posterior linearization filter iplf a...
19265    consider system randomly generated updates tra...
19266    analyses randomised trials incomplete outcomes...
19267    let r family n axisparallel rectangles packing...
19268    present new method derive oxygen carbon abunda...
19269    study extent infer users geographical location...
19270    abalone photosensor technology us patent capab...
19271    large scale coverage operations marine explora...
19272    study fairness collaborativefiltering recommen...
19273    graph inference methods recently attracted gre...
19274    paper presents provably correct method robot n...
19275    resolvent krylov subspace method builds approx...
19276    best known manifestation fermidirac statistics...
19277    paper proves approximate intermediate value th...
19278    ultraviolet uv light host star influences plan...
19279    construct doublewell potential schrdinger equa...
19280    social ties strongly related wellbeing charact...
19281    analyze spectral properties two mutually relat...
19282    given positive function uin wn define johnnire...
19283    recent literature deep learning offers new too...
19284    recent advances show twodimensional linear dis...
19285    distinct striation patterns observed spectrogr...
19286    paper presents motion planner systems subject ...
19287    learn binary classifier positive data without ...
19288    wellknown kernel regression estimators produce...
19289    harness complexity highdimensional bodies sens...
19290    prove tildethetak varepsilon samples necessary...
19291    present heuristic based algorithm induce texti...
19292    manipulation deformable objects ropes cloth im...
19293    derive upper lower bounds policy regret tround...
19294    dynamical characteristics electromagnetic fiel...
19295    paper give three functors mathfrakp cdotk math...
19296    define notion hierarchically cocompact classif...
19297    explosion highthroughput dna sequencing past d...
19298    quantum effects prevalent microscopic scale ge...
19299    paper presents deep learning framework capable...
19300    significant halogenation effects essential pro...
19301    propose informationtheoretic framework quantif...
19302    present theoretical assessment expected tempor...
19303    normalized maximum likelihood nml one importan...
19304    existing memory management mechanisms used com...
19305    regular icosahedron connected many exceptional...
19306    paper demonstrates feasibility implementing re...
19307    develop gametheoretic semantics gts fragment a...
19308    wide usage machine learning ml lead research a...
19309    analyse linear regression problem nonconvex re...
19310    topological data analysis method concurrence t...
19311    known elementary excitation manyparticle syste...
19312    previous paper arxiv described techniques succ...
19313    work introduce malware detection raw byte sequ...
19314    paper investigate model checking mc problem ha...
19315    prove moduli space complete riemannian metrics...
19316    consider problem optimal dynamic information a...
19317    celebrated theorem robertson seymour states fa...
19318    paper consider problem distributed nash equili...
19319    magnetic thermodynamic dielectric properties g...
19320    classification algorithm called linear central...
19321    paper address problem spatiotemporal person re...
19322    formation interaction multiple cavities induce...
19323    machinelearning potentials mlps atomistic simu...
19324    paper consider network processors aiming coope...
19325    lowfrequency vibrational lowtemperature therma...
19326    paper deals initial value problem multiterm fr...
19327    cev model subsumes previous option pricing mod...
19328    classical results chentsov campbell state cons...
19329    smartphones become pervasive devices peoples l...
19330    blockchain technology distributedly managing l...
19331    propose multinomial logistic regression model ...
19332    traditionally kernel learning methods requires...
19333    dense suspensions nonnewtonian fluids exhibit ...
19334    one open challenges designing robots operate s...
19335    study rewriting equational theories context sy...
19336    work addressed issue applying stochastic class...
19337    wilcoxon rankbased tests distributionfree alte...
19338    propose method simultaneously detecting shared...
19339    paper analyze behavior multivariate symmetric ...
19340    describe approximation continuous dynamical sy...
19341    wasserstein distance two probability measures ...
19342    several recent works proposed implemented cryp...
19343    proof concept high speed nearfield imaging sub...
19344    introduce notion stationary actions context ca...
19345    supervised machine learning author name disamb...
19346    recent successes word embedding document embed...
19347    present online social media platform afflicted...
19348    designing adaptive classifiers evolving data s...
19349    paper aims establish theoretical foundations g...
19350    variety complex systems exhibit different type...
19351    controlling chaos could big factor getting gre...
19352    investigate relaxation recently discovered fra...
19353    saliency guided hierarchical visual tracking s...
19354    present study shows performance cnn significan...
19355    article develops novel operational semantics p...
19356    provide compact unified treatment power spectr...
19357    magnetic anisotropy moaucofeaumgo nmaucofeau h...
19358    ionic solutions often regarded fully dissociat...
19359    network embedding methodologies learn distribu...
19360    paper continue study pairwise ksemistratifiabl...
19361    internship assignment complicated process univ...
19362    quantum mechanical calculations previously app...
19363    paper addresses question neural dialog systems...
19364    paper tackle problem visually predicting surfa...
19365    present new nonarchimedean model evolutionary ...
19366    present new approach design doptimal experimen...
19367    propose statistical model weighted temporal ne...
19368    report dynamical cluster approximation dca inv...
19369    paper formalises problem online algorithm sele...
19370    construct periodic solutions nonlinear wave eq...
19371    attributebased recognition models due impressi...
19372    paper scale mixture normal distributions model...
19373    study systematic numerical approximation class...
19374    fundamental challenge vast disciplines link pr...
19375    paper consider nonlinear equations involving f...
19376    recent works constructed axisymmetric solution...
19377    implement coupled cluster method high orders a...
19378    clouds strong impact climate planetary atmosph...
19379    magnetic resonance imaging mri proposed compli...
19380    crowdfunding platforms people turn prototype i...
19381    learning infer bayesian posterior fewshot data...
19382    discuss distributed matching scheme accelerato...
19383    complement characterization graph products cyc...
19384    multitask learning mtl enhance classifiers gen...
19385    note discuss cobordism maps periodic floer hom...
19386    give necessary sufficient conditions zhangliu ...
19387    proceedings icml workshop human interpretabili...
19388    study quantum phase transition paramagnetic fe...
19389    dimensional riemannian manifold equipped circu...
19390    modern software systems provide many configura...
19391    review andr luiz barbosas paper p np proof cla...
19392    consider minimax setup twoarmed bandit problem...
19393    traditional intelligent fault diagnosis rollin...
19394    one perspective main theme research revolves a...
19395    paper introduce easily verifiable sufficient c...
19396    study problems clustering locally asymptotical...
19397    osirisrex visible infrared spectrometer ovirs ...
19398    prove boundedness results integral operators f...
19399    consider large portfolio limit asset prices ev...
19400    introduce spectrum monotone coarse invariants ...
19401    coexistence newtype antiferromagnetic afm stat...
19402    grigni hungcitegh conjectured hminorfree graph...
19403    mexico city tracks groundlevel ozone levels as...
19404    elastic scattering cross sections slow electro...
19405    predicting finegrained interests users tempora...
19406    quantitative extraction highdimensional mineab...
19407    recently two new indicators equalized meanbase...
19408    show willwachers cyclic formality theorem exte...
19409    process control systems pcss operating core cr...
19410    quantum kinetic system modelling boseeinstein ...
19411    past years futures market successfully develop...
19412    deep neural networks playing important role st...
19413    public transports provide ideal means enable c...
19414    let mathcalpr denote almostprime r prime facto...
19415    use recent results bainbridgechengendrongrushe...
19416    interference arises individuals potential outc...
19417    present unifying framework solve several compu...
19418    machine learning models notoriously difficult ...
19419    inferring interactions processes promises deep...
19420    alvarezmacovski method alvarez r e macovski en...
19421    using results lorentzian kacmoody algebras ari...
19422    study elementary characteristics turbulence qu...
19423    extensive empirical literature documents gener...
19424    motivated expansion cayley graphs show exist i...
19425    introduce class normal complex spaces mild sin...
19426    rapid increase compound databases available me...
19427    study sample covariance matrix realvalued data...
19428    lung nodule classification class imbalanced pr...
19429    introduce examine collection unusual electroma...
19430    skorobogatov constructed bielliptic surface co...
19431    define locally nameless permutation types fuse...
19432    study dimensionfree lp inequalities rvariation...
19433    oneparticle density matrix onedimensional tonk...
19434    propose generalization mband case dualtree dec...
19435    introduce nonlinear cauchyriemann equations bc...
19436    deep neural networks shown succeed range natur...
19437    participants enrolled randomized controlled tr...
19438    effects subgridscale gravity waves gws diurnal...
19439    cricket game played two teams consists eleven ...
19440    study basic geometric properties group analogu...
19441    isogeometric analysis iga used simulate perman...
19442    paper study behavior bidders experimental laun...
19443    internet become central medium networked publi...
19444    representation learning heart makes deep learn...
19445    topological data analysis tda recent fast grow...
19446    resemblance methods used quantummany body phys...
19447    study effectively leverage expert feedback lea...
19448    investigate effects social interactions task a...
19449    powerful data transformation method named guid...
19450    cascading failures critical vulnerability comp...
19451    despite extremely weak intrinsic spinorbit cou...
19452    present blind multiframe imagedeconvolution me...
19453    consider framework aggregative games cost func...
19454    condensed matter systems simultaneously exhibi...
19455    paper presents application variational autoenc...
19456    paper propose new algorithm learning general l...
19457    answer yes indeed find interacting dark energy...
19458    dual fabryperot cavity based optical refractom...
19459    introduce selfannotated reddit corpus sarc lar...
19460    use model aerosol microphysics investigate imp...
19461    opinion formation population attracted extensi...
19462    given data variables xxm consider problem find...
19463    study evolution eccentricity inclination proto...
19464    discuss various forms definitions mathematics ...
19465    fix field k characteristic p kkp finite discus...
19466    consider minimax estimation problem discrete d...
19467    effect coulomb repulsion holes cooper instabil...
19468    multiplayer online battle arena moba games rec...
19469    tendondriven hand orthoses advantages exoskele...
19470    years security machine learning research promi...
19471    software reusability become much interesting i...
19472    consider classical merton problem terminal wea...
19473    lack efficiency urban diffusion debated issue ...
19474    derive new bayesian information criterion bic ...
19475    combinatorial interaction testing important so...
19476    consider habitability earthanalogs around star...
19477    unsupervised learning capturing dependencies v...
19478    convolutional neural networks cnns shown promi...
19479    paper address rigid body pose stabilization pr...
19480    paper propose definitions examples categorical...
19481    study relationship performance practice analyz...
19482    beyond traditional security methods unmanned a...
19483    paper extend two classical results density sub...
19484    paper use replica analysis determine investmen...
19485    discuss local properties weak solutions equati...
19486    real vector space nonoriented graphs known car...
19487    order address need affordable reduced gravity ...
19488    texture classification problem various applica...
19489    contingent convertible bonds cocos debt instru...
19490    egeneralization computes common generalization...
19491    study quartic double fivefolds perspective fan...
19492    thermal atmospheric tides torque telluric plan...
19493    obtaining enough labeled data robustly train c...
19494    provide integral formula maslov index pair ef ...
19495    modern precision cosmological measurements con...
19496    morava etheory e einftyring action morava stab...
19497    consider numerical schemes root finding noisy ...
19498    inspired recent evolution deep neural networks...
19499    hyperbolic pascal triangle cal hptq qge new ma...
19500    report empirical study main strategies conditi...
19501    much effort devoted device materials engineeri...
19502    motivation proteinprotein interactions ppis us...
19503    componentbased development software engineerin...
19504    sales forecast essential task ecommerce crucia...
19505    study provide mathematical practicedriven just...
19506    let f padic fied e quadratic extension f fdivi...
19507    simple doubledecker molecule magnetic anisotro...
19508    consider nonlinear transport equations nonloca...
19509    sampling large networks represents fundamental...
19510    recent works shown social media platforms able...
19511    make famous rap singer like eminem sing whatev...
19512    present robust deep learning based degreesoffr...
19513    study generalization crossdiffusion problem de...
19514    distributed storage systems locally repairable...
19515    syntaxguided synthesis aims find program satis...
19516    paper concerned existence periodic solutions s...
19517    analyse spectral properties class compact pert...
19518    tradeoffs current sharing among distributed re...
19519    prove new offdiagonal asymptotic bergman kerne...
19520    networks powerful instruments study complex ph...
19521    present davis challenge video object segmentat...
19522    context success stack overflow communitybased ...
19523    massive multipleinput multipleoutput mimo syst...
19524    surface parameterizations widely applied compu...
19525    paper consider distributed stochastic optimiza...
19526    wide variety applications including personaliz...
19527    let delta simplicial complex matroid paper exp...
19528    propose maxpooling based loss function trainin...
19529    packet scheduling adversarial jamming packets ...
19530    despite progress high performance computing co...
19531    paper propose deep learning based approach fac...
19532    surface icy dust grains dense regions interste...
19533    revisit fundamental problem liquidliquid dewet...
19534    demonstrate control resonance characteristics ...
19535    surrogate model approximates computationally e...
19536    dataefficient algorithms reinforcement learnin...
19537    work explores tradeoff number samples required...
19538    stability instability synchronization importan...
19539    vortices turbulence unsteady nonlaminar flows ...
19540    direct numerical simulation liquidgassolid flo...
19541    paper focuses temporal localization actions un...
19542    present numerical modelling granular flows mui...
19543    like attempts evaluate monitor quality academi...
19544    widespread usage complex interconnected social...
19545    recent developments established vulnerability ...
19546    study loss functions measure accuracy predicti...
19547    performing diagnostics systems increasingly co...
19548    prove generalization davenportheilbronn theore...
19549    neural networks known vulnerable adversarial e...
19550    present novel method learning weights multinom...
19551    found analytically first order quantum phase t...
19552    combining bayesian nonparametrics forward mode...
19553    achieving superhuman playing level alphago cor...
19554    consider estimating de facto effectiveness est...
19555    recent studies social media spam automation pr...
19556    explore power spatial context selfsupervisory ...
19557    present statistical analysis variability broad...
19558    line spectral estimation problem consists reco...
19559    monte carlo methods approximate integrals samp...
19560    let f mathbbrd tomathbbr lipschitz function b ...
19561    despite success deep learning representing ima...
19562    study frequencydependent damping model hyperdi...
19563    geometric variations objects modify object cla...
19564    discuss context energy flow highdimensional sy...
19565    floer theory originally devised estimate numbe...
19566    bayesian inference stochastic volatility model...
19567    study simple root flows liouville currents hit...
19568    paper review evolutionary history deep learnin...
19569    imitation widely observed populations decision...
19570    complex finsler vector bundles studied mainly ...
19571    development growth complex tumultuous processe...
19572    generating structured input files test program...
19573    using setup deformation categories talpo visto...
19574    developed simple physical selfconsistent cloud...
19575    fermi large area telescope data reveal excess ...
19576    european xray free electron laser xfeleu provi...
19577    paper first time study label propagation heter...
19578    appearing stage quite recently low power wide ...
19579    impacts climate change felt critical systems i...
19580    among asteroids exist ambiguities rotation per...
19581    learning preferences implicit choices humans m...
19582    use laplacian eigenfunctions ubiquitous wide r...
19583    significant parts cultural heritage produced w...
19584    study system consisting luttinger liquid coupl...
19585    jittered sampling refinement classical monte c...
19586    analysis quantification brain structural chang...
19587    work proposes visual odometry method combines ...
19588    autoignition delay experiments isomers butanol...
19589    paper prove every integer k geq kabelian compl...
19590    investigate inverse problem timefrequency loca...
19591    paper present system associates faces voices v...
19592    paper kelvin wave knot dynamics studied three ...
19593    develop noncommutative polynomial version inva...
19594    introduce integrated meshing finite element me...
19595    note show class finite epistemic programs turi...
19596    motivated problem domain formation chromosomes...
19597    paper investigate reconstruction timecorrelate...
19598    robotics enables variety unconventional actuat...
19599    present numerical study aims shedding light me...
19600    positive parameter beta betabounded distance p...
19601    pipelines used huge range industrial processes...
19602    quadratic unconstrained binary optimization qu...
19603    order address economical dispatch problem isla...
19604    develop importance sampling type estimator bay...
19605    hundred spacecraft launched date electric prop...
19606    exists various proposals detect cosmic strings...
19607    recent works planetary migration show orbital ...
19608    general ai challenge initiative encourage wide...
19609    key enabler optimizing business processes accu...
19610    lorenzens algebraische und logistische untersu...
19611    online interactive recommender systems strive ...
19612    lowrank matrix completion mc achieved great su...
19613    obtain results mixing large class necessarily ...
19614    many cognitive sensory motor processes correla...
19615    paper sharpen earlier work first author luca m...
19616    bilevel optimization defined mathematical prog...
19617    paper proposes speaker recognition sre task tr...
19618    governing equations twodimensional inviscid fr...
19619    prove global limiting absorption principle ent...
19620    paper explore role duality principles within p...
19621    looming question must solved robotic plant phe...
19622    autoignition experiments stoichiometric mixtur...
19623    crowdsourced gps probe data become major sourc...
19624    generating detection coherent highfrequency he...
19625    classical manybody systems recent study reveal...
19626    consider generalized dirac operator compact st...
19627    discovery influential entities kinds networks ...
19628    consider learning submodular functions data fu...
19629    irreducible weight module affine kacmoody alge...
19630    study behavior real pdimensional wishart rando...
19631    paper propose online learning algorithm based ...
19632    device new method calculate large number melli...
19633    escape mechanism orbits star cluster rotating ...
19634    present atacama large millimeter submillimeter...
19635    modelled evolution cometary hii regions produc...
19636    paper uses classical approach feature selectio...
19637    match analytic results numerical calculations ...
19638    tackle problem template estimation data random...
19639    bayesian inverse modeling important better und...
19640    oneclass classification occ prime concern rese...
19641    introduction papers deals partial differential...
19642    machine learning models shown vulnerable adver...
19643    cellular massive machinetype communications mt...
19644    report first detection sodium absorption atmos...
19645    choreographies widely used specification concu...
19646    reproducibility crisis highly visible source s...
19647    scisports dutch startup company specializing f...
19648    consider problem segmenting large population c...
19649    report shown cr doped bulk cr deposited surfac...
19650    present technique automatically transforming k...
19651    hierarchical neural architectures often used c...
19652    research analysis microblogging platforms expe...
19653    logicbased paradigms nowadays widely used many...
19654    mixture models around years intuitively simple...
19655    work study pointwise ergodic iterationcomplexi...
19656    latent features learned deep learning approach...
19657    near future cosmology enter wide deep galaxy s...
19658    crowdsourcing consists externalisation tasks c...
19659    study positive solutions heat equation graphs ...
19660    paper considers alternative method fitting car...
19661    virtual network services span multiple data ce...
19662    using semiclassical wkb approximation hamilton...
19663    natural language symbols intimately correlated...
19664    feature extraction dimension reduction network...
19665    let q prime power estimate number tuples degre...
19666    present paper using replica analysis examine p...
19667    researchers often summarize work form scientif...
19668    liquid metal lm current core interest wide var...
19669    local model differential privacy emerging refe...
19670    lowcost robust simple mechanism measure hemogl...
19671    paper study following classical question extre...
19672    newly emerging field wave front shaping comple...
19673    largescale agile projects product owners under...
19674    analyse simple extension sm additional scalar ...
19675    consider gaussian vector mathbfzmathbfxmathbfy...
19676    present method synthesizing frontal neutralexp...
19677    scaling clustering algorithms massive data set...
19678    paper consider existence multiple nodal soluti...
19679    study estimators generalized lasso penalties w...
19680    according data united nations people died day ...
19681    currentvoltage iv conversion characterizes phy...
19682    characterize neutron output deuteriumdeuterium...
19683    describe turbulence distributes tracers away l...
19684    paper give correspondence berezintoeplitz comp...
19685    paper reviews checkered history predictive dis...
19686    algorithms working linear algebraic groups oft...
19687    article studies monotonicity logconvexity modi...
19688    epilepsy neurological disorder arising anomali...
19689    paper study classical construction lattices nu...
19690    parity timereversal violating electric dipole ...
19691    increasing amount information absence effectiv...
19692    neutron diffraction muon spin relaxation musr ...
19693    unified viewpoint van vleck hermankluk propaga...
19694    paper presents alternate form dynamic modellin...
19695    present las vegas algorithm dynamically mainta...
19696    rising popularity intelligent mobile devices d...
19697    fine particulate matter pm one criteria air po...
19698    profile describes set properties eg set skills...
19699    present sample sim emission line galaxies z si...
19700    tensor factorization hard andor soft constrain...
19701    paper propose replay attack spoofing detection...
19702    linear inverse problem gaussian random noise s...
19703    light carries momentum induces atoms recoil ph...
19704    contraction csemigroup separable hilbert space...
19705    traceroute main tools explore internet path pr...
19706    studied thermodynamic behaviors noninteracting...
19707    many deep models recently proposed anomaly det...
19708    consider terminal users arrive continuously fi...
19709    paper extend theory two weight ap bump conditi...
19710    show link open book realized strongly quasipos...
19711    deltaconvolution real probability measures int...
19712    classifying point clouds large amount time dev...
19713    boundedness properties function spaces conside...
19714    paper propose novel approach combine emphcompa...
19715    topic lifecycle analysis twitter branch study ...
19716    previous research unstable footwear suggested ...
19717    paper introduce modified version gaussian stan...
19718    structured peer learning spl form peerbased su...
19719    monograph represents analysis possibility time...
19720    recently researchers discovered stateoftheart ...
19721    last decades internet mobile technology consol...
19722    unexpected clustering orbital elements minor b...
19723    introduce two tactics attack agents trained de...
19724    one big challenges machine learning applicatio...
19725    paper propose tensor train neighborhood preser...
19726    three dimensional topology optimization proble...
19727    let irreducible riemannian symmetric space ind...
19728    microscopy imaging plays vital role understand...
19729    paper study geometric properties basins attrac...
19730    generation anisotropic shapes occurs morphogen...
19731    extend notion localic completion generalised m...
19732    according magnetohydrodynamics mhd encounter t...
19733    paper propose squeezed convolutional variation...
19734    stateoftheart graph kernels take local graph p...
19735    quantitative nuclear magnetic resonance imagin...
19736    present updated halodependent haloindependent ...
19737    current upcoming radio interferometric experim...
19738    magnetic skyrmions particlelike objects topolo...
19739    paper introduce metallic maps metallic riemann...
19740    hashing learning binary embeddings data freque...
19741    new exact solution einsteins field equations b...
19742    implicit discourse relation classification gre...
19743    idea posing command following tracking control...
19744    wireless communication plays vital role promis...
19745    paper studies synchronization finite number ku...
19746    derive representation theorems exchangeable di...
19747    replicator equation one fundamental tools stud...
19748    go gaming struggle territory control rival bla...
19749    laser writing ultrashort pulses provides poten...
19750    ensemble weather predictions require statistic...
19751    recent work pomerance shparlinski obtained res...
19752    note prove conjecture li qu li fu permutation ...
19753    recently speaker recognition performance degra...
19754    employers actively look talents specific hard ...
19755    study class anomalies associated timereversal ...
19756    present new model redshiftspace power spectrum...
19757    proven infinite finitely generated group canno...
19758    spin peltier effect spe heatcurrent generation...
19759    discuss numbertheoretic properties distributio...
19760    paper describe phenomenon named superconvergen...
19761    paper perform analysis leads space initial con...
19762    work reports electronic microstructural study ...
19763    fabricated nifetextrmotextrmx thin films mgalo...
19764    paper proposes new samplingbased nonlinear mod...
19765    study primary entanglement effect decoherence ...
19766    breast density classification essential part b...
19767    motivated recent progress analog computing sci...
19768    crucial challenge imagebased modeling biomedic...
19769    study optimal control problem arising generali...
19770    paper describes experience training team devel...
19771    purpose article analyze connection eynardorant...
19772    covalently linked acene dimers interest candid...
19773    discuss investigation student difficulties deg...
19774    paper first design time optimal control proble...
19775    knowledge graph structure web important unders...
19776    show convex differentiable loss function deep ...
19777    research automated vehicles experienced explos...
19778    paper deals nonhomogeneous scalar parabolic eq...
19779    phase changing materials pcm widely used optic...
19780    sortition ie random appointment public duty em...
19781    provide particle picture representation nonsym...
19782    generating adversarial examples critical step ...
19783    consider problem designing efficient regulariz...
19784    present model takes account coupling evolution...
19785    quality neural machine translation system depe...
19786    closecontact melting refers process heat sourc...
19787    complex networks graphs ubiquitous sciences en...
19788    accurate demand forecasts help online retail o...
19789    covariate shift learning scenario training tes...
19790    onedimensional systems obtained lowenergy limi...
19791    convolution inner product founding basis convo...
19792    paper presents robotic pickandplace system cap...
19793    develop various aspects classical enumerative ...
19794    spread online reviews ratings opinions growing...
19795    dual control problem presented optimal stochas...
19796    propose graph priority sampling gps new paradi...
19797    paper studies optimal investment problem rando...
19798    emergence nature amplitude mediated chimera st...
19799    photons distant astronomical sources used clas...
19800    major challenge computational chemistry genera...
19801    measurements cosmic microwave background spect...
19802    decade scientists nasas jet propulsion laborat...
19803    proteins moderately stable long debated whethe...
19804    provide proposal motivated separation variable...
19805    monotone drawing graph g straightline drawing ...
19806    graph data models widely used many areas examp...
19807    remark sparse carleson coefficients equivalent...
19808    discovering business rules business process mo...
19809    combine features extracted pretrained convolut...
19810    context planet formation pebbles proposed solv...
19811    show nsop theories exactly theories kimindepen...
19812    heterogeneity studied one common explanations ...
19813    magnetorotational instability mri thought powe...
19814    individual subjected exposure developed outcom...
19815    well known milgroms mond modified newtonian dy...
19816    present framework testing independence two ran...
19817    survey article based authors lectures ams summ...
19818    surface metal glass plastic objects often char...
19819    oscillatory behavior solutions differential eq...
19820    recent years variational autoencoders vaes sho...
19821    boltzmann exploration classic strategy sequent...
19822    sophisticated reinforcement learning rl system...
19823    present quantum algorithm compute entanglement...
19824    jiangmen underground neutrino observatory juno...
19825    recent work explored problem autonomous naviga...
19826    state space models system state finite setcall...
19827    study number graph exploration problems follow...
19828    fourierwalsh expansion boolean function f colo...
19829    oxygendeficient tio rutile structure well tio ...
19830    auxetic materials novel class mechanical metam...
19831    exploiting powerful tool strong gravitational ...
19832    autonomous agents must often detect affordance...
19833    revisit question whether steady states arising...
19834    trapping molecular ions sympathetically cooled...
19835    precise nature complex structural relaxation w...
19836    regularized optimization problem large unstruc...
19837    analyze effect intersiteinteraction terms stab...
19838    consider tackling singleagent rl problem distr...
19839    dissipation smallscale perturbations early uni...
19840    multisubject fmri data analysis interesting ch...
19841    knowledge transfer tasks improve performance l...
19842    grand unification theory gauge theories strong...
19843    richclub ordering refers tendency nodes high d...
19844    work propose integrate prediction algorithms s...
19845    inverse electromagnetic design emerged way eff...
19846    paper describes general scalable endtoend fram...
19847    show maximal sfree convex sets polyhedra set i...
19848    nearby ultraluminous infrared galaxy ulirg arp...
19849    motivated recent experimental observations alp...
19850    behavior interior test particle secular body p...
19851    katrin experiment aims determine neutrino mass...
19852    stabilization lasers absolute frequency refere...
19853    paper new type bin packing problem bpp propose...
19854    goal article clarify meaning computational thi...
19855    problem estimation relevance set histograms ge...
19856    paper present strategy synthesis acoustic sour...
19857    paper presents method reconstruction primary s...
19858    consider problem performing spoken language un...
19859    present method derive density scaling relation...
19860    advertisements unavoidable modern society time...
19861    study deep linear network endowed structure ta...
19862    apply theory partial flag spaces developed pre...
19863    robustness dynamical properties neuronal netwo...
19864    maximizing area receiver operating characteris...
19865    motivated problems data clustering establish g...
19866    describe rigid algebras irreducible components...
19867    paper compute discrete fundamental groups warp...
19868    investigate theoretical foundations simulated ...
19869    live world performing activities interacting o...
19870    advances astronomy intimately linked advances ...
19871    eliminating duplicate data primary storage clo...
19872    freeplay significant source nonlinearity aeroe...
19873    understanding user preference essential optimi...
19874    lowdimensional embeddings nodes large graphs p...
19875    assume fmathbbcn mathbbc analytic function ger...
19876    study convergence properties gibbs sampler con...
19877    point unique mechanism produce relic abundance...
19878    paper propose method using three dimensional c...
19879    setting global variational geometry grassmann ...
19880    paper revisit classic board games like pachisi...
19881    recent years citizen science grown popularity ...
19882    srv architecture segment routing based ipv dat...
19883    apply largescale computational technique known...
19884    pretrained word embeddings improve performance...
19885    start overview class submodular functions call...
19886    consider inverse problems determining potentia...
19887    tragedy commons toc occurs individuals acting ...
19888    linear growth operators local quantum systems ...
19889    multiplicative exponential linear logic mell p...
19890    multi robot systems potential utilized variety...
19891    riemannian covering mto complete riemannian ma...
19892    extend theory ground states classical heisenbe...
19893    present framework visionbased model predictive...
19894    give ktheoretic criterion quasiprojective vari...
19895    modern surveys provided astronomical community...
19896    propose novel approach towards adversarial att...
19897    show answer spatial multipleset intersection q...
19898    present framework calculate cascade size evolu...
19899    mongekantorovich distances otherwise known was...
19900    construct analog intrinsic normal cone behrend...
19901    old globular clusters gcs galaxy observed inte...
19902    domain adaptation actively researched recent y...
19903    report discovery minor planet sy exceptionally...
19904    using lindblad dynamics study quantum spin sys...
19905    study spatially homogeneous time dependent sol...
19906    consider minimization composite objective func...
19907    generative adversarial networks gans powerful ...
19908    propose statistical model natural language beg...
19909    low energy optical conductivity conventional s...
19910    work demonstrates nanoscale magnetic imaging u...
19911    superconducting detectors wellestablished tool...
19912    prove hilbert scheme points smooth threefold i...
19913    propose novel type tunable yagiuda nanoantenna...
19914    modified structures sapo prepared using polyet...
19915    support vector machines svms various kernels p...
19916    voltage deviations occur frequently power syst...
19917    convolutional neural networks cnns popular dee...
19918    traditional neural network approaches traffic ...
19919    tolman paradox well known base demonstrating c...
19920    analysing text algorithms computing superstrin...
19921    spinrelaxation conventionally discussed using ...
19922    information overloaded web personalized recomm...
19923    scholarly communication scope transcend limita...
19924    machine learning algorithms applied sensitive ...
19925    recently fabrication cdse nanoplatelets became...
19926    advances gnc particularly miniaturized control...
19927    unsupervised learning growing interest unlocks...
19928    define monodromy maps tropical dolbeault cohom...
19929    paper study problems discrete fourier transfor...
19930    word embeddings generated neural network metho...
19931    say abelian group gamma order n memphzerosumpa...
19932    cosmologies including strongly coupled sc dark...
19933    proof schemata variant lkproofs able simulate ...
19934    paper examines task detecting intensity emotio...
19935    using simulations wholeatmosphere chemistrycli...
19936    fundamental question biology organisms integra...
19937    conventional seismic techniques detecting subs...
19938    present novel approach achieve adaptable band ...
19939    medicines materials small organic molecules in...
19940    let hatl projective completion ample line bund...
19941    ensure robot able accomplish extensive range t...
19942    last decade tremendous strides achieved unders...
19943    develop polynomialtime heuristic methods solve...
19944    well known f test severly affected heteroskeda...
19945    feature representations pretrained deep neural...
19946    let p prime k field characteristic p investiga...
19947    recently general expression eckartframe hamilt...
19948    paper studies optimal trading problem incorpor...
19949    explore relationship features planck temperatu...
19950    estimating individualized treatment rules cent...
19951    finetuning physics cosmology often used eviden...
19952    experiments using nuclei probe new physics bey...
19953    machine learning ml models applied variety tas...
19954    introduce fraud deanonymization problem goes b...
19955    types instability interacting binary stars rev...
19956    interaction blockade phenomenon isolates motio...
19957    spider balloonborne instrument designed map po...
19958    wind shear measured doppler tracking huygens p...
19959    relativistic protocols proposed overcome impos...
19960    prove eigenstates manybody localized symmetry ...
19961    study formation massive black holes first star...
19962    study optimizationbased approach con struct me...
19963    show thirdparty web trackers deanonymize users...
19964    virtualization technologies evolved along deve...
19965    give integral formula total qprimecurvature th...
19966    internet things iot continuously growing conne...
19967    modelling information cascades online social n...
19968    living cells exhibit multimode transport switc...
19969    define various height functions motives number...
19970    paper studies dimension effect linear discrimi...
19971    fundamental questions nature matter energy fou...
19972    main aim paper prove rtriviality simple simply...
19973    present nearinfrared interferometry carbonrich...
19974    long shortterm memory lstm achieved stateofthe...
19975    welcome contribution falessi et al hereafter r...
19976    recent advances computer visionin form deep ne...
19977    recent research implies training inference dee...
19978    probability simplex set probability distributi...
19979    present novel condition term net work nullspac...
19980    every linear system partial differential equat...
19981    convolutional neural networks cnns successfull...
19982    dominant approaches action detection provide s...
19983    work introduces novel estimation method called...
19984    consider cauchy problem rn types damped wave e...
19985    unconventional dwave superconductors pairbreak...
19986    neuromorphic computing come refer variety brai...
19987    study junctions wilson lines refined sun chern...
19988    stochastic gradient algorithms studied since d...
19989    location terrestrial magnetopause mp subsolar ...
19990    using membranedriven diamond anvil cell ac mag...
19991    everyday robotics challenged deal autonomous p...
19992    malware constantly adapting order avoid detect...
19993    construct examples finite covers punctured sur...
19994    training convolutional networks cnns fit singl...
19995    identifying transport pathways fractured rock ...
19996    analyse archival cgrobatse xray flux spin freq...
19997    investigate basic applications fractional calc...
19998    present resolution images co associated contin...
19999    investigate equilibrium properties including s...
20000    influence dzyaloshinskiimoriya interaction spi...
20001    analyze osaka factory worker households early ...
20002    march noaa active region ar produced x flare s...
20003    prove every connected affine scheme positive c...
20004    deep neural network models proven successful i...
20005    arabic word segmentation essential variety nlp...
20006    paper studies electricity market consisting in...
20007    investigate existence sterile neutrino propose...
20008    protein crystal production major bottleneck st...
20009    present kepler object interest koi catalog tra...
20010    dark sector may contain dark photon kineticall...
20011    network epidemics model based classical polya ...
20012    describe general framework compressive statist...
20013    bandit structured prediction describes stochas...
20014    ability learn small number examples difficult ...
20015    faster rcnn one representative successful meth...
20016    datatarget pairing important step towards mult...
20017    present calipso interactive method editing ima...
20018    resolutions maximal sets compatible resolution...
20019    spectrum first order sentence set alpha gn nal...
20020    within past decades witnessed digital revoluti...
20021    introduce refinement classical liouville funct...
20022    presence certain class functions show exists s...
20023    conditional specification distributions develo...
20024    let mathcalb denote set bicolorings n bicolori...
20025    part considered problem convergence saddle poi...
20026    javascript systems becoming increasingly compl...
20027    phononic bandgaps parylenec microfibrous thin ...
20028    though deep learning pushing machine learning ...
20029    present semiparametric spectral modeling compl...
20030    present term rewrite system formally models me...
20031    complex networks static evolve along time give...
20032    potential critical risks cascading failures po...
20033    present comprehensive account proton radiation...
20034    consider onedimensional model spin glass indep...
20035    paper deform thermodynamics btz black hole rai...
20036    paper study rotationally symmetric solutions c...
20037    rank hierarchically hyperbolic space maximal n...
20038    recurrent neural networks showing much promise...
20039    statistical analysis sa complex process deduce...
20040    firstly suggest new cache policy applying duty...
20041    shapeconstrained density estimation important ...
20042    aim paper analyze array synthesis g massive mi...
20043    study gravitational octree code originally opt...
20044    instanton bundles mathbbp core research algebr...
20045    learning weights spiking neural network hidden...
20046    work propose train deep neural network distrib...
20047    analytical expression received effective inter...
20048    online social networks osn increasingly used p...
20049    characterize operatortheoretic properties boun...
20050    present results first observations hubble spac...
20051    derive gaugeon formalism kalbramond field theo...
20052    work authors give new method phase determinati...
20053    complex distribution networks pervasive biolog...
20054    deep learning methods employ multiple processi...
20055    increasing impact robotics industry society un...
20056    remote attestation ra allows trusted entity ve...
20057    social robots also known service assistant rob...
20058    paper solve inverse problem class mean field m...
20059    building complete inertial navigation system u...
20060    demonstrate photonic phononic crystals consist...
20061    experimental efforts detect redshifted cm sign...
20062    unify feeding feedback supermassive black hole...
20063    inherent noise observed eg scanned binary docu...
20064    online advertisers analytics services trackers...
20065    consider toda system fracdelta qneqnqneqnqntex...
20066    prove meromorphic mapping sends peace real ana...
20067    cameras widely exploited sensor robotics compu...
20068    time evolution energy transport triggered stro...
20069    chapter forthcoming handbook graphical models ...
20070    paper presents survey new applications algebra...
20071    hd excellent target investigate signs planetdi...
20072    mechanism ion bombardment induced magnetic pat...
20073    implement two algorithms mathematica classifyi...
20074    show model compression improve population risk...
20075    paper presents procedure retrieve subsets rele...
20076    space photometric missions steadily accumulati...
20077    present explicitly correlated formalism second...
20078    study algebrogeometric consequences quantised ...
20079    companies academic researchers may collect pro...
20080    fundamental problem neuroscience characterize ...
20081    deep reinforcement learning enables algorithms...
20082    article deals first detection gravitational wa...
20083    remarkably strong chemical adsorption behavior...
20084    work propose approaches effectively transfer k...
20085    derive priori estimates incompressible freebou...
20086    let liouville manifold smooth fiber lefschetz ...
20087    construct iterated function system consisting ...
20088    recent years seen tremendous growth many onlin...
20089    model development turbulent shear flows create...
20090    paper gives thorough overview solar car optimi...
20091    present study investigates way design dykes fi...
20092    fraction earlytype dwarf galaxies virgo cluste...
20093    paper reports first results direct dark matter...
20094    address problem epipolar geometry using motion...
20095    paper describes new modelling language effecti...
20096    new wave successful generative models machine ...
20097    consider ransac algorithm context subspace rec...
20098    though growing body literature fairness superv...
20099    research impact gestures using lecturer one ch...
20100    define infinite measurepreserving transformati...
20101    exciting branch machine learning research focu...
20102    consider system nonlinear partial differential...
20103    report development indium oxide ino transistor...
20104    paper changepoint problems long memory stochas...
20105    gravity assist manoeuvres one succesful techni...
20106    last years model checking interval temporal lo...
20107    next investigations program transition atom co...
20108    important emerging component planetary explora...
20109    consider motion incompressible viscous fluids ...
20110    study fundamental group complement singular lo...
20111    spectral clustering sc widely used data cluste...
20112    hyperbolic space shown capable modeling comple...
20113    present parameterized approach produce persona...
20114    recent studies revealed vulnerability deep neu...
20115    detection intermediate mass black holes imbhs ...
20116    examine possibility dark matter dm contributio...
20117    modeling inverse dynamics crucial accurate fee...
20118    new ternary mgnimn intermetallics successfully...
20119    recent advances field network embedding shown ...
20120    paper describes applications incremental imple...
20121    question paper whether rd efforts affect educa...
20122    global dynamics event cascades often governed ...
20123    revisit classical scenario communication theor...
20124    motivated contemporary rich applications anoma...
20125    main limitation constrains fast comprehensive ...
20126    consider cauchy problem repulsive vlasovpoisso...
20127    growing pressure cloud application scalability...
20128    level polytopes naturally appear several areas...
20129    learning learn emerged important direction ach...
20130    paper aims oneshot learning deep neural nets h...
20131    inverse problem determining unknown potential ...
20132    many engineering processes exist industry text...
20133    introduce framework using generative adversari...
20134    propose demonstrate novel laser cooling mechan...
20135    report close stellar companions detected highr...
20136    exploit recently derived inversion scheme arbi...
20137    effectiveness statistical machine translation ...
20138    short note prove f weak upper semicontinuous a...
20139    monte carlo tree search mcts extended many imp...
20140    propose search galactic axions mass microev us...
20141    datasets significant proportions noisy incorre...
20142    adversarial examples shown exist variety deep ...
20143    investigate two arithmetic functions naturally...
20144    lurking variables represent hidden information...
20145    fourier ptychographic microscopy fpm recently ...
20146    primary goal paper recast semantics modal logi...
20147    robotic assistants home environment expected p...
20148    let n k natural numbers k n study restriction ...
20149    present neural architecture takes input shape ...
20150    classify band degeneracies crystals screw symm...
20151    deep neural networks dnns popular days subject...
20152    propose new approach based local hilbert trans...
20153    paper second chapter three authors undergradua...
20154    wellknown axlerzheng theorem characterizes com...
20155    paper presents simple approach increase normal...
20156    introduce new method statistical analysis char...
20157    derive closed formula determinant hankel matri...
20158    technical report consider approach combines pp...
20159    maximal density measurable subset rn avoiding ...
20160    mass segmentation provides effective morpholog...
20161    transitive model zfc called ground universe v ...
20162    wildland fire fighting hazardous job key task ...
20163    high signaltonoise highresolution light scatte...
20164    sachdevyekitaev syk model concrete solvable mo...
20165    ward identities associated spontaneously broke...
20166    report growth epitaxial srruo films using hybr...
20167    antiprotontoproton ratio cosmicray spectrum se...
20168    precise localization repeating fast radio burs...
20169    thicket density new measure complexity set sys...
20170    gammangonal pair pair sf closed riemann surfac...
20171    online advertising progressively moving toward...
20172    quantum nature lightmatter interactions circul...
20173    critical properties singlecrystalline semicond...
20174    implement scalefree version pivot algorithm us...
20175    mconvex functions generalization valuated matr...
20176    bayesian matrix factorization bmf powerful too...
20177    successful deployment safe trustworthy connect...
20178    xenont experiment recent stage xenon dark matt...
20179    argue standard graph laplacian preferable spec...
20180    public space utilization crucial urban develop...
20181    two families symplectic methods specially desi...
20182    recent breakthroughs deep reinforcement learni...
20183    dirac nodal line semimetal bulk conduction val...
20184    let n positive multiple establish asymptotic f...
20185    process designing neural architectures require...
20186    traditionally complex intelligence architectur...
20187    central challenge modern condensed matter phys...
20188    consider path planning problem link robot amid...
20189    heterogeneous information networks hins ubiqui...
20190    dynamical phase transitions crucial features f...
20191    due capability reduce turbulent transport magn...
20192    predict geometric quantum phase shift moving e...
20193    wellgenerated complex reflection groups chapuy...
20194    magnetic properties bafeas surface studied usi...
20195    obtain explicit error expansion solution backw...
20196    combine spitzer groundbased kmtnet microlensin...
20197    paper presents class new algorithms distribute...
20198    atacama large millimetersubmilimeter array alm...
20199    endowing robots capability assessing risk maki...
20200    good parameter settings crucial achieve high p...
20201    study critical behavior general contagion mode...
20202    appearancebased robot selflocalization problem...
20203    currently witness emergence interesting new ne...
20204    propose method infer domainspecific models cla...
20205    genomewide chromosome conformation capture tec...
20206    proposed substantiated extraterrestrial object...
20207    show reverse language extended blocks local va...
20208    hubble space telescope photometry acswfc wfpc ...
20209    phylogenetic networks generalization evolution...
20210    gdeformability maps projective space character...
20211    atmospheric modeling lowgravity vlg young brow...
20212    ongoing innovations recurrent neural network a...
20213    separating audio mixtures individual instrumen...
20214    let positive integer x real number let ad x dt...
20215    triggered star formation around hii regions co...
20216    methodology softwaredefined robotics hierarchi...
20217    consider curved sitnikov problem infinitesimal...
20218    define hardy spaces hpomegapm halfstrip domain...
20219    recent years numerous vision learning tasks re...
20220    control task tracking reference pointing direc...
20221    computer programs always work expected fact om...
20222    vector composition vector mathbfell matrix mat...
20223    paper shows simple baseline based bagofwords b...
20224    deep learning profound impact many fields espe...
20225    use publicly available data millennium simulat...
20226    support vector machines svm kernel techniques ...
20227    paper considers problem approximating density ...
20228    study follow grossmann lohse phys rev lett der...
20229    renormalization method based taylor expansion ...
20230    numerical approximation elasticity problems co...
20231    paper consider problem estimating leadlag para...
20232    polymer model given terms beads interacting ho...
20233    distributed learning effective way analyze big...
20234    kriging gaussian process regression applied ma...
20235    past three years become evident fake news dang...
20236    deep learning stateoftheart fields visual obje...
20237    alzheimers disease prediction longitudinal evo...
20238    acquisition magnetic resonance imaging mri inh...
20239    present stateoftheart endtoend automatic speec...
20240    study focuses social structure interpersonal d...
20241    wellknown harishchandra transform fmapstomathc...
20242    consider estimation signal knowledge noisy lin...
20243    memristors recently received significant atten...
20244    introduce directed weighted random graph model...
20245    letter investigate performance multipleinput m...
20246    migration main process shaping patterns human ...
20247    establish grbnershirshov bases theory differen...
20248    conversion optimization means designing web in...
20249    paper investigates phenomenon emergence spatia...
20250    many biological agricultural military activity...
20251    consider minimization problems calculus variat...
20252    paper extend hermitehadamard type dotiscan ine...
20253    paper provides several statistical estimators ...
20254    paper compute epolynomials pglmathbbccharacter...
20255    modern computer architectures share physical r...
20256    show various supercongruences truncated series...
20257    layer normalization recently introduced techni...
20258    translating formulas linear temporal logic ltl...
20259    short note describes benefit one obtains speci...
20260    paper introduce new concept stability crossval...
20261    convolution properties discussed complexvalued...
20262    network densification heterogenisation deploym...
20263    investigate integration planning mechanism enc...
20264    paper propose novel recurrent neural network a...
20265    start point piecewise smooth vector field defi...
20266    difficult refold previously folded sheet paper...
20267    discuss general procedure construct integrable...
20268    hawkes process class point processes whose fut...
20269    rapid deployment operation key requirements ti...
20270    present analytical treatment threedimensional ...
20271    document describes submission localization tra...
20272    number component classifiers chosen ensemble g...
20273    lowrank modeling many important applications c...
20274    inspired importance diversity biological syste...
20275    community detection commonly used technique id...
20276    electronic friction ensuing nonadiabatic energ...
20277    explore notion quantum auxiliary linear proble...
20278    recurrent neural networks various types hidden...
20279    hydrogen bonding nucleobases produces diverse ...
20280    paper derives upper limit density rhoscriptsty...
20281    mobile edge caching enables content delivery d...
20282    develop online learning method prediction impo...
20283    study mass imbalanced fermifermi mixture withi...
20284    establish concrete criteria fully supported ab...
20285    standard photoacoustic imaging propagation sou...
20286    deep convolutional neural network cnn based sa...
20287    paper investigate fundamental limitations feed...
20288    identify graphene layer disordered substrate p...
20289    many approaches testing configurable software ...
20290    propose reinforcement learning rl based closed...
20291    consider parabolic allencahn equation mathbbrn...
20292    longtail phenomenon tells us many items tail h...
20293    realworld dataset provided pulpandpaper manufa...
20294    experimental setup consecutive measurement ion...
20295    recent book merchants doubt new yorkbloomsbury...
20296    paper deal wellknown nonlinear lorenz system d...
20297    preprint consider compare different definition...
20298    paper investigates computational complexity sp...
20299    hard problem consciousness dismissed illusion ...
20300    study interplay steinberg algebras partial ske...
20301    dirac equation relativistic electron waves par...
20302    though convolutional neural networks cnns surp...
20303    study crossover sudden quench limit adiabatic ...
20304    report strong interfacial exchange coupling bi...
20305    softwaredriven cloud networking new paradigm o...
20306    pid control architectures widely used industri...
20307    minhashing approach sketching become important...
20308    among macroeconomic indicators monthly release...
20309    understanding origin unintentional doping gao ...
20310    optic flow two dimensional special qualities a...
20311    neurons process information transforming barra...
20312    cyclic data structures cyclic lists functional...
20313    highorder harmonic generation hhg aligned acet...
20314    report set programs developed zmbh bioimaging ...
20315    many computationallyefficient methods bayesian...
20316    optical properties multilayer system dielectri...
20317    quadratic systems equations appear several app...
20318    illiquid markets obvious proxy market price as...
20319    propose novel method object pose estimation rg...
20320    human microbiome studies sequencing reads data...
20321    transition points mark qualitative changes mac...
20322    provide hybrid method captures polynomial spee...
20323    primarily motivated drug development process s...
20324    paper present cosimulation pid class power con...
20325    paper considered sub family exponential family...
20326    paper revisits problem optimal control law des...
20327    schumann resonance transients propagate around...
20328    learn navigate unmanned aerial vehicle uav avo...
20329    exploratory analysis network data often limite...
20330    algorithms increasingly inform influence decis...
20331    abridged paper revisit problem inferring inner...
20332    paper discuss general properties viscoelastic ...
20333    quasiparticle excitations fese studied means s...
20334    paper presents model based deep learning algor...
20335    janus type watersplitting catalysts attracted ...
20336    prevailing challenge biomedical social science...
20337    paper argues class riemannian metrics called w...
20338    work develops techniques sequential detection ...
20339    propose klucb algorithm regret minimization st...
20340    ordinary differential operators periodic coeff...
20341    set possible configurations ehrenfest windtree...
20342    study cooperative optical coupling regularly s...
20343    measures neuroelectric activity automatically ...
20344    present accurate electrical resistivity measur...
20345    one goals scaling sequential machine learning ...
20346    triple array rectangular array containing lett...
20347    learning algorithms natural language processin...
20348    axisymmetric fusion reactors equilibrium magne...
20349    introduce new sublinear space sketchthe weight...
20350    weiyi zhang noticed recently gap proof main th...
20351    article discuss mass transference principle du...
20352    twocolor photoassociation ca four weakly bound...
20353    provide criteria cyclotomic quiver hecke algeb...
20354    compare electronic structures single fese laye...
20355    regularization techniques widely employed opti...
20356    network models applied numerous domains data r...
20357    extrapolation methods use last iterates optimi...
20358    motion massive particle rindler space studied ...
20359    approximate markov chain monte carlo mcmc offe...
20360    search engines online marketplaces humancomput...
20361    real world many complex systems interact syste...
20362    previously controllability problem linear time...
20363    relate counting honeycomb dimer configurations...
20364    programming demonstration recently gained much...
20365    aiming financial applications study problem le...
20366    supervised learning based methods source local...
20367    revolution galaxy cluster science years away s...
20368    previous studies shown intermediate surface te...
20369    generative adversarial networks gans highly ef...
20370    present implement nondestructive detection sch...
20371    open case vizings conjecture every planar grap...
20372    present study lowfrequency radio properties st...
20373    known initialboundary value problem certain in...
20374    wheeled ground robots limited exploring extrem...
20375    studying flockingswarming behaviors animals on...
20376    developing system humanrobot communication ena...
20377    recent turn towards quantitative textasdata ap...
20378    introduce lattice gas implementation based coa...
20379    present paper investigate influence retarded a...
20380    unconventional superconductivity superfluidity...
20381    problem controlling mean variance species inte...
20382    big finegrained enterprise registration data i...
20383    paper presents novel technique allows computat...
20384    recurrent neural networks rnns drawing much at...
20385    propose visionbased method localizes ground ve...
20386    consider geometrical optimization problems rel...
20387    time delay neural networks tdnns effective aco...
20388    paper proposes new model extracting interpreta...
20389    view neural network distributed system neurons...
20390    consider twonode tandem queueing network upstr...
20391    letter present new robotic harvester harvey au...
20392    ami observations towards ciza j comparison obs...
20393    orthognathic surgery dental splints important ...
20394    energytransport equations transport fermions o...
20395    report ab initio density functional calculatio...
20396    making sense wasserstein distances discrete me...
20397    xray emission associated accretion onto compac...
20398    develop riemannian stein variational gradient ...
20399    springantispring systems investigated possible...
20400    study extensions polytopes combinatorial optim...
20401    given finite honest time derive representation...
20402    paper study implications conference program co...
20403    realworld networks difficult characterize vari...
20404    topological superfluid exotic state quantum ma...
20405    process liquidity provision financial markets ...
20406    paper describes design implementation audio in...
20407    variational autoencoder vae popular probabilis...
20408    consider sequence real data points xldots xn u...
20409    concept stochastic configuration networks scns...
20410    many database columns contain string numerical...
20411    address problem multiclass classification case...
20412    travel time route varies substantially time da...
20413    study planted problemsfinding hidden structure...
20414    polynomial chaos expansions pce seen widesprea...
20415    currently harness technologies could shed new ...
20416    prove gromovwitten theory gwt projective bundl...
20417    introduce concept numerical gaussian processes...
20418    quality experience qoe known subjective contex...
20419    deep learning still common tool speaker verifi...
20420    consider stochastic process controlled across ...
20421    discrminative trackers employ classification a...
20422    javascript code deployed wild minified process...
20423    theory navierstokes equations viscous fluid in...
20424    paper make important step towards blackbox mac...
20425    large neural network generalize well complex t...
20426    would like learn latent representations lowdim...
20427    deep convolutional neural networks cnns applie...
20428    mechanical oscillators heart many sensor appli...
20429    ip networks became dominant type information n...
20430    dynamical systems found nature rarely isolated...
20431    uncertainty quantification critical missing co...
20432    emphorbit problem consists determining given l...
20433    largeaperture experiment detect dark age leda ...
20434    making sense dataset automatic unsupervised fa...
20435    widespread use machine learning ml techniques ...
20436    balance held brownian motion temporal regulari...
20437    working context muabstract elementary classes ...
20438    yangtze river subject heavy flooding throughou...
20439    classical causal inference assumes treatment m...
20440    reliable accurate affordable positioning servi...
20441    present several upper bounds height global res...
20442    shale gas plays important role reducing pollut...
20443    paper develops novel methodology using symboli...
20444    tracking divergence two initially close trajec...
20445    one important semiconductors silicon si used f...
20446    humans ultimate ecosystem engineers profoundly...
20447    paper describes simple yet novel system genera...
20448    paper give closetosharp answer basic questions...
20449    study interplay spin charge coherence singlele...
20450    paper introduction membrane potential equation...
20451    present compilation lego technic parts provide...
20452    conjecture formulated affine structure linked ...
20453    recent experiments show statistical impact sea...
20454    let g reductive algebraic group padic field nu...
20455    give general method extending unital completel...
20456    convolution greens function differential opera...
20457    manybody phenomena always integral part physic...
20458    performing bayesian data analysis using genera...
20459    increasing electric vehicle ev adoption recent...
20460    vulnerabilities password managers unremitting ...
20461    text survey crossvalidation define classical c...
20462    objective using traditional approaches brainco...
20463    index coding problem generalized recently acco...
20464    concerned inverse scattering problem extractin...
20465    thermoelectric energy conversion exploitation ...
20466    work study excitatory ampa nmda inhibitory gab...
20467    use coarse version fundamental group first int...
20468    study growth degrees many autonomous nonautono...
20469    laser heterodyne polarimeter lhp designed meas...
20470    availability big data recorded massively multi...
20471    aim paper give explicit formula nonsymmetric h...
20472    algorithm irreducible decomposition representa...
20473    note commentary modeltheoretic interpretation ...
20474    work ask following question visual analogies l...
20475    classical secretary problem one attempts find ...
20476    paper addresses challenges flexibly modeling m...
20477    analyzing spinspin correlation functions relat...
20478    cuore experiment tonscale cryogenic bolometer ...
20479    recently cauchycarlitz number defined counterp...
20480    networks provide informative yet nonredundant ...
20481    present synkhronos extension theano multigpu c...
20482    cell division site positioning precisely regul...
20483    consider system polynomials fldots frin mathbb...
20484    let g gln algebraically closed field odd chara...
20485    work focuses problem predicting transfer pedia...
20486    propose minority route choice game investigate...
20487    massive content users social personal professi...
20488    networked system often relies distributed algo...
20489    catalytic swimmers attracted much attention al...
20490    consider bogolubovde gennes equations giving e...
20491    penalized likelihood methods widely used highd...
20492    machine learning field computer science builds...
20493    use deep learning model trained patients blood...
20494    investigate possibility extending nonfunctiona...
20495    propose new variational bayes estimator highdi...
20496    scene modeling crucial robots need perceive re...
20497    order perform complex actions human environmen...
20498    study numerically entanglement entropy spatial...
20499    strongly interacting manybody systems consisti...
20500    casimir forces material surfaces close proximi...
20501    driven interest reasoning probabilistic progra...
20502    paper consider development numerical schemes m...
20503    localizationbased imaging revolutionized fluor...
20504    within standard model manybody localization ie...
20505    spectroscopic properties useful plasma diagnos...
20506    paper presents submissions university zurich s...
20507    consider generalizations sylvester matrix equa...
20508    viscoelasticity described since time maxwell i...
20509    adaptive optic ao systems delivering high leve...
20510    progress made understanding spontaneous toroid...
20511    wireless engineers business planners commonly ...
20512    scripting language described document first pl...
20513    consider abstract evolution equations onoff ti...
20514    spectral properties turbulent cascade fluid ki...
20515    blind source separation model multivariate tim...
20516    introduce notion z r gmixed cage z r gmixed ca...
20517    technique levitate measure threedimensional po...
20518    monero privacycentric cryptocurrency allows us...
20519    face image quality defined measure utility fac...
20520    networks represent agents interactions arise m...
20521    pairing symmetry newly proposed cobalt high te...
20522    search flatband solidstate realizations crucia...
20523    deep neural network hierarchical nonlinear mod...
20524    identify describe main dynamic regimes occurri...
20525    survey different classification results surfac...
20526    since introduction knyazev toward optimal prec...
20527    compare large suite theoretical cosmological m...
20528    work devoted variety dimensional algebras alge...
20529    present bayesian object observation model comp...
20530    investigate generation optical frequency combs...
20531    physical media like surveillance cameras socia...
20532    physical model threedimensional flow viscous b...
20533    localization anatomical structures prerequisit...
20534    let xdmu doubling metric measure space endowed...
20535    last decade remarkable neutrino physics partic...
20536    study several variants qgarnier system corresp...
20537    investigate luttinger model fixed box potentia...
20538    cosmological relaxation electroweak scale prop...
20539    solving hard computational problems semidefini...
20540    magnetically tunable feshbach resonances ultra...
20541    compressed sensing realvalued sparse vector re...
20542    momentum methods polyaks heavy ball hb method ...
20543    recovery approximately sparse compressible coe...
20544    despite recent advances memoryaugmented deep n...
20545    crystallographic stacking order multilayer gra...
20546    study variational ginzburglandau type model de...
20547    present multimodal nonlinear optical nlo laser...
20548    discovery new type uniform radiation located r...
20549    leibniz algebras certain generalization lie al...
20550    reconstruction skilled humans sensation contro...
20551    let x tx compact connected orientable cr manif...
20552    present work explore resistive circuits indivi...
20553    developed computational code dynaphopy allow u...
20554    change detection problem determine markov netw...
20555    context poor usability cryptographic apis seve...
20556    building dialog agents converse naturally huma...
20557    propose alternative framework existing setups ...
20558    paper presents statistical method singlechanne...
20559    understanding global optimality deep learning ...
20560    concepts tools network theory socalled lagrang...
20561    paper maximum principle cutoff function invest...
20562    paper extend improved pointwise iterationcompl...
20563    paper presents novel deep learningbased method...
20564    study following nonlocal diffusion equation he...
20565    fast efficient motion planning algorithms cruc...
20566    ever increasing size web relevant information ...
20567    paper fills gap aspectbased sentiment analysis...
20568    let x mathscrl lambda mathscrm mu finite measu...
20569    partial differential equations random inputs b...
20570    music relies heavily repetition build structur...
20571    massive multipleinput multipleoutput mmimo tec...
20572    split feasibility formulation inverse problem ...
20573    paper study superalgebra introduced authors pr...
20574    investigate preference profiles set mathcalv v...
20575    review based lectures given th saasfee advance...
20576    using representation theory cherednik algebras...
20577    show khovanov complex rational tangle simple r...
20578    study shocks forwardlooking expectations inves...
20579    work presents novel framework based feedforwar...
20580    slimness graph measures local deviation metric...
20581    despite immense popularity deep learningbased ...
20582    present olog kcompetitive randomized algorithm...
20583    present general framework studying regularized...
20584    sharing statistical strength phrase often empl...
20585    paper uses model symmetries instrumental varia...
20586    paper use classical electrodynamics show loren...
20587    assume observe sample size n composed pdimensi...
20588    pulsedlaser dry printing noblemetal microrings...
20589    increasing amounts data varied sources particu...
20590    paper proposes distributed consensus algorithm...
20591    secure private framework interagent communicat...
20592    covariate shift training source data testing t...
20593    enormous progress made variational autoencoder...
20594    demonsrtate electrical spin injection detectio...
20595    present algorithm rapidly learning controllers...
20596    scada protocols industrial control systems ics...
20597    despite significant functional roles betaband ...
20598    propose natural relaxation differential privac...
20599    paper propose quality enhancement network vers...
20600    main result paper discrete lawson corresponden...
20601    networks fundamental models data used practica...
20602    combining analytic geometric viewpoints concen...
20603    realization short bunch beam manipulating long...
20604    create fermionic dipolar nali molecules triple...
20605    let sigma arclength measure ssubset mathbb r t...
20606    consider diffusion new products discrete basss...
20607    substantial progress factoid questionanswering...
20608    quantum computer qc solve many computational p...
20609    recurrence networks powerful tools used effect...
20610    ocean general circulation models ogcms move pe...
20611    accelerators gpus limited memory deep neural n...
20612    understanding relationship structure lightharv...
20613    study stochastic multiarmed bandits many playe...
20614    highresolution noninvasive study intact spine ...
20615    number articles deal bohrs phenomenon whereas ...
20616    present class simple algorithms allows find re...
20617    increasingly polarized world demagogues reduce...
20618    study semidiscrete directed polymer model intr...
20619    paper introduce use personalized gaussian proc...
20620    paper provides results nonstandard hyperbolic ...
20621    unsupervised learning techniques computer visi...
20622    work explore problems detecting number narrowb...
20623    latent feature relational model lfrm generativ...
20624    ancient mindbody problem continues one deepest...
20625    investigate dependence transmission losses cho...
20626    standard interpolation techniques implicitly b...
20627    elementary introduction infinitedimensional pr...
20628    repair mechanisms important within resilient s...
20629    every real computable martinloef random real w...
20630    paper proposes use subspace tracking algorithm...
20631    consider particle dressed boundary gravitons t...
20632    study behavior exponential random graphs spars...
20633    proofcarryingcode proposed solution ensure tru...
20634    little known properties small cells poisson hy...
20635    investigate problem guessing discrete random v...
20636    paper methods forming travel company customer ...
20637    paper consider two rainfallrunoff computer mod...
20638    classification imbalanced datasets challenging...
20639    consider problems liveness verification livene...
20640    inference tails performed applying results ext...
20641    soil moisture active passive smap mission deli...
20642    discovered previously topological order parame...
20643    propose new model unsupervised document embedd...
20644    purpose work construct model functional archit...
20645    consider inverse problem parameter estimation ...
20646    hyperuniform disordered photonic materials hdp...
20647    scientific explanation often requires inferrin...
20648    crosslingual representations words enable us r...
20649    lattice integer span linearly independent vect...
20650    research design ghz class e power amplifier pa...
20651    study densesubhypergraph problem initiated chl...
20652    literature survey ontologies concerning securi...
20653    logicbased event recognition systems infer occ...
20654    graph isomorphism important computer science p...
20655    effect modification occurs effect treatment ou...
20656    growing body research focuses computationally ...
20657    recent work shown stateoftheart models highly ...
20658    exploiting wealth imaging nonimaging informati...
20659    independence system respect unknotting number ...
20660    consider theoretically ultracold interacting b...
20661    overview research laserplasma based accelerati...
20662    paper consider estimators additive functional ...
20663    van der waals heterostructures allotropes phos...
20664    provide surprising answer question raised ahma...
20665    scattering obliquely incident electromagnetic ...
20666    paper describes two supervised baseline system...
20667    paper concerned linear quadratic lq short opti...
20668    let xxiiinmathbbz dotsxixixidots sampling set ...
20669    mean objective cost uncertainty mocu quantifie...
20670    artificial neural networks popular effective m...
20671    curating labeled training data become primary ...
20672    many applications classifier learning training...
20673    today deal many data big data need make decisi...
20674    consider repeated newsvendor problem inventory...
20675    social networking sites twitter provided great...
20676    study class rings r property xin r least one e...
20677    effective riverine flood forecasting scale hin...
20678    consider frequency domain form proper orthogon...
20679    stochastic dominance fleqstg hold improve agre...
20680    electron lens serve effective mechanism suppre...
20681    search sterile neutrinos holographic dark ener...
20682    work present parallel fullydistributed finite ...
20683    improve system performance modern operating sy...
20684    interaction proteins dna key driving force sig...
20685    paper presents keypointnet endtoend geometric ...
20686    general theoretical framework derived recently...
20687    paper presents systematic approach computing l...
20688    atomically thin ptse films attracted extensive...
20689    present navrenrl approach navigate unmanned ae...
20690    digital image correlation dic widely used opti...
20691    classical idea evolutionarily stable strategy ...
20692    measurements highfrequency complex resistivity...
20693    paper presents empirical study applying convol...
20694    letter present measurement phasespace density ...
20695    e root lattice constructed modular curve x inv...
20696    present convergence rate analysis approximate ...
20697    give description complex geodesics study struc...
20698    recent advances bioinformatics made highthroug...
20699    article illustrates measure heterogeneity spat...
20700    planetesimals may form gravitational collapse ...
20701    covering system integers finite collection mod...
20702    asymptotic safety based nongaussian fixed poin...
20703    future predictions sequence data eg videos aud...
20704    paper presents modular inpipeline climbing rob...
20705    paper presents learningbased approach imprompt...
20706    work decay estimates derived solutions linear ...
20707    simple selfconsistent approach proposed simula...
20708    superconducting linacs capable producing inten...
20709    paper introduces concept sizeaware sharding im...
20710    explain unusual richness compactness abell pro...
20711    current work done see artery chance cardiovasc...
20712    last decade witnessed increase interest spatia...
20713    order understand physical hysteresis loops cle...
20714    finding reduceddimensional structure critical ...
20715    twosample summarydata mendelian randomization ...
20716    paper contains two parts description real elec...
20717    recently riemannian gaussian distributions def...
20718    power flow low voltage direct current grid lvd...
20719    prove adjoint bilinear restriction estimates g...
20720    note presents algebraic theory instruction seq...
20721    find patterns anomalies tensor multidimensiona...
20722    planning problems partially observable environ...
20723    message passing algorithm derived recovering c...
20724    explore borel complexity basic families subset...
20725    capable significantly reducing cell size enhan...
20726    information carrier modern technologies electr...
20727    typical framework boolean games bg player chan...
20728    let x connected open riemann surface let oka d...
20729    unidirectional control optically induced spin ...
20730    paper proposes novel deep reinforcement learni...
20731    generalized linear bandits glbs natural extens...
20732    pressure dependence structural magnetic superc...
20733    paper describes luminosos participation semeva...
20734    determine symmetrized topological complexity c...
20735    introduce intertwining operators among twisted...
20736    everincreasing architectural complexity contem...
20737    cooperative behavior real social dilemmas ofte...
20738    binary random compacts different proportions s...
20739    many realworld networks known attributed netwo...
20740    compute maximal halfspace depth class permutat...
20741    letter principal weakness published article li...
20742    many current scientific advances life sciences...
20743    capabilities detecting temporal relations two ...
20744    study central problem data privacy share data ...
20745    point simple variant syk model call csyk slr i...
20746    derive integrable equations starting autonomou...
20747    molecular dynamics based solving newtons equat...
20748    contamination covariates measurement error cla...
20749    consider process widehatlambdanlambdan lambdan...
20750    paper studies approximate null controllability...
20751    work study two families codes availability nam...
20752    present co mosaic map spiral galaxy ngc combin...
20753    obtained lowresolution optical micron nearinfr...
20754    blackbird unmanned aerial vehicle uav dataset ...
20755    motivation cellular electron cryotomography ce...
20756    article focuses quasilinear wave equation plap...
20757    given discrete group gammagldotsgm number kinm...
20758    consider task collaborative preference complet...
20759    emerging internet things iot one critical prob...
20760    study multiarmed bandit problem rewards realiz...
20761    physical properties intermetallic compound cer...
20762    based results second author define equivariant...
20763    spectral clustering singular value decompositi...
20764    solving linear programs using entropic penaliz...
20765    network latencies become increasingly importan...
20766    accurate diagnosis psychiatric disorders plays...
20767    accurate model patientspecific kidney graft su...
20768    introduce framework modeling sequential data c...
20769    develop efficient algorithms estimating lowdeg...
20770    present data streaming algorithms kmedian prob...
20771    consider capillary condensation transitions oc...
20772    melan equation suspension bridges derived assu...
20773    optimal path planning problems rigid deformabl...
20774    give sufficient condition verdier quotient ctc...
20775    sum n summands independently chosen two choice...
20776    detecting activities untrimmed videos importan...
20777    principal component analysis continues powerfu...
20778    nonlinear systems whose outputs directly propo...
20779    work present novel strategy correcting imperfe...
20780    paper studies effective separability subgroups...
20781    existing image denoising methods learn image p...
20782    mac address randomization privacy technique wh...
20783    paper proposed procedure construct completion ...
20784    note investigate representation type cambrian ...
20785    fitting linear regression models computational...
20786    consider linear groups contain unipotent eleme...
20787    discrete laplace operator ubiquitous spectral ...
20788    paper develop class decentralized algorithms s...
20789    today digital sources supply unprecedented com...
20790    gaussian processes gps important models superv...
20791    stateoftheart text detection methods specific ...
20792    aim paper introduce study large class mathfrak...
20793    robot awareness human actions essential resear...
20794    obtain necessary sufficient conditions bounded...
20795    many methods automated software test generatio...
20796    expected progress toward true artificial intel...
20797    recently claimed inflationary models inflectio...
20798    regularization matrix factorization mf approxi...
20799    temporal graph data structure consisting nodes...
20800    orbifold equivalence notion symmetry rely grou...
20801    standard contentbased attention mechanism typi...
20802    local multiplicities maxwell sets spaces versa...
20803    growing field largescale time domain astronomy...
20804    motivations shortread accuracy important downs...
20805    patient pain detected highly reliably facial e...
20806    tracking humans interacting subjects environme...
20807    introduce affine generalization counter automa...
20808    paper characterize several lower separation ax...
20809    consider row sequences vector valued padfaber ...
20810    work present novel background subtraction syst...
20811    paper establish second main theorem holomorphi...
20812    prove partially hyperbolic diffeomorphism one ...
20813    speech enhancement se aims reduce noise speech...
20814    reexamine interactions dark sectors cosmology ...
20815    existing zeroshot learning zsl models typicall...
20816    methodologically address problem qvalue overes...
20817    analysis noiseinduced synchronization opinion ...
20818    establish matterwave interference nearresonant...
20819    recent works shown synthetic parallel data aut...
20820    propose automatic method infer high dynamic ra...
20821    prove negative infinitesimal generator l semig...
20822    present three player bayesian game epsilon equ...
20823    recent work interpretability complex machine l...
20824    deep learning dl creates impactful advances fo...
20825    derive macroscopic dynamics selfpropelled part...
20826    spin hall effect found strong heavy transition...
20827    considering nests given space explore orderthe...
20828    introduce differential characters drinfeld mod...
20829    strong submeasure compact metric space x subli...
20830    professional baseball players increasingly gua...
20831    deriving master equation multipartite weaklyin...
20832    work presents method contact state estimation ...
20833    recent literature robotics community focused l...
20834    evaluation complexity convexly constrained opt...
20835    paper prove one level density results lowlying...
20836    existing approaches online convex optimization...
20837    causal discovery empirical data fundamental pr...
20838    investigate fredholm alternative plaplacian ex...
20839    precipitation hardening relies high density in...
20840    multiband phase variations principle allow us ...
20841    introduce new algorithm called cder supervised...
20842    integrable optics innovation particle accelera...
20843    propose empirical estimator preferential attac...
20844    learned boundary maps known outperform hand cr...
20845    magic major atmospheric gamma imaging cherenko...
20846    predicate encryption new paradigm public key e...
20847    galaxy clustering small scales significantly u...
20848    consider hypothesis dark matter dark energy co...
20849    demand mobile electronics continue shrink size...
20850    simplify construction projection complexes due...
20851    designing software systems geometric computing...
20852    planted partition problem n vertices random gr...
20853    business architecture ba plays significant rol...
20854    lack interpretability remains key barrier adop...
20855    probability modelling dna sequence evolution w...
20856    consider problem robust inference important ge...
20857    convolutional neural networks cnn locally conn...
20858    paper presents new results prediction linear p...
20859    population control policies proposed places em...
20860    neutralized drift compression experimentii ndc...
20861    many structured prediction problems particular...
20862    quantitative methods familiar geophysicists di...
20863    define right cartaneilenberg structure categor...
20864    quantum computing machine learning attracts in...
20865    paper provides new similarity detection algori...
20866    reminiscences interactions julian schwinger be...
20867    demonstrate siteresolved imaging strongly corr...
20868    develop unified continuum modeling framework v...
20869    fast timing capability xray observation astrop...
20870    article use lambdasequences derive common fixe...
20871    nested weighted automata nwa present robust co...
20872    study regularity solutions second order bounda...
20873    fourierchebyshev spectral method proposed pape...
20874    many biological cognitive systems operate deep...
20875    present paper companion paper villone rampf ti...
20876    propose dynamic edge exchangeable network mode...
20877    motivated advantages currentmode design brief ...
20878    obtain new bound incomplete gauss sums modulo ...
20879    functional magnetic resonance imaging noninvas...
20880    layered cuprate bicuo investigated using magne...
20881    paper study landau damping weakly collisional ...
20882    deep learning revolutionised many fields still...
20883    prove generating function overpartition mrank ...
20884    study decentralized machine learning scenario ...
20885    prove existence uniqueness strong solutions cl...
20886    propose evaluate new techniques compressing sp...
20887    sparse subspace clustering ssc one current sta...
20888    health related social media mining valuable ap...
20889    recently efforts made improve ptychography pha...
20890    fundamental question language learning concern...
20891    present form schwarzs lemma holomorphic maps c...
20892    paper focus comtype negative binomial distribu...
20893    contextual bandit algorithms minimize regret b...
20894    search engine tightly coupled social networks ...
20895    consider task semantic robotic grasping robot ...
20896    group g set cellular automaton ca transformati...
20897    present simplified treatment stability filtrat...
20898    existing shape estimation methods deformable o...
20899    recent years reinforcement learning rl methods...
20900    paper demonstrate genetic algorithms used reve...
20901    derive lower bound location global extrema eig...
20902    paper presents inscript corpus narrative texts...
20903    alphabedtttfi prominent example charge orderin...
20904    photometric stereo method estimating normal ve...
20905    present micro aerial vehicle mav system built ...
20906    high efficiency charge generation within organ...
20907    construct oneparameter family laplacians sierp...
20908    learning model parameters multiobject dynamica...
20909    given elliptic curve e finite field mathbbfq s...
20910    missing data recovery important yet challengin...
20911    microscopic artificial swimmers recently becom...
20912    show bounded lipschitz pseudoconvex domains ad...
20913    purpose provide fast computational method base...
20914    work details development threedimensional elec...
20915    paper studies optimal communication coordinati...
20916    study quadruple interrelated subexponential su...
20917    nowadays modern earth observation programs pro...
20918    define address problem unsupervised learning d...
20919    light recently proposed scenario asymmetryindu...
20920    part autonomous car driving systems semantic s...
20921    provide pair dual results stating coincidence ...
20922    prove existence solution semirelativistic hart...
20923    unification generalization operations two term...
20924    paper addresses question previously available ...
20925    risk diversification one dominant concerns por...
20926    todays telecommunication networks become sourc...
20927    management longlived radionuclides spent fuel ...
20928    two natural simplicial complexes associated no...
20929    due simplicity excellent performance parallel ...
20930    consider inverse problem recovering unknown fu...
20931    ability model shapes strengths iron lines sola...
20932    background several studies used phylogenetics ...
20933    aim paper generalize notion conformal blocks s...
20934    paper shows statistical analysis khz omega bro...
20935    work investigates macroscopic thermomechanical...
20936    analyze definitions generalized quantifiers im...
20937    paper consider problem predicting demographics...
20938    textual data compressed intelligently without ...
20939    detection proteinprotein interactions ppis pla...
20940    coupon collectors problem one mathematical pro...
20941    study accretion driven turbulence different in...
20942    outlier detection plays essential role many da...
20943    citys critical infrastructure gas water power ...
20944    years twitter become one largest communication...
20945    finitely presented ended group g semistable fu...
20946    paper addresses problem output voltage regulat...
20947    paper study quantum query complexity following...
20948    overset methods commonly employed enable effec...
20949    paper survey various implementations new data ...
20950    playing parrondos game qutrit subject paper sh...
20951    analyse multimodal timeseries data correspondi...
20952    key idea variational autoencoders vaes resembl...
20953    jackson martin proved strong ideal ramp scheme...
20954    performance deep learning natural language pro...
20955    article presents novel breakthrough general pu...
20956    ambiguities definition stored energy within di...
20957    construct hall algebra elliptic curve mathbbf ...
20958    queueing networks systems theoretical interest...
20959    using largescale deep learning approach applie...
20960    paper propose new algorithm based radial symme...
20961    present numerical evidence twodimensional surf...
20962    features applications quasispherical settling ...
20963    inference amortization methods share informati...
20964    study us operations researchindustrialsystems ...
20965    aggregate data metaanalysis statistical method...
20966    large interdatacenter transfers crucial cloud ...
20967    machine learning finding increasingly broad ap...
20968    polycrystalline diamond coatings grown cemente...
20969    present new approach identifying situations be...
20970    sum lognormal variates encountered many challe...
20971    recently optional stopping subject debate baye...
Name: ABSTRACT, dtype: object

Drop NaN rows

In [9]:
# Sample data without Droping Rows with NAN Values
print(len(data))
20972
In [10]:
print(data.isna().sum())
TITLE                   0
ABSTRACT                0
Computer Science        0
Physics                 0
Mathematics             0
Statistics              0
Quantitative Biology    0
Quantitative Finance    0
dtype: int64
In [11]:
# Drop rows with NaN values in the text column
data = data.dropna(subset=['ABSTRACT'])
In [12]:
# Sample data After Droping Rows with NAN Values
print(len(data))
20972
In [13]:
print(data.isna().sum())
TITLE                   0
ABSTRACT                0
Computer Science        0
Physics                 0
Mathematics             0
Statistics              0
Quantitative Biology    0
Quantitative Finance    0
dtype: int64

Data After Processing

In [14]:
print("\n\nAbstract Classification Data After Preprocessing:")
print("=================================================\n")
pd.set_option("display.max_rows", None, "display.max_columns", None)

print(data.head())
print(data.tail())

Abstract Classification Data After Preprocessing:
=================================================

                                               TITLE  \
0        Reconstructing Subject-Specific Effect Maps   
1                 Rotation Invariance Neural Network   
2  Spherical polyharmonics and Poisson kernels fo...   
3  A finite element approximation for the stochas...   
4  Comparative study of Discrete Wavelet Transfor...   

                                            ABSTRACT  Computer Science  \
0  predictive models allow subjectspecific infere...                 1   
1  rotation invariance translation invariance gre...                 1   
2  introduce develop notion spherical polyharmoni...                 0   
3  stochastic landaulifshitzgilbert llg equation ...                 0   
4  fouriertransform infrared ftir spectra samples...                 1   

   Physics  Mathematics  Statistics  Quantitative Biology  \
0        0            0           0                     0   
1        0            0           0                     0   
2        0            1           0                     0   
3        0            1           0                     0   
4        0            0           1                     0   

   Quantitative Finance  
0                     0  
1                     0  
2                     0  
3                     0  
4                     0  
                                                   TITLE  \
20967  Contemporary machine learning: a guide for pra...   
20968  Uniform diamond coatings on WC-Co hard alloy c...   
20969  Analysing Soccer Games with Clustering and Con...   
20970  On the Efficient Simulation of the Left-Tail o...   
20971   Why optional stopping is a problem for Bayesians   

                                                ABSTRACT  Computer Science  \
20967  machine learning finding increasingly broad ap...                 1   
20968  polycrystalline diamond coatings grown cemente...                 0   
20969  present new approach identifying situations be...                 1   
20970  sum lognormal variates encountered many challe...                 0   
20971  recently optional stopping subject debate baye...                 0   

       Physics  Mathematics  Statistics  Quantitative Biology  \
20967        1            0           0                     0   
20968        1            0           0                     0   
20969        0            0           0                     0   
20970        0            1           1                     0   
20971        0            1           1                     0   

       Quantitative Finance  
20967                     0  
20968                     0  
20969                     0  
20970                     0  
20971                     0  
In [15]:
data
Out[15]:
TITLE ABSTRACT Computer Science Physics Mathematics Statistics Quantitative Biology Quantitative Finance
0 Reconstructing Subject-Specific Effect Maps predictive models allow subjectspecific infere... 1 0 0 0 0 0
1 Rotation Invariance Neural Network rotation invariance translation invariance gre... 1 0 0 0 0 0
2 Spherical polyharmonics and Poisson kernels fo... introduce develop notion spherical polyharmoni... 0 0 1 0 0 0
3 A finite element approximation for the stochas... stochastic landaulifshitzgilbert llg equation ... 0 0 1 0 0 0
4 Comparative study of Discrete Wavelet Transfor... fouriertransform infrared ftir spectra samples... 1 0 0 1 0 0
5 On maximizing the fundamental frequency of the... let omega subset mathbbrn bounded domain satis... 0 0 1 0 0 0
6 On the rotation period and shape of the hyperb... observed newly discovered hyperbolic minor pla... 0 1 0 0 0 0
7 Adverse effects of polymer coating on heat tra... ability metallic nanoparticles supply heat liq... 0 1 0 0 0 0
8 SPH calculations of Mars-scale collisions: the... model largescale approxkm impacts marslike pla... 0 1 0 0 0 0
9 $\mathcal{R}_{0}$ fails to predict the outbrea... time varying susceptibility host individual le... 0 0 0 0 1 0
10 A global sensitivity analysis and reduced orde... present systematic global sensitivity analysis... 1 0 0 0 0 0
11 Role-separating ordering in social dilemmas co... three crowd old proverb applies much social in... 0 1 0 0 0 0
12 Dynamics of exciton magnetic polarons in CdMnS... study exciton magnetic polaron emp formation c... 0 1 0 0 0 0
13 On Varieties of Ordered Automata classical eilenberg correspondence based conce... 1 0 0 0 0 0
14 Direct Evidence of Spontaneous Abrikosov Vorte... using lowtemperature magnetic force microscopy... 0 1 0 0 0 0
15 A rank 18 Waring decomposition of $sM_{\langle... recent discovery exponent matrix multiplicatio... 0 0 1 0 0 0
16 The PdBI Arcsecond Whirlpool Survey (PAWS). Th... process leads formation bright star forming si... 0 1 0 0 0 0
17 Higher structure in the unstable Adams spectra... describe variant construction unstable adams s... 0 0 1 0 0 0
18 Comparing Covariate Prioritization via Matchin... investigators seek estimate causal effects oft... 0 0 0 1 0 0
19 Acoustic Impedance Calculation via Numerical S... assigning homogeneous boundary conditions acou... 0 1 0 0 0 0
20 Deciphering noise amplification and reduction ... impact random fluctuations dynamical behavior ... 0 0 0 0 1 0
21 Many-Body Localization: Stability and Instability rare regions weak disorder griffiths regions p... 0 1 1 0 0 0
22 Fault Detection and Isolation Tools (FDITOOLS)... fault detection isolation tools fditools colle... 1 0 0 0 0 0
23 Complexity of Deciding Detectability in Discre... detectability discrete event systems dess ques... 1 0 0 0 0 0
24 The Knaster-Tarski theorem versus monotone non... let x partially ordered set property family or... 0 0 1 0 0 0
25 Efficient methods for computing integrals in e... efficient methods proposed computing integrals... 0 1 0 0 0 0
26 Diffraction-Aware Sound Localization for a Non... present novel sound localization algorithm non... 1 0 0 0 0 0
27 Jacob's ladders, crossbreeding in the set of $... paper introduce notion zetacrossbreeding set z... 0 0 1 0 0 0
28 Minimax Estimation of the $L_1$ Distance consider problem estimating l distance two dis... 0 0 1 1 0 0
29 Density large deviations for multidimensional ... investigate density large deviation function m... 0 1 1 0 0 0
30 mixup: Beyond Empirical Risk Minimization large deep neural networks powerful exhibit un... 1 0 0 1 0 0
31 Equality of the usual definitions of Brakke flow brakke introduced mean curvature flow setting ... 0 0 1 0 0 0
32 Dynamic Base Station Repositioning to Improve ... recent advancements drone technology researche... 1 0 0 0 0 0
33 An Unsupervised Homogenization Pipeline for Cl... electronic health records ehr contain large va... 0 0 0 0 1 0
34 Deep Neural Network Optimized to Resistive Mem... artificial neural network computation relies i... 1 0 0 0 0 0
35 Rate-Distortion Region of a Gray-Wyner Model w... work establish full singleletter characterizat... 1 0 1 0 0 0
36 Fourier-based numerical approximation of the W... work discusses numerical approximation nonline... 0 1 0 0 0 0
37 Design Decisions for Weave: A Real-Time Web-ba... many webbased visualization systems available ... 1 0 0 0 0 0
38 Suzaku Analysis of the Supernova Remnant G306.... present investigation supernova remnant snr g ... 0 1 0 0 0 0
39 Japanese Sentiment Classification using a Tree... previous approaches training syntaxbased senti... 1 0 0 0 0 0
40 Covariances, Robustness, and Variational Bayes meanfield variational bayes mfvb approximate b... 0 0 0 1 0 0
41 Are multi-factor Gaussian term structure model... paper empirically study models pricing italian... 0 0 0 0 0 1
42 Probing valley filtering effect by Andreev ref... ballistic point contact bpc zigzag edges graph... 0 1 0 0 0 0
43 Generalized Approximate Message-Passing Decode... sparse superposition ss codes originally propo... 1 0 1 0 0 0
44 LAAIR: A Layered Architecture for Autonomous I... developing general purpose robots overarching ... 1 0 0 0 0 0
45 3D Human Pose Estimation in RGBD Images for Ro... propose approach estimate human pose real worl... 1 0 0 0 0 0
46 Simultaneous non-vanishing for Dirichlet L-fun... extend work fouvry kowalski michel correlation... 0 0 1 0 0 0
47 Wehrl Entropy Based Quantification of Nonclass... nonclassical states quantized light described ... 1 1 0 0 0 0
48 Attention-based Natural Language Person Retrieval following recent progress image classification... 1 0 0 0 0 0
49 Large Scale Automated Forecasting for Monitori... real time large scale streaming data pose majo... 0 0 0 1 0 0
50 Contextual Regression: An Accurate and Conveni... machine learning algorithms linear regression ... 1 0 0 1 0 0
51 Multi-time correlators in continuous measureme... consider multitime correlators output signals ... 0 1 0 0 0 0
52 Parallelism, Concurrency and Distribution in C... constraint handling rules effective concurrent... 1 0 0 0 0 0
53 Robustness against the channel effect in patho... many people suffering voice disorders adversel... 1 0 0 0 0 0
54 An Effective Framework for Constructing Expone... computing basis exponent lattice algebraic num... 1 0 0 0 0 0
55 Competing evolutionary paths in growing popula... investigating emergence particular cell type r... 0 0 0 0 1 0
56 Transient flows in active porous media stimuliresponsive materials modify shape respo... 0 1 0 0 0 0
57 An information model for modular robots: the H... todays landscape robotics dominated vertical i... 1 0 0 0 0 0
58 Detecting Adversarial Samples Using Density Ra... machine learning models especially based deep ... 1 0 0 1 0 0
59 The Query Complexity of Cake Cutting study query complexity cake cutting give lower... 1 0 0 0 0 0
60 Stacked Convolutional and Recurrent Neural Net... paper studies emotion recognition musical trac... 1 0 0 0 0 0
61 Timed Automata with Polynomial Delay and their... consider previous models timed probabilistic s... 1 0 0 0 0 0
62 Superconducting properties of Cu intercalated ... present muon spin rotation measurements superc... 0 1 0 0 0 0
63 Time-domain THz spectroscopy reveals coupled p... reveal details interaction human lysozyme prot... 0 1 0 0 0 0
64 Inversion of Qubit Energy Levels in Qubit-Osci... report experimentally measured light shifts su... 0 1 0 0 0 0
65 Deep Multiple Instance Feature Learning via Va... describe novel weakly supervised deep learning... 0 0 0 1 0 0
66 Regularity of envelopes in Kähler classes establish c regularity quasipsh envelopes kahl... 0 0 1 0 0 0
67 $S^1$-equivariant Index theorems and Morse ine... let complex manifold dimension n smooth connec... 0 0 1 0 0 0
68 Internal Model from Observations for Reward Sh... reinforcement learning methods require careful... 1 0 0 1 0 0
69 Characterizations of quasitrivial symmetric no... paper interested class nary operations arbitra... 0 0 1 0 0 0
70 Multivariate Dependency Measure based on Copul... propose new multivariate dependency measure ob... 0 0 1 1 0 0
71 The nature of the tensor order in Cd2Re2O7 pyrochlore metal cdreo recently investigated s... 0 1 0 0 0 0
72 Efficient and consistent inference of ancestra... evolutionary biology speciation history living... 1 0 1 1 0 0
73 Flow Characteristics and Cores of Complex Netw... subject research complex networks network syst... 1 1 0 0 0 0
74 Pattern-forming fronts in a Swift-Hohenberg eq... study effect domain growth orientation striped... 0 1 0 0 0 0
75 Generalized Minimum Distance Estimators in Lin... paper discusses minimum distance estimation me... 0 0 1 1 0 0
76 Live Service Migration in Mobile Edge Clouds mobile edge clouds mecs bring benefits cloud c... 1 0 0 0 0 0
77 Induced density correlations in a sonic black ... analog blackwhite hole pairs consisting region... 0 1 0 0 0 0
78 Genus growth in $\mathbb{Z}_p$-towers of funct... let k function field finite field k characteri... 0 0 1 0 0 0
79 Topological Phases emerging from Spin-Orbital ... study evolution spinorbital correlations inhom... 0 1 0 0 0 0
80 Accurate and Diverse Sampling of Sequences bas... autonomous agents successfully operate real wo... 0 0 0 1 0 0
81 Exploring RNN-Transducer for Chinese Speech Re... endtoend approaches drawn much attention recen... 1 0 0 0 0 0
82 A Debt-Aware Learning Approach for Resource Ad... elasticity cloud property enables applications... 1 0 0 0 0 0
83 Semi-simplicial spaces exposition homotopical results geometric reali... 0 0 1 0 0 0
84 Constraints, Lazy Constraints, or Propagators ... answer set programming asp wellestablished dec... 1 0 0 0 0 0
85 A Unified Approach to Nonlinear Transformation... advances geometric approaches optical devices ... 0 1 0 0 0 0
86 Stationary crack propagation in a two-dimensio... investigate crack propagation simple twodimens... 0 1 0 0 0 0
87 A note on the fundamental group of Kodaira fib... fundamental group pi kodaira fibration definit... 0 0 1 0 0 0
88 Photo-Chemically Directed Self-Assembly of Car... transistors incorporating singlewall carbon na... 0 1 0 0 0 0
89 Split-and-augmented Gibbs sampler - Applicatio... paper derives two new optimizationdriven monte... 0 0 0 1 0 0
90 Does a generalized Chaplygin gas correctly des... yes parameter value makes almost coincide stan... 0 1 0 0 0 0
91 The effects of subdiffusion on the NTA size me... interest extracellular vesicles evs rapidly gr... 0 1 0 0 0 0
92 Empirical regression quantile process with pos... processes averaged regression quantiles modifi... 0 0 1 1 0 0
93 Primordial perturbations from inflation with a... study primordial perturbations hyperinflation ... 0 1 0 0 0 0
94 Role of Vanadyl Oxygen in Understanding Metall... vanadium pentoxide vo stable member vanadium o... 0 1 0 0 0 0
95 Graph Convolution: A High-Order and Adaptive A... paper presented novel convolutional neural net... 1 0 0 1 0 0
96 Learning Sparse Representations in Reinforceme... variety representation learning approaches inv... 1 0 0 1 0 0
97 Almost euclidean Isoperimetric Inequalities in... motivated perelmans pseudo locality theorem ri... 0 0 1 0 0 0
98 Exponential Sums and Riesz energies bound exponential sum appears study irregulari... 0 0 1 0 0 0
99 One dimensionalization in the spin-1 Heisenber... investigate effect dimensional crossover groun... 0 1 0 0 0 0
100 Memory Aware Synapses: Learning what (not) to ... humans learn continuous manner old rarely util... 1 0 0 1 0 0
101 Uniform Spectral Convergence of the Stochastic... paper study generalized polynomial chaos gpc b... 0 0 1 0 0 0
102 On Improving the Capacity of Solving Large-sca... last decade wireless networks experienced impr... 1 0 1 0 0 0
103 Quasi two-dimensional Fermi surface topography... report combined study de haasvan alphen effect... 0 1 0 0 0 0
104 A Variational Characterization of Rényi Diverg... atar chowdhary dupuis recently exhibited varia... 1 0 1 1 0 0
105 Interlayer coupling and gate-tunable excitons ... bilayer van der waals vdw heterostructures mos... 0 1 0 0 0 0
106 Enumeration of singular varieties with tangenc... construct algebraic cobordism theory bundles d... 0 0 1 0 0 0
107 In-home and remote use of robotic body surroga... people profound motor deficits could perform u... 1 0 0 0 0 0
108 ClusterNet: Detecting Small Objects in Large S... object detection wide area motion imagery wami... 1 0 0 0 0 0
109 Monte Carlo Tree Search with Sampled Informati... monte carlo tree search mcts famously used gam... 1 0 1 0 0 0
110 Fermi-edge singularity and the functional reno... study fermiedge singularity describing respons... 0 1 0 0 0 0
111 Towards "AlphaChem": Chemical Synthesis Planni... retrosynthesis technique plan chemical synthes... 1 1 0 0 0 0
112 The quasi-Assouad dimension for stochastically... class stochastically selfsimilar sets contains... 0 0 1 0 0 0
113 Influence of Spin Orbit Coupling in the Iron-B... report influence spinorbit coupling soc febase... 0 1 0 0 0 0
114 Effect of Meltdown and Spectre Patches on the ... work examine updates addressing meltdown spect... 1 0 0 0 0 0
115 Gene regulatory network inference: an introduc... gene regulatory networks powerful abstractions... 0 0 0 0 1 0
116 Optic Disc and Cup Segmentation Methods for Gl... glaucoma second leading cause blindness world ... 1 0 0 1 0 0
117 Automatic Analysis, Decomposition and Parallel... life modern world essentially depends work lar... 1 0 1 0 0 0
118 Robust Contextual Bandit via the Capped-$\ell_... paper considers actorcritic contextual bandit ... 1 0 0 1 0 0
119 Improper posteriors are not improper kolmogorov constructed general theory defines ... 0 0 1 1 0 0
120 Fault Tolerant Consensus Agreement Algorithm recently new fault tolerant simple mechanism d... 1 0 0 0 0 0
121 Congestion Barcodes: Exploring the Topology of... work presents new method quantify connectivity... 1 0 1 0 0 0
122 Once in a blue moon: detection of 'bluing' dur... first transiting planetesimal orbiting white d... 0 1 0 0 0 0
123 Viscous dynamics of drops and bubbles in Hele-... review article discuss recent studies drops bu... 0 1 0 0 0 0
124 Stacking-based Deep Neural Network: Deep Analy... stackingbased deep neural network sdnn general... 1 0 0 0 0 0
125 Superconductivity and Frozen Electronic States... spite andersons theorem disorder known affect ... 0 1 0 0 0 0
126 Emittance preservation of an electron beam in ... investigate beam loading emittance preservatio... 0 1 0 0 0 0
127 Detection of Nonlinearly Distorted OFDM Signal... paper propose practical receiver multicarrier ... 1 0 0 0 0 0
128 Nonlinear fractal meaning of the Hubble constant according astrophysical observations value rec... 0 1 0 0 0 0
129 SEA: String Executability Analysis by Abstract... dynamic languages often employ reflection prim... 1 0 0 0 0 0
130 On the trade-off between labels and weights in... reductions transition systems recently introdu... 1 0 0 0 0 0
131 Poynting's theorem in magnetic turbulence poyntings theorem used obtain expression turbu... 0 1 0 0 0 0
132 Polar factorization of conformal and projectiv... let compact riemannian manifold let mud associ... 0 0 1 0 0 0
133 Representing numbers as the sum of squares and... examine representation numbers sum two squares... 0 0 1 0 0 0
134 Spatial Regression and the Bayesian Filter regression spatially dependent outcomes poses ... 0 0 0 1 0 0
135 Behaviour of electron content in the ionospher... one important parameters ionospheric plasma re... 0 1 0 0 0 0
136 Fractional compound Poisson processes with mul... particles undergoing anomalous diffusion diffe... 0 0 1 1 0 0
137 Zero-point spin-fluctuations of single adatoms stabilizing magnetic signal single adatoms cru... 0 1 0 0 0 0
138 Exploration-exploitation tradeoffs dictate the... study minimal model growth phenotypically hete... 0 0 0 0 1 0
139 Evaluating openEHR for storing computable repr... electronic health records ehr data generated r... 1 0 0 0 0 0
140 Optimizing Mission Critical Data Dissemination... mission critical data dissemination massive in... 1 0 0 0 0 0
141 Interference of two co-directional exclusion p... develope twospecies exclusion process distinct... 0 1 0 0 0 0
142 Gaussian fluctuations of Jack-deformed random ... introduce large class random young diagrams re... 0 0 1 0 0 0
143 Revisiting (logarithmic) scaling relations usi... explicitly compute critical exponents associat... 0 1 0 0 0 0
144 Concentration of weakly dependent Banach-value... obtain bernsteintype inequality sums banachval... 0 0 1 1 0 0
145 Evolution of the Kondo lattice electronic stru... temperaturedependent evolution kondo lattice l... 0 1 0 0 0 0
146 On A Conjecture Regarding Permutations Which D... hegarty conjectured nneq mathbbznmathbbz permu... 0 0 1 0 0 0
147 Inverse monoids and immersions of cell complexes immersion f mathcal rightarrow mathcal c cell ... 0 0 1 0 0 0
148 Not even wrong: The spurious link between biod... resolving relationship biodiversity ecosystem ... 0 0 0 0 1 0
149 Evidence of Fraud in Brazil's Electoral Campai... principle democracy people govern elected repr... 1 0 0 1 0 0
150 A Berkeley View of Systems Challenges for AI increasing commoditization computer vision spe... 1 0 0 0 0 0
151 Equivariant infinite loop space theory, I. The... rework generalize equivariant infinite loop sp... 0 0 1 0 0 0
152 Arithmetic purity of strong approximation for ... prove open subset u semisimple simply connecte... 0 0 1 0 0 0
153 Flatness results for nonlocal minimal cones an... show nonlocal minimal cones nonsingular subgra... 0 0 1 0 0 0
154 Effective Asymptotic Formulae for Multilinear ... let fldotsfk mathbbn rightarrow mathbbc multip... 0 0 1 0 0 0
155 On the apparent permeability of porous media i... apparent gas permeability porous medium import... 0 1 0 0 0 0
156 Small subgraphs and their extensions in a rand... previous papers threshold probabilities proper... 0 0 1 0 0 0
157 Increasing the Reusability of Enforcers with L... runtime enforcement effectively used improve r... 1 0 0 0 0 0
158 A Fast Interior Point Method for Atomic Norm S... atomic norm provides generalization ellnorm co... 1 0 0 0 0 0
159 Optimal Experiment Design for Causal Discovery... study problem causal structure learning set ra... 1 0 0 1 0 0
160 Economically Efficient Combined Plant and Cont... present novel datadriven nested optimization f... 1 0 0 0 0 0
161 The 10 phases of spin chains with two Ising sy... explore topological properties quantum spin ch... 0 1 0 0 0 0
162 Generalized subspace subcodes with application... codes algebraic decoding algorithm derived ree... 1 0 0 0 0 0
163 Lagrangian fibers of Gelfand-Cetlin systems motivated study nishinounoharaueda floer thoer... 0 0 1 0 0 0
164 A local ensemble transform Kalman particle fil... ensemble data assimilation methods ensemble ka... 0 1 0 1 0 0
165 Tensor Robust Principal Component Analysis wit... paper consider tensor robust principal compone... 0 0 0 1 0 0
166 Resolving the age bimodality of galaxy stellar... galaxies local universe known follow bimodal d... 0 1 0 0 0 0
167 Hidden long evolutionary memory in a model bio... introduce minimal model evolution functional p... 0 1 0 0 0 0
168 On Study of the Reliable Fully Convolutional N... handwritten string recognition still challenge... 1 0 0 0 0 0
169 Marcel Riesz on Nörlund Means note necessary sufficient conditions establish... 0 0 1 0 0 0
170 Mathematics of Isogeny Based Cryptography lectures notes written summer school mathemati... 1 0 0 0 0 0
171 Modeling of drug diffusion in a solid tumor le... shown recently changing fluidic properties dru... 0 0 0 0 1 0
172 Sensitivity analysis for inverse probability w... identify estimand missing data problems observ... 0 0 1 1 0 0
173 From 4G to 5G: Self-organized Network Manageme... paper provide analysis selforganized network m... 1 0 0 0 0 0
174 Cyber Risk Analysis of Combined Data Attacks A... understanding smart grid cyber attacks key dev... 1 0 0 0 0 0
175 A New Family of Near-metrics for Universal Sim... propose family nearmetrics based local graph d... 1 0 0 1 0 0
176 Poisoning Attacks to Graph-Based Recommender S... recommender system important component many we... 0 0 0 1 0 0
177 SU-RUG at the CoNLL-SIGMORPHON 2017 shared tas... paper describes stockholm universityuniversity... 1 0 0 0 0 0
178 Neural system identification for large populat... neuroscientists classify neurons different typ... 1 0 0 1 0 0
179 On the Deployment of Distributed Antennas for ... extremely low efficiency regarded bottleneck w... 1 0 0 0 0 0
180 A simulation technique for slurries interactin... numerical method particleladen fluids interact... 1 0 0 0 0 0
181 Dissipative hydrodynamics in superspace construct schwingerkeldysh effective field the... 0 1 0 0 0 0
182 The Two-fold Role of Observables in Classical ... observables dual nature classical quantum kine... 0 1 0 0 0 0
183 On the isoperimetric quotient over scalar-flat... let mg smooth compact riemannian manifold dime... 0 0 1 0 0 0
184 On the Spectrum of Random Features Maps of Hig... random feature maps ubiquitous modern statisti... 0 0 0 1 0 0
185 Minimum energy path calculations with Gaussian... calculation minimum energy paths transitions a... 0 1 0 1 0 0
186 Evaluating Roles of Central Users in Online Co... social media changed ways communication everyo... 1 1 0 1 0 0
187 Best polynomial approximation on the triangle let enfalphabetagamma denote error best approx... 0 0 1 0 0 0
188 SecureTime: Secure Multicast Time Synchronization due increasing dependency critical infrastruct... 1 0 0 0 0 0
189 Solving the multi-site and multi-orbital Dynam... implement efficient numerical method calculate... 0 1 0 0 0 0
190 Topologically Invariant Double Dirac States in... bulk surface electronic structures calculated ... 0 1 0 0 0 0
191 Identitas: A Better Way To Be Meaningless often recommended identifiers ontology terms s... 1 0 0 0 0 0
192 Learning from Between-class Examples for Deep ... deep learning methods achieved high performanc... 1 0 0 1 0 0
193 DAGGER: A sequential algorithm for FDR control... propose lineartime singlepass topdown algorith... 0 0 1 1 0 0
194 On nonlinear profile decompositions and scatte... paper consider hamiltonian system combining no... 0 0 1 0 0 0
195 Blockchain and human episodic memory relate concepts used decentralized ledger tech... 0 0 0 0 1 0
196 Epidemic Spreading and Aging in Temporal Netwo... timevarying network topologies deeply influenc... 1 0 0 0 1 0
197 The Shattered Gradients Problem: If resnets ar... longstanding obstacle progress deep learning p... 1 0 0 1 0 0
198 Pr$_2$Ir$_2$O$_7$: when Luttinger semimetal me... study band structure topology engineering inte... 0 1 0 0 0 0
199 A 2-edge partial inverse problem for the Sturm... boundary value problems sturmliouville operato... 0 0 1 0 0 0
200 Jastrow form of the Ground State Wave Function... topological morphologyorder zeros positions el... 0 1 0 0 0 0
201 On a common refinement of Stark units and Gros... purpose paper formulate study common refinemen... 0 0 1 0 0 0
202 An Integrated Decision and Control Theoretic S... paper considers problem autonomous multiagent ... 1 0 0 0 0 0
203 Chain effects of clean water: The Mills-Reinck... study explores validity chain effects clean wa... 0 0 0 1 1 0
204 Learning Transferable Architectures for Scalab... developing neural network image classification... 1 0 0 0 0 0
205 Fast Multi-frame Stereo Scene Flow with Motion... propose new multiframe method efficiently comp... 1 0 0 0 0 0
206 Pointed $p^2q$-dimensional Hopf algebras in po... let k algebraically closed field positive char... 0 0 1 0 0 0
207 Weak Form of Stokes-Dirac Structures and Geome... present mixed galerkin discretization distribu... 1 0 0 0 0 0
208 Clamped seismic metamaterials: Ultra-low broad... regularity earthquakes destructive power nuisa... 0 1 0 0 0 0
209 Difference analogue of second main theorems fo... paper prove difference analogue second main th... 0 0 1 0 0 0
210 An Effective Way to Improve YouTube-8M Classif... largescale datasets played significant role pr... 1 0 0 1 0 0
211 Experimental Design of a Prescribed Burn Instr... observational data collected experiments plann... 0 0 0 1 0 0
212 Seifert surgery on knots via Reidemeister tors... knot k homology sphere sigma let result qsurge... 0 0 1 0 0 0
213 Sparse mean localization by information theory sparse feature selection necessary fit statist... 0 0 0 1 0 0
214 Joint Power and Admission Control based on Cha... letter consider joint power admission control ... 1 0 1 0 0 0
215 A Closer Look at the Alpha Persei Coronal Conu... rosat survey alpha per open cluster detected b... 0 1 0 0 0 0
216 The challenge of realistic music generation: m... realistic music generation challenging task bu... 0 0 0 1 0 0
217 Interpretations of family size distributions: ... young asteroid families unique sources informa... 0 1 0 0 0 0
218 Intersections of $ω$ classes in $\overline{\ma... provide graph formula describes arbitrary mono... 0 0 1 0 0 0
219 GENFIRE: A generalized Fourier iterative recon... tomography made radical impact diverse fields ... 0 1 0 0 0 0
220 GANs Trained by a Two Time-Scale Update Rule C... generative adversarial networks gans excel cre... 1 0 0 1 0 0
221 SPIRou Input Catalog: Activity, Rotation and M... based optical highresolution spectra obtained ... 0 1 0 0 0 0
222 Objective Procedure for Reconstructing Couplin... inferring directional connectivity point proce... 0 0 0 0 1 0
223 Iteratively-Reweighted Least-Squares Fitting o... support vector machines svms important tool mo... 1 0 0 1 0 0
224 Time-Series Adaptive Estimation of Vaccination... estimating vaccination uptake integral part en... 1 0 0 1 0 0
225 Over Recurrence for Mixing Transformations show every invertible strong mixing transforma... 0 0 1 0 0 0
226 Joint Atlas-Mapping of Multiple Histological S... development mesoscale neural circuitry map com... 0 0 0 0 1 0
227 A Practical Approach for Successive Omniscience system study paper contains set users observe ... 1 0 0 0 0 0
228 Scholars on Twitter: who and how many are they? paper present novel methodology identifying sc... 1 0 0 0 0 0
229 General notions of regression depth function measure centrality point set multivariate data... 0 0 0 1 0 0
230 Photonic topological pumping through the edges... twodimensional electron gas exposed perpendicu... 0 1 0 0 0 0
231 On Scalable Inference with Stochastic Gradient... many applications involving large dataset onli... 1 0 0 1 0 0
232 The g-Good-Neighbor Conditional Diagnosability... work peng et al new measure proposed fault dia... 1 0 1 0 0 0
233 Coherence for lenses and open games categories polymorphic lenses computer science... 1 0 0 0 0 0
234 Streaming Algorithm for Euler Characteristic C... present efficient algorithm compute euler char... 1 0 1 0 0 0
235 An automata group of intermediate growth and e... give new example automata group intermediate g... 0 0 1 0 0 0
236 Tuning across the BCS-BEC crossover in the mul... crossover bardeencooperschrieffer bcs supercon... 0 1 0 0 0 0
237 GroupReduce: Block-Wise Low-Rank Approximation... model compression essential serving large deep... 0 0 0 1 0 0
238 Morphological characterization of Ge ion impla... nm thick sio layers grown si substrates ge ion... 0 1 0 0 0 0
239 Preliminary corrosion studies of IN-RAFM steel... corrosion indian rafms reduced activation ferr... 0 1 0 0 0 0
240 Magnetocapillary self-assemblies: locomotion a... paper presents overview discussion magnetocapi... 0 1 0 0 0 0
241 On asymptotically minimax nonparametric detect... problem nonparametric detection signal gaussia... 0 0 1 1 0 0
242 Bayesian Metabolic Flux Analysis reveals intra... metabolic flux balance analyses standard tool ... 0 0 0 1 0 0
243 Robust Estimation of Change-Point Location introduce robust estimator location parameter ... 0 0 1 1 0 0
244 Growing length scale accompanying the vitrific... glass forming liquids close glass transition p... 0 1 0 0 0 0
245 Many-Objective Pareto Local Search propose new pareto local search algorithm many... 1 0 0 0 0 0
246 From Natural to Artificial Camouflage: Compone... identify components bioinspired artificial cam... 1 0 0 0 1 0
247 Bayesian nonparametric inference for the M/G/1... present work study bayesian nonparametric infe... 0 0 1 1 0 0
248 On some polynomials and series of Bloch-Polya ... show qqdots qm polynomial q coefficients iff e... 0 0 1 0 0 0
249 Improvement in the UAV position estimation wit... paper develop position estimation system unman... 1 0 0 0 0 0
250 Structured low rank decomposition of multivari... study decomposition multivariate hankel matrix... 0 0 1 0 0 0
251 Linear time-periodic dynamical systems: An H2 ... linear timeperiodic ltp dynamical systems freq... 1 0 0 0 0 0
252 Software metadata: How much is enough? broad efforts underway capture metadata resear... 1 1 0 0 0 0
253 A Categorical Approach for Recognizing Emotion... recently digital music libraries developed pla... 1 0 0 1 0 0
254 Utilizing artificial neural networks to predic... one key requirement effective supply chain man... 1 0 0 1 0 0
255 Deformable Generator Network: Unsupervised Dis... propose deformable generator model disentangle... 0 0 0 1 0 0
256 Gaussian Kernel in Quantum Paradigm gaussian kernel popular kernel function used m... 1 0 0 0 0 0
257 Learning to Succeed while Teaching to Fail: Pr... security privacy fairness become critical era ... 1 0 0 1 0 0
258 Performance of Energy Harvesting Receivers wit... difficulty modeling energy consumption communi... 1 0 0 0 0 0
259 On Convergence Rate of a Continuous-Time Distr... paper studies recently proposed continuoustime... 0 0 1 0 0 0
260 Closing the loop on multisensory interactions:... brain receives input multiple sensory systems ... 0 0 0 0 1 0
261 Block CUR: Decomposing Matrices using Groups o... common problem largescale data analysis approx... 1 0 0 1 0 0
262 Synchronous Observation on the Spontaneous Tra... unusually high surface tension room temperatur... 0 1 0 0 0 0
263 Continuously tempered Hamiltonian Monte Carlo hamiltonian monte carlo hmc powerful markov ch... 0 0 0 1 0 0
264 Automated Synthesis of Safe Digital Controller... present new method automated synthesis digital... 1 0 0 0 0 0
265 Magnus integrators on multicore CPUs and GPUs present paper consider numerical methods solve... 1 1 0 0 0 0
266 High Dimensional Estimation and Multi-Factor M... paper reinvestigates estimation multiple facto... 0 0 0 1 0 1
267 Scaling Law for Three-body Collisions in Ident... experimentally confirmed threshold behavior sc... 0 1 0 0 0 0
268 An Expanded Local Variance Gamma model paper proposes expanded version local variance... 0 0 0 0 0 1
269 An attentive neural architecture for joint seg... processing human produced text using natural l... 1 0 0 0 0 0
270 Multilevel maximum likelihood estimation with ... asymptotic variance maximum likelihood estimat... 0 0 1 1 0 0
271 Auto-Meta: Automated Gradient Based Meta Learn... fully automating machine learning pipelines on... 0 0 0 1 0 0
272 Convergence of the Forward-Backward Algorithm:... provide comprehensive study convergence forwar... 0 0 1 1 0 0
273 Calibration-Free Relaxation-Based Multi-Color ... magnetic particle imaging mpi novel imaging mo... 0 1 0 0 0 0
274 Neural Machine Translation draft textbook chapter neural machine translat... 1 0 0 0 0 0
275 On algebraically integrable domains in Euclide... let bounded domain mathbb rn infinitely smooth... 0 0 1 0 0 0
276 Vocabulary-informed Extreme Value Learning novel unseen classes formulated extreme values... 1 0 1 1 0 0
277 Cross-layer optimized routing with low duty cy... paper study performance two crosslayer optimiz... 1 0 0 0 0 0
278 A Team-Formation Algorithm for Faultline Minim... recent years proliferation online resumes need... 1 0 0 0 0 0
279 A Survey of Model Compression and Acceleration... deep convolutional neural networks cnns recent... 1 0 0 0 0 0
280 Non-Parametric Calibration of Probabilistic Re... task calibration retrospectively adjust output... 0 0 0 1 0 0
281 Cyclotron resonant scattering feature simulati... cyclotron resonant scattering features crsfs f... 0 1 0 0 0 0
282 New quantum mds constacylıc codes paper devoted study construction new quantum m... 1 0 0 0 0 0
283 Infinitary first-order categorical logic present unified categorical treatment complete... 0 0 1 0 0 0
284 Stochastic Gradient Monomial Gamma Sampler recent advances stochastic gradient techniques... 1 0 0 1 0 0
285 Gini estimation under infinite variance study problems related estimation gini index p... 0 0 0 1 0 0
286 Training Neural Networks Using Features Replay training neural network using backpropagation ... 0 0 0 1 0 0
287 The anti-spherical category study diagrammatic categorification antispheri... 0 0 1 0 0 0
288 Trajectories and orbital angular momentum of n... recently predicted modulation instability opti... 0 1 0 0 0 0
289 Unified Treatment of Spin Torques using a Coup... threedimensional spin current solver based gen... 0 1 0 0 0 0
290 A XGBoost risk model via feature selection and... paper aims explore models based extreme gradie... 1 0 0 1 0 0
291 Rheology of High-Capillary Number Flow in Poro... immiscible fluids flowing high capillary numbe... 0 1 0 0 0 0
292 Quantum Charge Pumps with Topological Phases i... quantum charge pumping phenomenon connects ban... 0 1 0 0 0 0
293 On Deep Neural Networks for Detecting Heart Di... heart disease leading cause death experts esti... 1 0 0 1 0 0
294 Exponential Stability Analysis via Integral Qu... theory integral quadratic constraints iqcs all... 1 0 1 0 0 0
295 Fermi acceleration of electrons inside foresho... foreshock transients upstream earths bow shock... 0 1 0 0 0 0
296 Quantum Speed Limit is Not Quantum quantum speed limit qsl energytime uncertainty... 0 1 0 0 0 0
297 Adaptive Diffusion Processes of Time-Varying L... paper mainly discusses diffusion complex netwo... 1 0 0 0 0 0
298 ACVAE-VC: Non-parallel many-to-many voice conv... paper proposes nonparallel manytomany voice co... 1 0 0 1 0 0
299 Spectral analysis of jet turbulence informed les data resolvent analysis mean flow... 0 1 0 0 0 0
300 A dual framework for low-rank tensor completion one popular approaches lowrank tensor completi... 1 0 0 1 0 0
301 La notion d'involution dans le Brouillon Proje... nous tentons dans cet article de proposer une ... 0 0 1 0 0 0
302 Framing U-Net via Deep Convolutional Framelets... xray computed tomography ct using sparse proje... 1 0 0 1 0 0
303 Lie $\infty$-algebroids and singular foliations singular hermann foliation smooth manifold see... 0 0 1 0 0 0
304 Distinct evolutions of Weyl fermion quasiparti... weyl semimetal phase recently discovered topol... 0 1 0 0 0 0
305 Assessing inter-modal and inter-regional depen... sequence pathological changes takes place alzh... 0 0 0 1 1 0
306 On the economics of knowledge creation and sha... work bridges technical concepts underlying dis... 1 0 0 0 0 0
307 Seismic fragility curves for structures using ... fragility curves commonly used civil engineeri... 0 0 0 1 0 0
308 Metastable Markov chains: from the convergence... consider continuoustime markov chains display ... 0 0 1 0 0 0
309 Construction of embedded periodic surfaces in ... construct embedded minimal surfaces nperiodic ... 0 0 1 0 0 0
310 A System of Three Super Earths Transiting the ... report discovery three small transiting planet... 0 1 0 0 0 0
311 State Sum Invariants of Three Manifolds from S... define family quantum invariants closed orient... 0 1 1 0 0 0
312 Sparse Neural Networks Topologies propose sparse neural network architectures ba... 1 0 0 1 0 0
313 Human perception in computer vision computer vision made remarkable progress recen... 1 0 0 0 0 0
314 Analyses and estimation of certain design para... numerical analysis heat conduction cover plate... 0 1 0 0 0 0
315 Merge decompositions, two-sided Krohn-Rhodes, ... paper provides short proofs two fundamental th... 1 0 1 0 0 0
316 Deep Multimodal Image-Repurposing Detection nefarious actors social media platforms often ... 1 0 0 0 0 0
317 DeepFense: Online Accelerated Defense Against ... recent advances adversarial deep learning dl o... 1 0 0 1 0 0
318 Retrospective Higher-Order Markov Processes fo... users form information trails browse web check... 1 0 0 1 0 0
319 Frank-Wolfe with Subsampling Oracle analyze two novel randomized variants frankwol... 0 0 0 1 0 0
320 A mean value formula and a Liouville theorem f... paper prove mean value formula bounded subharm... 0 0 1 0 0 0
321 Bayesian Image Quality Transfer with CNNs: Exp... work investigate value uncertainty modeling su... 1 0 0 0 0 0
322 Yu-Shiba-Rusinov bands in superconductors in c... superconductorferromagnet sf heterostructures ... 0 1 0 0 0 0
323 Bayesian Optimization for Probabilistic Programs present first general purpose framework margin... 1 0 0 1 0 0
324 Long-Term Load Forecasting Considering Volatil... longterm load forecasting plays vital role uti... 0 0 0 1 0 0
325 Geometrically stopped Markovian random growth ... many empirical studies document power law beha... 0 0 1 0 0 0
326 Mathematics of Topological Quantum Computing topological quantum computing information enco... 0 1 1 0 0 0
327 Graph Clustering using Effective Resistance defveccboldsymbol design polynomial time algor... 1 0 0 0 0 0
328 Self-supervised learning: When is fusion of th... selfsupervised learning ssl reliable learning ... 1 0 0 0 0 0
329 Playing Atari with Six Neurons deep reinforcement learning atari games maps p... 0 0 0 1 0 0
330 Contraction and uniform convergence of isotoni... consider problem isotonic regression underlyin... 0 0 1 1 0 0
331 A Systematic Approach for Exploring Tradeoffs ... heating ventilation cooling hvac systems often... 1 0 0 0 0 0
332 On types of degenerate critical points of real... paper consider problem identifying type local ... 0 0 1 0 0 0
333 Contribution of Data Categories to Readmission... identification patients high risk readmission ... 0 0 0 0 1 0
334 Tropical recurrent sequences tropical recurrent sequences introduced satisf... 1 0 0 0 0 0
335 Invariance of Weight Distributions in Rectifie... interesting approach analyzing neural networks... 1 0 0 1 0 0
336 Learning to Adapt by Minimizing Discrepancy explore whether useful temporal neural generat... 1 0 0 1 0 0
337 Incarnation of Majorana Fermions in Kitaev Qua... kitaev quantum spin liquid topological magneti... 0 1 0 0 0 0
338 Haro 11: Where is the Lyman continuum source? identifying mechanism high energy lyman contin... 0 1 0 0 0 0
339 Typed Closure Conversion for the Calculus of C... dependently typed languages coq used specify v... 1 0 0 0 0 0
340 Untangling Planar Curves generic closed curve plane transformed simple ... 1 0 1 0 0 0
341 Greedy-Merge Degrading has Optimal Power-Law consider channel given input distribution aim ... 1 0 1 0 0 0
342 Radially distributed values and normal families let l l two distinct rays emanating origin let... 0 0 1 0 0 0
343 Characterizing Exoplanet Habitability habitable exoplanet world maintain stable liqu... 0 1 0 0 0 0
344 Deep Learning for Classification Tasks on Geos... paper evaluate accuracy deep learning approach... 0 0 0 1 0 0
345 The Distance Standard Deviation distance standard deviation arises distance co... 0 0 1 1 0 0
346 Combining learned and analytical models for pr... one basic skills robot possess predicting effe... 1 0 0 0 0 0
347 Leavitt path algebras: Graded direct-finitenes... paper give complete characterization leavitt p... 0 0 1 0 0 0
348 Ensemble Estimation of Mutual Information derive mean squared error convergence rates ke... 1 0 1 1 0 0
349 Social media mining for identification and exp... widespread use social media led generation sub... 1 0 0 0 0 0
350 The vortex method for 2D ideal flows in the ex... vortex method common numerical theoretical app... 0 0 1 0 0 0
351 Neeman's characterization of K(R-Proj) via Bou... let r associative ring unit denote krm r mboxp... 0 0 1 0 0 0
352 Qualification Conditions in Semi-algebraic Pro... arbitrary finite family semialgebraicdefinable... 0 0 1 0 0 0
353 Curvature in Hamiltonian Mechanics And The Ein... riemannian geometry particular case hamiltonia... 0 0 1 0 0 0
354 End-to-End Navigation in Unknown Environments ... investigate neural network learn perception ac... 1 0 0 0 0 0
355 A Combinatorial Approach to the Opposite Bi-Fr... paper present combinatorial approach opposite ... 0 0 1 0 0 0
356 Roche-lobe overflow in eccentric planet-star s... many giant exoplanets found near roche limit m... 0 1 0 0 0 0
357 A short-orbit spectrometer for low-energy pion... new shortorbit spectrometer sos constructed in... 0 1 0 0 0 0
358 A one-dimensional model for water desalination... capacitive deionization cdi fastemerging water... 1 1 0 0 0 0
359 Deep Learning Scooping Motion using Bilateral ... present bilateral teleoperation system task le... 1 0 0 0 0 0
360 XFlow: 1D-2D Cross-modal Deep Neural Networks ... propose two multimodal deep learning architect... 1 0 0 1 0 0
361 Making Sense of Physics through Stories: High ... educational research shown narratives useful t... 0 1 0 0 0 0
362 Preventing Hospital Acquired Infections Throug... hospital acquired infections hai infections ac... 1 0 0 0 0 0
363 OpenML Benchmarking Suites and the OpenML100 advocate use curated comprehensive benchmark s... 1 0 0 1 0 0
364 On orbifold constructions associated with the ... article study orbifold constructions associate... 0 0 1 0 0 0
365 From mindless mathematics to thinking meat? deconstruction theme fqxi essay contest alread... 0 1 0 0 0 0
366 Phase correction for ALMA - Investigating wate... atacama large millimetresubmillimetre array al... 0 1 0 0 0 0
367 On the $μ$-ordinary locus of a Shimura variety paper study muordinary locus shimura variety p... 0 0 1 0 0 0
368 Scatteract: Automated extraction of data from ... charts excellent way convey patterns trends da... 1 0 0 1 0 0
369 When the Universe Expands Too Fast: Relentless... consider modification standard cosmological hi... 0 1 0 0 0 0
370 Polygons with prescribed edge slopes: configur... describe configuration space mathbfs polygons ... 0 0 1 0 0 0
371 An Asymptotically Efficient Metropolis-Hasting... paper discusses metropolishastings algorithm d... 0 0 0 1 0 0
372 When Streams of Optofluidics Meet the Sea of Life luke p lee tan chin tuan centennial professor ... 0 0 0 0 1 0
373 L lines, C points and Chern numbers: understan... topology appeared different physical contexts ... 0 1 0 0 0 0
374 Willis Theory via Graphs study scale tidy subgroups endomorphism totall... 0 0 1 0 0 0
375 The Effect of Site-Specific Spectral Densities... coupled excitonvibrational dynamics threesite ... 0 1 0 0 0 0
376 Space dependent adhesion forces mediated by tr... first part work show convergence respect asymp... 0 0 1 0 0 0
377 On the nonparametric maximum likelihood estima... study nonparametric maximum likelihood estimat... 0 0 1 1 0 0
378 Gravitational wave production from preheating:... parametric resonance among efficient phenomena... 0 1 0 0 0 0
379 IP determination and 1+1 REMPI spectrum of SiO... rempi spectrum sio nm range recorded observed ... 0 1 0 0 0 0
380 Adaptive Model Predictive Control for High-Acc... robots automated systems increasingly introduc... 1 0 0 0 0 0
381 An enhanced method to compute the similarity b... use ontologies several domains semantic web in... 1 0 0 0 0 0
382 Eigenvalues of symmetric tridiagonal interval ... short note present novel method computing exac... 1 0 0 0 0 0
383 PRE-render Content Using Tiles (PRECUT). 1. La... visualizing complex network computationally in... 1 0 0 0 0 0
384 The list chromatic number of graphs with small... prove every trianglefree graph maximum degree ... 0 0 1 0 0 0
385 Topology of Large-Scale Structures of Galaxies... study twodimensional topology galactic distrib... 0 1 0 0 0 0
386 Wiki-index of authors popularity new index authors popularity estimation repres... 1 0 0 0 0 0
387 Belyi map for the sporadic group J1 compute genus belyi map sporadic janko group j... 0 0 1 0 0 0
388 Convolution Semigroups of Probability Measures... goal find classes convolution semigroups lie g... 0 0 1 0 0 0
389 Toward Optimal Coupon Allocation in Social Net... cmo council reports internet users us influenc... 1 0 0 0 0 0
390 Lefschetz duality for intersection (co)homology prove lefschetz duality intersection cohomolog... 0 0 1 0 0 0
391 Empirical determination of the optimum attack ... possible removals n nodes networks size n perf... 1 0 0 0 0 0
392 Stochastic Non-convex Optimization with Strong... paper study stochastic nonconvex optimization ... 1 0 0 1 0 0
393 On the optimality and sharpness of Laguerre's ... lower bounds smallest eigenvalue symmetric pos... 1 0 1 0 0 0
394 Attitude Control of a 2U Cubesat by Magnetic a... paper describes development magnetic attitude ... 0 0 1 0 0 0
395 Random Forests, Decision Trees, and Categorica... one advantage decision tree based methods like... 1 0 0 1 0 0
396 Temporal correlation detection using computati... decades conventional computers based von neuma... 1 0 0 0 0 0
397 Complexity and capacity bounds for quantum cha... generalise wellknown graph parameters operator... 0 0 1 0 0 0
398 Quantum Interference of Glory Rescattering in ... ionization atoms irradiated linearly polarized... 0 1 0 0 0 0
399 On vector measures and extensions of transfunc... interested extending operators defined positiv... 0 0 1 0 0 0
400 Deep Within-Class Covariance Analysis for Robu... convolutional neural networks cnns learn effec... 1 0 0 0 0 0
401 Efficient Online Bandit Multiclass Learning wi... present efficient secondorder algorithm tildeo... 0 0 0 1 0 0
402 Local Communication Protocols for Learning Com... swarm systems constitute challenging problem r... 1 0 0 1 0 0
403 Towards exascale real-time RFI mitigation describe design implementation extremely scala... 0 1 0 0 0 0
404 Learning body-affordances to simplify action s... controlling embodied agents many actuated degr... 1 0 0 0 0 0
405 Cayley properties of the line graphs induced b... let n k fracn integers paper investigate algeb... 0 0 1 0 0 0
406 Beyond the technical challenges for deploying ... recently software development companies starte... 1 0 0 1 0 0
407 Class-Splitting Generative Adversarial Networks generative adversarial networks gans produce s... 0 0 0 1 0 0
408 Dynamical system analysis of dark energy model... study phase space dynamics cosmological models... 0 1 0 0 0 0
409 J-MOD$^{2}$: Joint Monocular Obstacle Detectio... work propose endtoend deep architecture jointl... 1 0 0 0 0 0
410 The Calabi flow with rough initial data paper prove exists dimensional constant delta ... 0 0 1 0 0 0
411 Star Formation Activity in the molecular cloud... probe starformation sf processes present resul... 0 1 0 0 0 0
412 Oblivious Routing via Random Walks present novel oblivious routing algorithms spl... 1 0 0 0 0 0
413 On Functional Graphs of Quadratic Polynomials study functional graphs generated quadratic po... 0 0 1 0 0 0
414 Helmholtz decomposition theorem and Blumenthal... helmholtz decomposition theorem vector fields ... 0 1 0 0 0 0
415 A homotopy decomposition of the fibre of the s... use richters primary proof grays conjecture gi... 0 0 1 0 0 0
416 Spaces of orders of some one-relator groups show certain orderable groups admit isolated l... 0 0 1 0 0 0
417 Adversarial Attacks on Neural Network Policies machine learning classifiers known vulnerable ... 1 0 0 1 0 0
418 Stellar streams as gravitational experiments I... tidal streams disrupting dwarf galaxies orbiti... 0 1 0 0 0 0
419 Tuning quantum non-local effects in graphene p... response electron system electromagnetic field... 0 1 0 0 0 0
420 Flows along arch filaments observed in the GRI... new generation solar instruments provides impr... 0 1 0 0 0 0
421 Rethinking Information Sharing for Actionable ... past decade information security threat landsc... 1 0 0 0 0 0
422 More new classes of permutation trinomials ove... permutation polynomials finite fields wide app... 0 0 1 0 0 0
423 Distributive Aronszajn trees bendavid shelah proved lambda singular strongl... 0 0 1 0 0 0
424 Analytical solutions for the radial Scarf II p... real scarf ii potential discussed radial probl... 0 1 0 0 0 0
425 Gated Multimodal Units for Information Fusion paper presents novel model multimodal learning... 0 0 0 1 0 0
426 Why Condorcet Consistency is Essential single winner election several candidates rank... 0 0 0 1 0 0
427 Birefringence induced by pp-wave modes in an e... framework einsteinmaxwellaether theory study b... 0 1 0 0 0 0
428 On generalizations of $p$-sets and their appli... pset simple analytic form well distributed uni... 1 0 1 0 0 0
429 Robot human interface for housekepeer with wir... paper presents design implementation human int... 1 0 0 0 0 0
430 Modified Frank-Wolfe Algorithm for Enhanced Sp... work proposes new algorithm training reweighte... 1 0 0 1 0 0
431 Multi-Task Domain Adaptation for Deep Learning... learningbased approaches robotic manipulation ... 1 0 0 0 0 0
432 Bounded Depth Ascending HNN Extensions and $π_... ended finitely presented group semistable fund... 0 0 1 0 0 0
433 AirSim: High-Fidelity Visual and Physical Simu... developing testing algorithms autonomous vehic... 1 0 0 0 0 0
434 Hausdorff dimensions in $p$-adic analytic groups let g finitely generated prop group equipped p... 0 0 1 0 0 0
435 Real-time brain machine interaction via social... brainmachine interaction bmi system motivates ... 1 0 0 0 0 0
436 City-Scale Road Audit System using Deep Learning road networks cities massive critical componen... 1 0 0 0 0 0
437 Mass and moment of inertia govern the transiti... letter study motion wakepatterns freely rising... 0 1 0 0 0 0
438 It Takes Two to Tango: Towards Theory of AI's ... theory mind ability attribute mental states be... 1 0 0 0 0 0
439 On variation of dynamical canonical heights, a... study families varieties endowed polarized can... 0 0 1 0 0 0
440 Enhancing the Spectral Hardening of Cosmic TeV... largescale extragalactic magnetic fields may i... 0 1 0 0 0 0
441 Forecasting in the light of Big Data predicting future state system always natural ... 0 1 0 0 0 0
442 Adelic point groups of elliptic curves show elliptic curve e defined number field k g... 0 0 1 0 0 0
443 Position Aided Beam Alignment for Millimeter W... wireless backhaul communication recently reali... 1 0 1 0 0 0
444 Deep & Cross Network for Ad Click Predictions feature engineering key success many predictio... 1 0 0 1 0 0
445 Fan-type spin structure in uni-axial chiral ma... investigate spin structure uniaxial chiral mag... 0 1 0 0 0 0
446 Rotation of a synchronous viscoelastic shell several natural satellites giant planets shown... 0 1 0 0 0 0
447 Direct estimation of density functionals using... number fundamental quantities statistical sign... 1 0 0 1 0 0
448 Experimental Evidence on a Refined Conjecture ... let emathbbq elliptic curve level n rank equal... 0 0 1 0 0 0
449 The Tu--Deng Conjecture holds almost surely tudeng conjecture concerned sum digits wn n ba... 1 0 1 0 0 0
450 Convergence Analysis of the Dynamics of a Spec... paper made extension convergence analysis dyna... 1 0 0 1 0 0
451 From bare interactions, low--energy constants ... progress along line ref phys rev bf functional... 0 1 0 0 0 0
452 EgoCap: Egocentric Marker-less Motion Capture ... markerbased markerless optical skeletal motion... 1 0 0 0 0 0
453 Diffusion Maps meet Nyström diffusion maps emerging datadriven technique n... 0 0 0 1 0 0
454 Multiphase Flows of N Immiscible Incompressibl... present set effective outflowopen boundary con... 0 1 0 0 0 0
455 Deadly dark matter cusps vs faint and extended... recent detection two faint extended star clust... 0 1 0 0 0 0
456 Mutual Information, Relative Entropy and Estim... fundamental relations information estimation e... 1 0 0 0 0 0
457 Testing redMaPPer centring probabilities using... galaxy cluster centring key issue precision co... 0 1 0 0 0 0
458 Criterion of positivity for semilinear problem... goal article provide useful criterion positivi... 0 0 1 0 0 0
459 Axiomatic quantum mechanics: Necessity and ben... ongoing progress quantum theory emphasizes cru... 0 1 0 0 0 0
460 Kinetic modelling of competition and depletion... nonconding rnas play key role posttranscriptio... 0 0 0 0 1 0
461 Shortening binary complexes and commutativity ... show graysons model higher algebraic ktheory u... 0 0 1 0 0 0
462 Cost-Effective Seed Selection in Online Social... study mincost seed selection problem online so... 1 0 0 0 0 0
463 Fast Meta-Learning for Adaptive Hierarchical C... propose new splitting criterion metalearning a... 1 0 0 1 0 0
464 Vibrational Density Matrix Renormalization Group variational approaches calculation vibrational... 0 1 0 0 0 0
465 Identification and Off-Policy Learning of Mult... work present methodology enables agent make ef... 1 0 0 0 0 0
466 Non-Asymptotic Analysis of Fractional Langevin... recent studies diffusionbased sampling methods... 1 0 0 1 0 0
467 Spoken English Intelligibility Remediation wit... use automatic speech recognition assess spoken... 1 0 0 1 0 0
468 Second-Order Analysis and Numerical Approximat... consider bilinear optimal control problems who... 0 0 1 0 0 0
469 On the letter frequencies and entropy of writt... carry comprehensive analysis letter frequencie... 1 0 0 0 0 0
470 Robust Orchestration of Concurrent Application... hybrid mobilefixed device cloud harnesses sens... 1 0 0 0 0 0
471 Anisotropy and multiband superconductivity in ... despite numerous studies exact nature order pa... 0 1 0 0 0 0
472 Time-Reversal Breaking in QCD$_4$, Walls, and ... study sun quantum chromodynamics qcd dimension... 0 1 0 0 0 0
473 Comparative Investigation of the High Pressure... investigation autoignition delay butanol isome... 0 1 0 0 0 0
474 Selecting optimal minimum spanning trees that ... choi et al introduced minimum spanning tree ms... 1 0 1 0 0 0
475 Noisy Natural Gradient as Variational Inference variational bayesian neural nets combine flexi... 1 0 0 1 0 0
476 A Game of Life on Penrose tilings define rules cellular automata played quasiper... 0 1 1 0 0 0
477 Single and Multiple Vortex Rings in Three-Dime... present work explore existence stability dynam... 0 1 0 0 0 0
478 Dimension-free Wasserstein contraction of nonl... class partially observed diffusions sufficient... 0 0 1 1 0 0
479 Vortex Nucleation Limited Mobility of Free Ele... study motion electron bubble zero temperature ... 0 1 0 0 0 0
480 Radio variability and non-thermal components i... present new jvla multifrequency measurements s... 0 1 0 0 0 0
481 Sequential testing for structural stability in... develop online monitoring procedure detect cha... 0 0 0 1 0 0
482 Susceptibility Propagation by Using Diagonal C... susceptibility propagation constructed combini... 0 0 1 1 0 0
483 Performance Analysis of Ultra-Dense Networks w... paper analyzes downlink performance ultradense... 1 0 0 0 0 0
484 Learning to Drive in a Day demonstrate first application deep reinforceme... 1 0 0 1 0 0
485 Strong-coupling of WSe2 in ultra-compact plasm... strongcoupling monolayer metal dichalcogenide ... 0 1 0 0 0 0
486 Stigmergy-based modeling to discover urban act... positioning data offer remarkable source infor... 1 1 0 0 0 0
487 BiHom-Lie colour algebras structures bihomlie colour algebra generalized homlie col... 0 0 1 0 0 0
488 Clustering of Gamma-Ray bursts through kernel ... consider problem related clustering gammaray b... 0 1 0 1 0 0
489 Bounded gaps between primes in short intervals baker harman pintz showed weak form prime numb... 0 0 1 0 0 0
490 Handover analysis of the Improved Phantom Cells improved phantom cell new scenario introduced ... 1 0 0 0 0 0
491 Bayesian Joint Topic Modelling for Weakly Supe... address problem localisation objects bounding ... 1 0 0 0 0 0
492 Psychological model of the investor and manage... people make risky decisions everyday life know... 0 0 0 0 0 1
493 Constraints on Super-Earths Interiors from Ste... modeling interior exoplanets essential go conc... 0 1 0 0 0 0
494 Software correlator for Radioastron mission paper discuss characteristics operation astro ... 0 1 0 0 0 0
495 Isogenies for point counting on genus two hype... schoofs classic algorithm allows pointcounting... 1 0 1 0 0 0
496 On the self-duality of rings of integers in ta... let lk tame galois extension number fields gro... 0 0 1 0 0 0
497 Forecasting Transformative AI: An Expert Survey transformative ai technologies potential resha... 1 0 0 0 0 0
498 Change of grading, injective dimension and dua... let gh groups phi g rightarrow h group morphis... 0 0 1 0 0 0
499 Approximately certifying the restricted isomet... matrix said possess restricted isometry proper... 1 0 0 0 0 0
500 A compact design for velocity-map imaging ener... present compact design velocitymap imaging spe... 0 1 0 0 0 0
501 Multiset Combinatorial Batch Codes batch codes first introduced ishai kushilevitz... 1 0 1 0 0 0
502 Thermoelectric Cooperative Effect in Three-Ter... energy efficiency power threeterminal thermoel... 0 1 0 0 0 0
503 DeepSaucer: Unified Environment for Verifying ... recent years number methods verifying dnns dev... 1 0 0 0 0 0
504 Checklists to Support Test Charter Design in E... exploratory testing sessions tester simultaneo... 1 0 0 0 0 0
505 Fast non-destructive parallel readout of neutr... demonstrate parallel nondestructive readout hy... 0 1 0 0 0 0
506 Binaural Source Localization based on Modulati... work apply amplitude modulation spectrum ams f... 1 0 0 0 0 0
507 Dynamic Shrinkage Processes propose novel class dynamic shrinkage processe... 0 0 0 1 0 0
508 A Multiple Source Framework for the Identifica... monitoring lifestyles may performed based syst... 1 0 0 0 0 0
509 Maximum likelihood estimators based on the blo... extreme value index fundamental parameter univ... 0 0 1 1 0 0
510 Hipsters on Networks: How a Small Group of Ind... spread opinions memes diseases alternative fac... 1 1 0 0 0 0
511 Optimal Identity Testing with High Probability study problem testing identity given distribut... 1 0 1 1 0 0
512 Handling state space explosion in verification... componentbased design different way constructi... 1 0 1 0 0 0
513 A Framework for Relating the Structures and Re... dust devils likely dominant source dust martia... 0 1 0 0 0 0
514 Investigation on different physical aspects su... help first principles calculation method based... 0 1 0 0 0 0
515 Optimal Envelope Approximation in Fourier Basi... lowpass envelope approximation smooth continuo... 1 0 0 0 0 0
516 The curl operator on odd-dimensional manifolds study spectral properties curl linear differen... 0 0 1 0 0 0
517 Topology optimization for transient response o... paper presents topology optimization framework... 0 1 1 0 0 0
518 Generalized Lambert series and arithmetic natu... pointed generalized lambert series displaystyl... 0 0 1 0 0 0
519 Perfect phylogenies via branchings in acyclic ... motivated applications cancer genomics followi... 1 0 1 0 0 0
520 Towards a Service-oriented Platform for Intell... smart cities growing trend many cities argenti... 1 0 0 0 0 0
521 Fully Bayesian Estimation Under Informative Sa... bayesian estimation increasingly popular perfo... 0 0 1 1 0 0
522 Bistable reaction equations with doubly nonlin... reactiondiffusion equations appear biology che... 0 0 1 0 0 0
523 Static Free Space Detection with Laser Scanner... drivable free space information vital autonomo... 1 0 0 0 0 0
524 Proactive Edge Computing in Latency-Constraine... paper fundamental problem distribution proacti... 1 0 0 0 0 0
525 Deuterium fractionation and H2D+ evolution in ... highmass stars expected form dense prestellar ... 0 1 0 0 0 0
526 Experimental data over quantum mechanics simul... lennardjones lj potential cornerstone molecula... 0 1 0 1 0 0
527 Ensemble Sampling thompson sampling emerged effective heuristic ... 1 0 0 1 0 0
528 Failures of Gradient-Based Deep Learning recent years deep learning become goto solutio... 1 0 0 1 0 0
529 Searching for the Transit of the Earth--mass e... proxima centauri known closest star sun recent... 0 1 0 0 0 0
530 A Data-Driven Sparse-Learning Approach to Mode... paper propose optimizationbased sparse learnin... 1 0 0 0 0 0
531 Parity-Forbidden Transitions and Their Impacts... using densityfunctional theory calculations an... 0 1 0 0 0 0
532 Identification of microRNA clusters cooperativ... micrornas play important roles many biological... 0 0 0 0 1 0
533 A Belief Propagation Algorithm for Multipath-B... present simultaneous localization mapping slam... 1 0 0 0 0 0
534 Local methods for blocks of finite simple groups survey old new results modular representation ... 0 0 1 0 0 0
535 Motion Planning for a Humanoid Mobile Manipula... high redundant nonholonomic humanoid mobile du... 1 0 0 0 0 0
536 End-to-end Planning of Fixed Millimeter-Wave N... article discusses framework support design end... 1 0 1 0 0 0
537 A giant planet undergoing extreme ultraviolet ... amount ultraviolet irradiation ablation experi... 0 1 0 0 0 0
538 Characterizing videos, audience and advertisin... online video services messaging systems games ... 1 0 0 0 0 0
539 Vanishing theorems for the negative K-theory o... prove homotopy algebraic ktheory tame quasidm ... 0 0 1 0 0 0
540 Gravitational radiation from compact binary sy... screened modified gravity smg kind scalartenso... 0 1 0 0 0 0
541 weedNet: Dense Semantic Weed Classification Us... selective weed treatment critical step autonom... 1 0 0 0 0 0
542 An explicit determination of the $K$-theoretic... let gwidehatsl denote affine kacmoody group as... 0 0 1 0 0 0
543 The Correct Application of Variance Concept in... existing measurement theory interprets varianc... 0 0 1 1 0 0
544 A Generalized Framework for the Estimation of ... researchers often interested analyzing conditi... 0 0 0 1 0 0
545 Spherical Functions on Riemannian Symmetric Sp... paper deals simple results spherical functions... 0 0 1 0 0 0
546 Modular curves with infinitely many cubic points study determine modular curves xn admit infini... 0 0 1 0 0 0
547 Semi-Analytical Perturbative Approaches to Thi... framework multibody dynamics successive encoun... 0 1 0 0 0 0
548 Robust and Imperceptible Adversarial Attacks ... capsule networks envision innovative point vie... 1 0 0 1 0 0
549 Thermophoretic MHD Flow and Non-linear Radiati... effects mhd boundary layer flow nonlinear ther... 0 1 0 0 0 0
550 Resting-state ASL : Toward an optimal sequence... restingstate functional arterial spin labeling... 0 0 0 0 1 0
551 Learning Neural Models for End-to-End Clustering propose novel endtoend neural network architec... 0 0 0 1 0 0
552 Anisotropic exchange and spin-wave damping in ... collective magnetic excitations spinorbit mott... 0 1 0 0 0 0
553 Anomalous transport properties in Nb/Bi1.95Sb0... report proximity induced anomalous transport b... 0 1 0 0 0 0
554 State-dependent Priority Scheduling for Networ... networked control systems ncs attracted consid... 1 0 0 0 0 0
555 Deformation conditions for pseudorepresentations given property representations satisfying basi... 0 0 1 0 0 0
556 Adaptive local surface refinement based on LR ... novel adaptive local surface refinement techni... 1 0 0 0 0 0
557 Approximate Program Smoothing Using Mean-Varia... paper introduces general method approximate co... 1 0 0 0 0 0
558 Trusted Multi-Party Computation and Verifiable... largescale computational experiments often run... 1 0 0 0 0 0
559 Empirical analysis of non-linear activation fu... provide overview several nonlinear activation ... 1 0 0 1 0 0
560 A Survey of Deep Learning Techniques for Mobil... advancements deep learning years attracted res... 1 0 0 0 0 0
561 Design of the Artificial: lessons from the bio... desire fascination intelligent machines dates ... 1 1 0 0 0 0
562 Continuum of quantum fluctuations in a three-d... conventional crystalline magnets characterized... 0 1 0 0 0 0
563 SimProp v2r4: Monte Carlo simulation code for ... introduce new version simprop monte carlo code... 0 1 0 0 0 0
564 Non-negative Matrix Factorization via Archetyp... given collection data points nonnegative matri... 1 0 0 0 0 0
565 Muon Reconstruction in the Daya Bay Water Pools muon reconstruction daya bay water pools would... 0 1 0 0 0 0
566 Improving Foot-Mounted Inertial Navigation Thr... present method improve accuracy footmounted ze... 1 0 0 0 0 0
567 An Extended Low Fat Allocator API and Applicat... primary function memory allocators allocate de... 1 0 0 0 0 0
568 Exoplanet Atmosphere Retrieval using Multifrac... extend databased modelfree multifractal method... 0 1 0 1 0 0
569 Permutation Tests for Infection Graphs formulate analyze novel hypothesis testing pro... 1 0 1 1 0 0
570 A novel distribution-free hybrid regression mo... work motivated particular problem modern paper... 0 0 0 1 0 0
571 Exploring deep learning as an event classifica... telescopes based imaging atmospheric cherenkov... 0 1 0 0 0 0
572 Photo-Induced Bandgap Renormalization Governs ... transition metal dichalcogenides tmds emerging... 0 1 0 0 0 0
573 Improved Quantile Regression Estimators when t... classical regression model usually assumed exp... 0 0 1 1 0 0
574 Language Modeling by Clustering with Word Embe... present clusteringbased language model using w... 1 0 0 0 0 0
575 Discriminant circle bundles over local models ... study special circle bundles two elementary mo... 0 1 1 0 0 0
576 Far-field theory for trajectories of magnetic ... report method control positions ellipsoidal ma... 0 1 0 0 0 0
577 On M-functions associated with modular forms let f primitive cusp form weight k level n let... 0 0 1 0 0 0
578 Learning Graph Representations by Dendrograms hierarchical graph clustering common technique... 1 0 0 1 0 0
579 Slow and Long-ranged Dynamical Heterogeneities... twodimensional bidisperse granular fluid shown... 0 1 0 0 0 0
580 A Globally Linearly Convergent Method for Poin... study emphproximal alternating predictorcorrec... 0 0 1 0 0 0
581 Stability of casein micelles cross-linked with... chemical enzymatic crosslinking casein micelle... 0 1 0 0 0 0
582 Kites and Residuated Lattices investigate construction integral residuated l... 0 0 1 0 0 0
583 TED Talk Recommender Using Speech Transcripts nowadays online video platforms mostly recomme... 1 0 0 0 0 0
584 Attitude Control of the Asteroid Origins Satel... exploration asteroids smallbodies provide valu... 1 1 0 0 0 0
585 Triplet Network with Attention for Speaker Dia... automatic speech processing systems speaker di... 0 0 0 1 0 0
586 Dynamics of cracks in disordered materials predicting rupture occurs cracks progress majo... 0 1 0 0 0 0
587 Optimum Decoder for Multiplicative Spread Spec... paper investigates multiplicative spread spect... 1 0 0 0 0 0
588 Adaptive Path-Integral Autoencoder: Representa... present representation learning algorithm lear... 1 0 0 1 0 0
589 Semiblind subgraph reconstruction in Gaussian ... consider social network nodes agents meaningfu... 1 0 0 1 0 0
590 Hybrid Collaborative Recommendation via Semi-A... paper present novel structure semiautoencoder ... 1 0 0 0 0 0
591 The Linear Point: A cleaner cosmological stand... show characteristic length scale imprinted gal... 0 1 0 0 0 0
592 Incompressible limit of the Navier-Stokes mode... starting isentropic compressible navierstokes ... 0 0 1 0 0 0
593 Stochastic Primal-Dual Method on Riemannian Ma... study stochastic primaldual method constrained... 0 0 1 0 0 0
594 Nudging the particle filter investigate new sampling scheme aimed improvin... 0 0 0 1 0 0
595 Quantum oscillations and a non-trivial Berry p... report measurements de haasvan alphen dhva osc... 0 1 0 0 0 0
596 ExSIS: Extended Sure Independence Screening fo... statistical inference computationally prohibit... 0 0 1 1 0 0
597 Unveiling ADP-binding sites and channels in re... mitochondrial oxidative phosphorylation moxpho... 0 0 0 0 1 0
598 Banach synaptic algebras using representation theorem erik alfsen frede... 0 0 1 0 0 0
599 Pressure tuning of structure, superconductivit... highpressure neutron powder diffraction muonsp... 0 1 0 0 0 0
600 Regrasping by Fixtureless Fixturing paper presents fixturing strategy regrasping r... 1 0 0 0 0 0
601 Subset Labeled LDA for Large-Scale Multi-Label... labeled latent dirichlet allocation llda exten... 0 0 0 1 0 0
602 A Hybrid Approach to Video Source Identification multimedia forensics allows determine whether ... 1 0 0 0 0 0
603 Asymptotics of ABC present informal review recent work asymptotic... 0 0 1 1 0 0
604 Learning Sparse Polymatrix Games in Polynomial... consider problem learning sparse polymatrix ga... 1 0 0 0 0 0
605 Superposition solutions to the extended KdV eq... kdv equation derived shallow water limit euler... 0 1 0 0 0 0
606 Boosting the Actor with Dual Critic paper proposes new actorcriticstyle algorithm ... 1 0 0 0 0 0
607 Counting Dominating Sets of Graphs counting dominating sets graph g closely relat... 0 0 1 0 0 0
608 High SNR Consistent Compressive Sensing high signal noise ratio snr consistency model ... 1 0 0 1 0 0
609 Communication Reducing Algorithms for Distribu... reduction communication efficient partitioning... 1 0 0 0 0 0
610 Traffic Surveillance Camera Calibration by 3D ... paper focus fully automatic traffic surveillan... 1 0 0 0 0 0
611 Technical Report for Real-Time Certified Proba... success autonomous systems depend upon ability... 1 0 1 0 0 0
612 Distance Measure Machines paper presents distancebased discriminative fr... 0 0 0 1 0 0
613 DSBGK Method to Incorporate the CLL Reflection... molecular reflections usual wall surfaces stat... 0 1 0 0 0 0
614 Tropical formulae for summation over a part of... let fabcdsqrtabsqrtcdsqrtacbd let abcd stand a... 0 0 1 0 0 0
615 Efficient sampling of conditioned Markov jump ... consider task generating draws markov jump pro... 0 0 0 1 0 0
616 Holography and thermalization in optical pump-... using holography model experiments strange met... 0 1 0 0 0 0
617 On Random Subsampling of Gaussian Process Regr... paper study random subsampling gaussian proces... 1 0 0 1 0 0
618 Representing Hybrid Automata by Action Languag... hybrid automata action languages formalisms de... 1 0 0 0 0 0
619 An enthalpy-based multiple-relaxation-time lat... paper enthalpybased multiplerelaxationtime mrt... 0 1 0 0 0 0
620 Birth of a subaqueous barchan dune barchan dunes crescentic shape dunes horns poi... 0 1 0 0 0 0
621 Uncoupled isotonic regression via minimum Wass... isotonic regression standard problem shapecons... 0 0 0 1 0 0
622 Failure of Smooth Pasting Principle and Nonexi... paper considers timeinconsistent stopping prob... 0 0 0 0 0 1
623 Perils of Zero-Interaction Security in the Int... internet things iot demands authentication sys... 1 0 0 0 0 0
624 Coarse-grained simulation of auxetic, two-dime... increasing number proteinbased metamaterials d... 0 1 0 0 0 0
625 Core2Vec: A core-preserving feature learning f... recent advances field network representation l... 1 0 0 0 0 0
626 Predicting wind pressures around circular cyli... numerous studies carried measure wind pressure... 1 0 0 1 0 0
627 Randomly coloring simple hypergraphs with fewe... study problem constructing near uniform random... 1 0 0 0 0 0
628 Contributed Discussion to Uncertainty Quantifi... begin introducing main ideas paper discussion ... 0 0 1 1 0 0
629 Channel masking for multivariate time series s... time series shapelets discriminative subsequen... 1 0 0 0 0 0
630 Spin mediated enhanced negative magnetoresista... work present experimental study spin mediated ... 0 1 0 0 0 0
631 On the Limitations of Representing Functions o... recent work representation functions sets cons... 1 0 0 1 0 0
632 Learning Models from Data with Measurement Err... measurement error observational datasets lead ... 1 0 0 1 0 0
633 A simple introduction to Karmarkar's Algorithm... extremely simple description karmarkars algori... 1 0 0 0 0 0
634 Magneto-inductive Passive Relaying in Arbitrar... consider wireless sensor network uses inductiv... 1 0 0 0 0 0
635 Eigendecompositions of Transfer Operators in R... transfer operators perronfrobenius koopman ope... 1 0 0 1 0 0
636 Asymptotics of the bound state induced by $δ$-... paper consider threedimensional schrdinger ope... 0 0 1 0 0 0
637 Análise comparativa de pesquisas de origens e ... paper comparative study conducted complex netw... 1 0 0 0 0 0
638 Inverse Kinematics for Control of Tensegrity S... tensionnetwork tensegrity robots encounter man... 1 0 0 0 0 0
639 Smallest eigenvalue density for regular or fix... statistical behaviour smallest eigenvalue impo... 0 1 1 1 0 0
640 Development of probabilistic dam breach model ... dam breach models commonly used predict outflo... 0 0 0 1 0 0
641 Large Magellanic Cloud Near-Infrared Synoptic ... study nearinfrared properties mira candidates ... 0 0 0 1 0 0
642 One-Step Time-Dependent Future Video Frame Pre... inherent need autonomous cars drones robots no... 1 0 0 0 0 0
643 Deep Multi-User Reinforcement Learning for Dis... consider problem dynamic spectrum access netwo... 1 0 0 0 0 0
644 Myopic Bayesian Design of Experiments via Post... design new myopic strategy wide class sequenti... 0 0 0 1 0 0
645 Data-Driven Sparse Structure Selection for Dee... deep convolutional neural networks liberated e... 1 0 0 0 0 0
646 Scaling laws and bounds for the turbulent G.O.... numerical simulations go roberts dynamo presen... 0 1 0 0 0 0
647 Control Strategies for the Fokker-Planck Equation using projectionbased decoupling fokkerplanck ... 0 0 1 0 0 0
648 On Popov's formula involving the Von Mangoldt ... offer generalization formula popov involving v... 0 0 1 0 0 0
649 On fibering compact manifold over the circle paper show compact manifold carries slnrfoliat... 0 0 1 0 0 0
650 Phonon-Induced Topological Transition to a Typ... given importance crystal symmetry emergence to... 0 1 0 0 0 0
651 Multi-hop assortativities for networks classif... several social medical engineering biological ... 1 0 0 1 0 0
652 A Bayesian Nonparametrics based Robust Particl... paper concerned online estimation nonlinear dy... 0 0 0 1 0 0
653 Highly accurate model for prediction of lung n... computed tomography ct examinations commonly u... 0 0 0 1 1 0
654 Rotating Rayleigh-Taylor turbulence turbulent rayleightaylor system rotating refer... 0 1 0 0 0 0
655 Evolutionary dynamics of N-person Hawk-Dove games animal world competition individuals belonging... 0 1 0 0 0 0
656 A global model for predicting the arrival of i... approximately half worlds population risk cont... 1 0 0 0 1 0
657 Contextually Customized Video Summaries via Na... best summary long video differs among differen... 1 0 0 0 0 0
658 Observation of surface plasmon polaritons in 2... recently heavily doped semiconductors emerging... 0 1 0 0 0 0
659 Asymmetric Mach-Zehnder atom interferometers shown using beam splitters nonequal wave vecto... 0 1 0 0 0 0
660 Partial Information Stochastic Differential Ga... paper consider partial information twoperson z... 0 0 1 0 0 0
661 Inter-Session Modeling for Session-Based Recom... recent years research done applying recurrent ... 1 0 0 0 0 0
662 Multiscale Modeling of Shock Wave Localization... shock wave interactions defects pores known pl... 0 1 0 0 0 0
663 Cryptoasset Factor Models propose factor models crosssection daily crypt... 0 0 0 0 0 1
664 Multi-dimensional Graph Fourier Transform many signals cartesian product graphs appear r... 1 0 0 1 0 0
665 Criteria for the Application of Double Exponen... double exponential formula introduced calculat... 0 0 1 0 0 0
666 Ultra-high strain in epitaxial silicon carbide... strain engineering attracted great attention p... 0 1 0 0 0 0
667 The Diverse Club: The Integrative Core of Comp... complex system represented analyzed network no... 0 1 0 0 0 0
668 Bayesian Semisupervised Learning with Deep Gen... neural network based generative models discrim... 0 0 0 1 0 0
669 Robust Detection of Covariate-Treatment Intera... detection interactions treatment effects patie... 0 0 0 1 0 0
670 The Future of RICH Detectors through the Light... limitations performance present rich system lh... 0 1 0 0 0 0
671 Stability of Valuations: Higher Rational Rank given klt singularity xin x show quasimonomial... 0 0 1 0 0 0
672 Higgs mode and its decay in a two dimensional ... condensedmatter analogs higgs boson particle p... 0 1 0 0 0 0
673 Robust and Efficient Boosting Method using the... wellknown simplicity effectiveness classificat... 0 0 0 1 0 0
674 High Dimensional Robust Estimation of Sparse M... study problem sparsity constrained mestimation... 1 0 1 1 0 0
675 Stop talking to me -- a communication-avoiding... present communication datasensitive formulatio... 1 0 0 0 0 0
676 The effect of prior probabilities on quantific... paper outlines methodology bayesian multimodel... 0 0 0 1 0 0
677 Hierarchical loss for classification failing distinguish sheepdog skyscraper worse ... 1 0 0 1 0 0
678 An efficient data structure for counting all l... achieving goals title others relies cardinalit... 1 0 0 0 0 0
679 Perception-in-the-Loop Adversarial Examples present scalable black box perceptionintheloop... 1 0 0 1 0 0
680 Deep Fluids: A Generative Network for Paramete... paper presents novel generative model synthesi... 0 0 0 1 0 0
681 Bias Reduction in Instrumental Variable Estima... twostage leastsquares sls estimator known bias... 0 0 1 1 0 0
682 An Unsupervised Learning Classifier with Compe... unsupervised learning classification model des... 0 0 0 1 0 0
683 Exploring the predictability of range-based vo... investigate predictability several rangebased ... 0 0 0 1 0 1
684 Mean squared displacement and sinuosity of thr... correlated random walks crw used long time nul... 0 0 0 0 1 0
685 Context-Aware Pedestrian Motion Prediction In ... paper presents novel contextbased approach ped... 1 0 0 1 0 0
686 EnergyNet: Energy-based Adaptive Structural Le... present e nergy n et new framework analyzing b... 1 0 0 0 0 0
687 Local Algorithms for Hierarchical Dense Subgra... finding dense regions graph relations among fu... 1 0 0 0 0 0
688 Robust Gesture-Based Communication for Underwa... propose robust gesturebased communication pipe... 1 0 0 0 0 0
689 High-$T_\textrm {C}$ superconductivity in Cs$_... unique among alkalidoped textit ac fullerene c... 0 1 0 0 0 0
690 Analysis and mitigation of interface losses in... improving performance superconducting qubits r... 0 1 0 0 0 0
691 Recent Operation of the FNAL Magnetron $H^{-}$... paper detail changes operational paradigm ferm... 0 1 0 0 0 0
692 A Ball Breaking Away from a Fluid consider withdrawal ball fluid reservoir under... 0 1 0 0 0 0
693 Unveiling the internal entanglement structure ... disentangle individual degrees freedom quantum... 0 1 0 0 0 0
694 A parallel orbital-updating based plane-wave b... motivated recently proposed parallel orbitalup... 0 1 1 0 0 0
695 Dynamics of the multi-soliton waves in the sin... particular type fourkink multisolitons quadron... 0 1 0 0 0 0
696 Clarifying the Hubble constant tension with a ... estimates hubble constant h distance ladder co... 0 1 0 0 0 0
697 Multi-User Multi-Armed Bandits for Uncoordinat... multiuser multiarmed bandit mab framework used... 0 0 0 1 0 0
698 A Comparative Analysis of Contact Models in Tr... paper analyze effects contact models contactim... 1 0 0 0 0 0
699 Computationally Efficient Measures of Internal... challenge assigning importance individual neur... 0 0 0 1 0 0
700 Mutual Interpretability of Robinson Arithmetic... elementary rheory concatenation introduced use... 0 0 1 0 0 0
701 Coordination of Dynamic Software Components wi... javabip allows coordination software component... 1 0 0 0 0 0
702 Is It Safe to Uplift This Patch? An Empirical ... rapid release development processes patches fi... 1 0 0 0 0 0
703 Gamorithm examining games fresh perspective present idea... 1 0 0 0 0 0
704 Common change point estimation in panel data f... establish convergence rates asymptotic distrib... 0 0 1 1 0 0
705 Outage analysis in two-way communication with ... study relays scope energyharvesting eh looks i... 1 0 0 0 0 0
706 KGAN: How to Break The Minimax Game in GAN generative adversarial networks gans intuitive... 1 0 0 1 0 0
707 Computing representation matrices for the acti... paper concerned computation representation mat... 1 0 1 0 0 0
708 The solitary g-mode frequencies in early B-typ... present possible explanations pulsations early... 0 1 0 0 0 0
709 Composition of Credal Sets via Polyhedral Geom... recently introduced composition operator creda... 1 0 0 0 0 0
710 The microarchitecture of a multi-threaded RISC... internetofthings endnodes demand low power pro... 1 0 0 0 0 0
711 A Recent Survey on the Applications of Genetic... last two decades genetic programming gp largel... 1 0 0 0 0 0
712 Optimal Input Placement in Lattice Graphs control dynamical networked systems continues ... 1 0 0 0 0 0
713 Construction of constant mean curvature n-noid... construct constant mean curvature surfaces euc... 0 0 1 0 0 0
714 Universality in numerical computation with ran... discuss various universality aspects numerical... 0 1 1 0 0 0
715 The X-ray reflection spectrum of the radio-lou... relativistic jets created active galactic nucl... 0 1 0 0 0 0
716 Tree Structured Synthesis of Gaussian Trees new synthesis scheme proposed effectively gene... 1 0 0 0 0 0
717 Information Retrieval and Recommendation Syste... present machine learning based information ret... 0 1 0 0 0 0
718 Database Learning: Toward a Database that Beco... todays databases previous query answers rarely... 1 0 0 0 0 0
719 A Continuous Relaxation of Beam Search for End... beam search desirable choice testtime decoding... 1 0 0 0 0 0
720 Measurably entire functions and their growth b weiss introduced notion measurably entire fu... 0 0 1 0 0 0
721 Graph Theoretical Models of Closed n-Dimension... paper show construct graph theoretical models ... 1 0 1 0 0 0
722 Completely $p$-primitive binary quadratic forms let fxyaxbxycy binary quadratic form integer c... 0 0 1 0 0 0
723 Analysis of Multivariate Data and Repeated Mea... numerical availability statistical inference m... 0 0 0 1 0 0
724 Multiple Illumination Phaseless Super-Resoluti... phaseless superresolution problem recovering u... 1 0 1 0 0 0
725 Local Marchenko-Pastur Law for Random Bipartit... paper first chapter three authors undergraduat... 0 0 1 1 0 0
726 Photoelectron Yields of Scintillation Counters... photoelectron yields extruded scintillation co... 0 1 0 0 0 0
727 Precise measurement of hyperfine structure in ... report precise measurement hyperfine structure... 0 1 0 0 0 0
728 Reconstructing global fields from dynamics in ... study dynamical system induced artin reciproci... 0 0 1 0 0 0
729 Algebraic models of the Euclidean plane introduce new invariant real logarithmickodair... 0 0 1 0 0 0
730 Decentralization of Multiagent Policies by Lea... effective communication required teams robots ... 1 0 0 0 0 0
731 The tumbling rotational state of 1I/`Oumuamua discovery u oumuamua provided first glimpse pl... 0 1 0 0 0 0
732 Homology theory formulas for generalized Riema... context orientable circuits subcomplexes repre... 0 0 1 0 0 0
733 Video and Accelerometer-Based Motion Analysis ... purpose basic surgical skills suturing knot ty... 1 0 0 0 0 0
734 A Theory of Complex Stochastic Systems with Tw... many complex systems share two characteristics... 0 1 0 0 0 0
735 Mixing of odd- and even-frequency pairings in ... even oddfrequency superconductivity coexist du... 0 1 0 0 0 0
736 Stability of the Poincaré bundle let x irreducible smooth projective curve genu... 0 0 1 0 0 0
737 Existence results for primitive elements in cu... fq finite field q elements investigate followi... 0 0 1 0 0 0
738 Morse geodesics in torsion groups paper exhibit morse geodesics often called hyp... 0 0 1 0 0 0
739 Global and local thermometry schemes in couple... study ultimate bounds estimation temperature i... 0 1 0 0 0 0
740 The statistical significance filter leads to o... show publishing results using statistical sign... 0 0 1 1 0 0
741 A levitated nanoparticle as a classical two-le... centerofmass motion single optically levitated... 0 1 0 0 0 0
742 Simulating and Reconstructing Neurodynamics wi... introduce new techniques analysis neural spati... 1 1 0 0 0 0
743 The LCES HIRES/Keck Precision Radial Velocity ... describe year survey carried lickcarnegie exop... 0 1 0 0 0 0
744 Artificial Intelligence Based Malware Analysis artificial intelligence methods often applied ... 1 0 0 0 0 0
745 Bounded height in families of dynamical systems let b algebraic numbers exactly one b algebrai... 0 0 1 0 0 0
746 Input-to-State Stability of a Clamped-Free Dam... note establishes inputtostate stability iss pr... 1 0 0 0 0 0
747 A New Achievable Rate Region for Multiple-Acce... problem reliable communication multipleaccess ... 1 0 0 0 0 0
748 Reassessing Graphene Absorption and Emission S... present new paradigm understanding optical abs... 0 1 0 0 0 0
749 A deep generative model for single-cell RNA se... propose probabilistic model interpreting gene ... 1 0 0 1 0 0
750 Analytic heating rate of neutron star merger e... macronovae kilonovae arise binary neutron star... 0 1 0 0 0 0
751 Molecular Simulation of Caloric Properties of ... calculation caloric properties heat capacity j... 0 1 0 0 0 0
752 On well-posedness of a velocity-vorticity form... study wellposedness velocityvorticity formulat... 0 0 1 0 0 0
753 Generative Adversarial Networks for Electronic... generative adversarial networks gans represent... 1 0 0 1 0 0
754 Properties of Kinetic Transition Networks for ... database minima transition states corresponds ... 0 1 0 1 0 0
755 Asynchronous Byzantine Machine Learning (the c... asynchronous distributed machine learning solu... 0 0 0 1 0 0
756 A Recorded Debating Dataset paper describes english audio textual dataset ... 1 0 0 0 0 0
757 Tube Convolutional Neural Network (T-CNN) for ... deep learning demonstrated achieve excellent r... 1 0 0 0 0 0
758 Distances and Isomorphism between Networks and... develop theoretical foundations network distan... 1 0 1 0 0 0
759 Expropriations, Property Confiscations and New... using panama papers show beginning media repor... 0 0 0 0 0 1
760 Revealing Hidden Potentials of the q-Space Sig... mammography screening early detection breast l... 1 0 0 0 0 0
761 Concave Flow on Small Depth Directed Networks small depth networks arise variety network rel... 1 0 0 0 0 0
762 Knowledge Management Strategies and Processes ... knowledgeintensive companies adopt agile softw... 1 0 0 0 0 0
763 A supernova at 50 pc: Effects on the Earth's a... recent fe results suggested estimated distance... 0 1 0 0 0 0
764 Surface tension of flowing soap films surface tension flowing soap films measured re... 0 1 0 0 0 0
765 Plugo: a VLC Systematic Perspective of Large-s... indoor localization based visible light commun... 1 0 0 0 0 0
766 Deep Convolutional Networks as shallow Gaussia... show output residual convolutional neural netw... 0 0 0 1 0 0
767 Dynamic Watermarking for General LTI Systems detecting attacks control systems important as... 1 0 1 0 0 0
768 FluxMarker: Enhancing Tactile Graphics with Dy... people visual impairments tactile graphics imp... 1 0 0 0 0 0
769 Regularising Non-linear Models Using Feature S... often features come vectorial descriptions pro... 1 0 0 1 0 0
770 On Diamond's $L^1$ criterion for asymptotic de... give short proof l criterion beurling generali... 0 0 1 0 0 0
771 "i have a feeling trump will win................. social media users often make explicit predict... 1 0 0 0 0 0
772 SLAM-Assisted Coverage Path Planning for Indoo... applications involving autonomous navigation p... 1 0 0 0 0 0
773 Low energy bands and transport properties of c... apply method combines tightbinding approximati... 0 1 0 0 0 0
774 High Dynamic Range Imaging Technology lecture note describe high dynamic range hdr i... 1 0 0 0 0 0
775 Classification of pro-$p$ PD$^2$ pairs and the... classify prop poincar duality pairs dimension ... 0 0 1 0 0 0
776 A Survey on Content-Aware Video Analysis for S... sports data analysis becoming increasingly lar... 1 0 0 0 0 0
777 Recursive Multikernel Filters Exploiting Nonli... kernel methods temporal information data commo... 1 0 0 1 0 0
778 Gaussian-Dirichlet Posterior Dominance in Sequ... consider problem sequential learning categoric... 0 0 1 1 0 0
779 Learning Combinations of Sigmoids Through Grad... develop new approach learn parameters regressi... 1 0 0 1 0 0
780 Fine Structure and Lifetime of Dark Excitons i... intricate interplay optically dark bright exci... 0 1 0 0 0 0
781 On bifibrations of model categories article develop notion quillen bifibration com... 1 0 1 0 0 0
782 Canonical sine and cosine Transforms For Integ... paper define canonical sine cosine transform c... 0 0 1 0 0 0
783 Deep Learning Sparse Ternary Projections for C... compressed sensing cs sampling theory allows r... 1 0 0 1 0 0
784 Learning a Predictive Model for Music Using PULSE predictive models music studied researchers al... 1 0 0 0 0 0
785 Learning Nonlinear Brain Dynamics: van der Pol... many realworld data sets especially biology pr... 0 0 0 1 1 0
786 Neural networks for topology optimization research propose deep learning based approach ... 1 0 0 0 0 0
787 Abstract Interpretation with Unfoldings present evaluate technique computing pathsensi... 1 0 0 0 0 0
788 Perturbation theory for cosmologies with non-l... next generation cosmological surveys operate u... 0 1 0 0 0 0
789 Heads or tails in zero gravity: an example of ... playing game heads tails zero gravity demonstr... 0 1 0 0 0 0
790 Amortized Inference Regularization variational autoencoder vae popular model dens... 0 0 0 1 0 0
791 Phase Synchronization on Spacially Embeded Dup... synchronization multiplex networks attracted i... 0 1 0 0 0 0
792 Linear complexity of Legendre-polynomial quoti... continue investigate binary sequence fu define... 1 0 1 0 0 0
793 The Time Dimension of Science: Connecting the ... central question science science concerns time... 1 1 0 0 0 0
794 Excited states of defect lines in silicon: A f... excited states single donor bulk silicon previ... 0 1 0 0 0 0
795 Neutral Carbon Emission in luminous infrared g... present statistical study c rm p rightarrow rm... 0 1 0 0 0 0
796 Kernel Approximation Methods for Speech Recogn... study largescale kernel methods acoustic model... 1 0 0 1 0 0
797 Composition Factors of Tensor Products of Symm... determine composition factors tensor product s... 0 0 1 0 0 0
798 Stochastic Ratcheting on a Funneled Energy Lan... current understanding contractility emerges di... 0 1 0 0 0 0
799 Mitigation of Phase Noise in Massive MIMO Syst... work encompasses ratesplitting rs providing si... 1 0 0 0 0 0
800 Tangle-tree duality in abstract separation sys... prove general width duality theorem combinator... 0 0 1 0 0 0
801 Attention-Based Guided Structured Sparsity of ... network pruning aimed imposing sparsity neural... 0 0 0 1 0 0
802 A Graph Model with Indirect Co-location Links graph models widely used analyse diffusion pro... 1 0 0 0 0 0
803 Essentially No Barriers in Neural Network Ener... training neural networks involves finding mini... 0 0 0 1 0 0
804 Homogenization of nonlinear elliptic systems i... study homogenization process families strongly... 0 0 1 0 0 0
805 A Generalization of Permanent Inequalities and... polynomial pinmathbbrzdotszn real stable roots... 1 0 1 0 0 0
806 Proceedings Fifth International Workshop on Ve... volume contains proceedings fifth internationa... 1 0 0 0 0 0
807 H-infinity Filtering for Cloud-Aided Semi-acti... chapter presents hinfinity filtering framework... 1 0 0 0 0 0
808 Deep Spatio-Temporal Random Fields for Efficie... work introduce time memoryefficient method str... 0 0 0 1 0 0
809 A Coherent vorticity preserving eddy viscosity... paper introduces new approach largeeddy simula... 1 1 0 0 0 0
810 A Universal Marginalizer for Amortized Inferen... consider problem inference causal generative m... 1 0 0 1 0 0
811 Approximating the Backbone in the Weighted Max... weighted maximum satisfiability problem weight... 1 0 0 0 0 0
812 Fulde-Ferrell-Larkin-Ovchinnikov state in spin... show presence magnetic field two superconducti... 0 1 0 0 0 0
813 New type integral inequalities for convex func... recently established integral inequalities con... 0 0 1 0 0 0
814 Geometric Insights into Support Vector Machine... support vector machine svm powerful widely use... 0 0 0 1 0 0
815 Smart Grids Data Analysis: A Systematic Mappin... data analytics data science play significant r... 1 0 0 0 0 0
816 Physical problem solving: Joint planning with ... paper present new task investigates people int... 1 0 0 1 0 0
817 Complex Networks: from Classical to Quantum recent progress applying complex network theor... 1 1 0 0 0 0
818 On the K-theory of C*-algebras for substitutio... suitable conditions substitution tiling gives ... 0 0 1 0 0 0
819 The Tutte embedding of the mated-CRT map conve... prove tutte embeddings aka harmonicembeddings ... 0 0 1 0 0 0
820 On the Computation of the Shannon Capacity of ... muroga showed express shannon channel capacity... 1 0 0 0 0 0
821 Gorenstein homological properties of tensor rings let r twosided noetherian ring nilpotent rbimo... 0 0 1 0 0 0
822 Compositional Human Pose Regression regression based methods performing well detec... 1 0 0 0 0 0
823 Stochastic functional differential equations a... consider systems memory represented stochastic... 0 0 1 0 0 0
824 Remarks on Inner Functions and Optimal Approxi... discuss concept inner function reproducing ker... 0 0 1 0 0 0
825 A Stochastic Model for File Lifetime and Secur... data center networks important infrastructure ... 1 0 0 0 0 0
826 Asymptotic Confidence Regions for High-dimensi... setting highdimensional linear regression mode... 0 0 1 1 0 0
827 Building a Structured Query Engine finding patterns data able retrieve informatio... 1 0 0 0 0 0
828 A Theoretical Perspective of Solving Phaseless... natural extension compressive sensing requirem... 0 0 1 0 0 0
829 A Comprehensive Study of Ly$α$ Emission in the... present exhaustive census lyman alpha lyalpha ... 0 1 0 0 0 0
830 Optimal Timing of Decisions: A General Theory ... building insights jovanovic subsequent authors... 0 0 1 0 0 0
831 OSIRIS-REx Contamination Control Strategy and ... osirisrex return pristine samples carbonaceous... 0 1 0 0 0 0
832 Linear Stochastic Approximation: Constant Step... consider ddimensional linear stochastic approx... 1 0 0 1 0 0
833 Curse of Heterogeneity: Computational Barriers... study fundamental tradeoffs statistical accura... 0 0 0 1 0 0
834 Modality Attention for End-to-End Audio-visual... audiovisual speech recognition avsr system tho... 1 0 0 0 0 0
835 Affine Rough Models goal survey article explain elucidate affine s... 0 0 0 0 0 1
836 When flux standards go wild: white dwarfs in t... white dwarf stars used flux standards decades ... 0 1 0 0 0 0
837 Multi-view Low-rank Sparse Subspace Clustering existing approaches address multiview subspace... 1 0 0 1 0 0
838 Single-trial P300 Classification using PCA wit... p eventrelated potential erp evoked scalprecor... 1 0 0 1 0 0
839 Stable representations of posets purpose paper study stable representations par... 0 0 1 0 0 0
840 Automatic segmentation of trees in dynamic out... segmentation dynamic outdoor environments diff... 1 0 0 0 0 0
841 A Practical Bandit Method with Advantages in N... stochastic bandit algorithms used challenging ... 1 0 0 1 0 0
842 Dynamic Security Analysis of Power Systems by ... dynamic security analysis important problem po... 1 0 0 0 0 0
843 Stochastic and Chance-Constrained Conic Distri... second order conic programming socp used model... 0 0 1 0 0 0
844 Multi-Hop Extensions of Energy-Efficient Wirel... present multihop extensions recently proposed ... 1 0 0 0 0 0
845 Value added or misattributed? A multi-institut... instructional labs widely seen unique albeit e... 0 1 0 0 0 0
846 Smoothed Noise and Mexican Hat Coupling Produc... formation pattern biological systems may model... 0 0 0 0 1 0
847 NeuroNER: an easy-to-use program for named-ent... namedentity recognition ner aims identifying e... 1 0 0 1 0 0
848 Macro diversity in Cellular Networks with Rand... blocking objects blockages transmitter receive... 1 0 1 0 0 0
849 Opinion dynamics model based on cognitive biases present introduction novel model individual gr... 1 1 0 0 0 0
850 ImageNet-trained CNNs are biased towards textu... convolutional neural networks cnns commonly th... 0 0 0 0 1 0
851 Explicit evaluation of harmonic sums paper obtain formulae harmonic sums alternatin... 0 0 1 0 0 0
852 Complete Cyclic Proof Systems for Inductive En... paper develop cyclic proof systems problem inc... 1 0 0 0 0 0
853 HybridNet: Classification and Reconstruction C... paper introduce new model leveraging unlabeled... 0 0 0 1 0 0
854 Learning Distributed Representations of Texts ... describe neural network model jointly learns d... 1 0 0 0 0 0
855 Moduli Spaces of Unordered $n\ge5$ Points on t... nge well known moduli space mathfrakmn unorder... 0 0 1 0 0 0
856 Multipath Error Correction in Radio Interferom... radio interferometric positioning system rips ... 1 0 0 0 0 0
857 An evaluation homomorphism for quantum toroida... present affine analog evaluation map quantum g... 0 0 1 0 0 0
858 A Framework for Time-Consistent, Risk-Sensitiv... paper present framework risksensitive model pr... 1 0 1 0 0 0
859 Monitoring Telluric Absorption with CAMAL groundbased astronomical observations may limi... 0 1 0 0 0 0
860 Common Knowledge in a Logic of Gossips gossip protocols aim arriving means pointtopoi... 1 0 0 0 0 0
861 Network-theoretic approach to sparsified discr... examine discrete vortex dynamics twodimensiona... 0 1 0 0 0 0
862 Bäcklund Transformation and Quasi-Integrable D... paper study nonlinear partial differential equ... 0 1 1 0 0 0
863 Data-Mining Textual Responses to Uncover Misco... important yet largely unstudied problem studen... 1 0 0 1 0 0
864 Symmetries of handlebodies and their fixed poi... schottky structure handlebody genus g provided... 0 0 1 0 0 0
865 Speaker Diarization using Deep Recurrent Convo... paper propose new method speaker diarization e... 1 0 0 0 0 0
866 A Robust Multi-Batch L-BFGS Method for Machine... paper describes implementation lbfgs method de... 1 0 1 1 0 0
867 Network of vertically c-oriented prism shaped ... networks vertically coriented prism shaped inn... 0 1 0 0 0 0
868 Enhanced version of AdaBoostM1 with J48 Tree l... machine learning focuses construction study sy... 0 0 0 1 0 0
869 A Game of Tax Evasion: evidences from an agent... paper presents simple agentbased model economi... 0 0 0 0 0 1
870 Variability response functions for statically ... variability response function vrf generalized ... 0 1 0 0 0 0
871 Bayesian Uncertainty Estimation for Batch Norm... show training deep network using batch normali... 0 0 0 1 0 0
872 Multi-Antenna Coded Caching paper consider singlecell downlink scenario mu... 1 0 1 0 0 0
873 Convolved subsampling estimation with applicat... block bootstrap approximates sampling distribu... 0 0 1 1 0 0
874 Computing Simple Multiple Zeros of Polynomial ... given polynomial system f associated simple mu... 0 0 1 0 0 0
875 Latent Geometry and Memorization in Generative... difficult tell whether trained generative mode... 1 0 0 1 0 0
876 Refracting Metasurfaces without Spurious Diffr... refraction represents one fundamental operatio... 0 1 0 0 0 0
877 Accurate Motion Estimation through Random Samp... reconsider classic problem estimating accurate... 1 0 0 0 0 0
878 Landau Collision Integral Solver with Adaptive... landau collision integral accurate model small... 1 0 0 0 0 0
879 A Topologist's View of Kinematic Maps and Mani... paper combine survey important topological pro... 1 0 1 0 0 0
880 Faster Tensor Canonicalization butlerportugal algorithm obtaining canonical f... 1 0 0 0 0 0
881 Mass Preconditioning for the Exact One-Flavor ... masspreconditioning mp technique become standa... 0 1 0 0 0 0
882 Finite-time scaling at the Anderson transition... model threedimensional elastic medium represen... 0 1 0 0 0 0
883 Universal and shape dependent features of surf... analyze response type ii superconducting wire ... 0 1 1 0 0 0
884 Weighted Low Rank Approximation for Background... classical principal component analysis pca rob... 0 0 1 0 0 0
885 Controlling Chiral Domain Walls in Antiferroma... antiferromagnets dzyaloshinskiimoriya interact... 0 1 0 0 0 0
886 The Spatial Shape of Avalanches disordered elastic systems driven displacing p... 0 1 0 0 0 0
887 Multiple Topological Electronic Phases in Supe... search superconductor nonswave pairing importa... 0 1 0 0 0 0
888 Extension complexity of stable set polytopes o... extension complexity mathsfxcp polytope p mini... 1 0 0 0 0 0
889 Performance Scaling Law for Multi-Cell Multi-U... work provides comprehensive scaling law based ... 1 0 0 0 0 0
890 On the Status of the Measurement Problem: Reca... view resurgence concern measurement problem po... 0 1 0 0 0 0
891 Pressure-tuning of bond-directional exchange i... explore response ir orbitals pressure betamath... 0 1 0 0 0 0
892 On perpetuities with gamma-like tails infinite convergent sum independent identicall... 0 0 1 0 0 0
893 Computationally Efficient Estimation of the Sp... consider problem estimating sample paths absol... 0 0 0 1 0 0
894 Mixed Precision Training of Convolutional Neur... stateoftheart sota mixed precision training do... 1 0 0 0 0 0
895 Performance of a small size telescope (SST-1M)... foreseen implementations small size telescopes... 0 1 0 0 0 0
896 Bounded solutions for a class of Hamiltonian s... obtain bounded solutions ordinary differential... 0 0 1 0 0 0
897 Cosmological perturbation effects on gravitati... waveforms gravitational waves provide informat... 0 1 0 0 0 0
898 Biocompatible Writing of Data into DNA simple dnabased data storage scheme demonstrat... 1 1 0 0 0 0
899 Faster Clustering via Non-Backtracking Random ... paper presents vecnbt variation unsupervised g... 1 0 0 1 0 0
900 Nanostructured complex oxides as a route towar... used soft xray photoemission electron microsco... 0 1 0 0 0 0
901 Finding Submodularity Hidden in Symmetric Diff... set function f finite set v submodular fx fy g... 1 0 0 0 0 0
902 On the Consistency of Quick Shift quick shift popular modeseeking clustering alg... 1 0 0 1 0 0
903 Adaptive Quantization for Deep Neural Network recent years deep neural networks dnns rapidly... 1 0 0 1 0 0
904 A Simple Convolutional Generative Network for ... convolutional neural networks cnns recently in... 0 0 0 1 0 0
905 High-temperature terahertz optical diode effec... present terahertz spectroscopic study polar fe... 0 1 0 0 0 0
906 Character Networks and Book Genre Classification compare social character networks biographical... 1 1 0 0 0 0
907 Phase diagrams of Bose-Hubbard model and antif... motivated recent experimental realization hald... 0 1 0 0 0 0
908 Forecasting the Impact of Stellar Activity on ... exoplanet host star activity form unocculted s... 0 1 0 0 0 0
909 A Domain Specific Language for Performance Por... developers molecular dynamics md codes face si... 1 1 0 0 0 0
910 CMB anisotropies at all orders: the non-linear... obtain nonlinear generalization sachswolfe int... 0 1 0 0 0 0
911 On a binary system of Prendiville: The cubic case prove sharp decoupling inequalities class two ... 0 0 1 0 0 0
912 Learning Normalized Inputs for Iterative Estim... paper introduce simple yet powerful pipeline m... 1 0 0 0 0 0
913 Strong isomorphism in Marinatto-Weber type qua... purpose focus attention new criterion quantum ... 1 0 0 0 0 0
914 Riemannian stochastic variance reduced gradient stochastic variance reduction algorithms recen... 1 0 1 1 0 0
915 Causal Inference by Stochastic Complexity algorithmic markov condition states likely cau... 1 0 0 0 0 0
916 Mean teachers are better role models: Weight-a... recently proposed temporal ensembling achieved... 1 0 0 1 0 0
917 WOMBAT: A Scalable and High Performance Astrop... present new code astrophysical magnetohydrodyn... 0 1 0 0 0 0
918 Securing Virtual Network Function Placement wi... virtual network functions service vnfaas curre... 1 0 0 0 0 0
919 The Case for Pyriproxyfen as a Potential Cause... zika virus found individual cases confirmed ca... 0 1 0 0 0 0
920 A decentralized proximal-gradient method with ... paper considers problem decentralized optimiza... 0 0 1 1 0 0
921 CODA: Enabling Co-location of Computation and ... recent studies demonstrated neardata processin... 1 0 0 0 0 0
922 Generative Models for Spear Phishing Posts on ... historically machine learning computer securit... 0 0 0 1 0 0
923 SkipFlow: Incorporating Neural Coherence Featu... deep learning demonstrated tremendous potentia... 1 0 0 0 0 0
924 Automated Speed and Lane Change Decision Makin... paper introduces method based deep reinforceme... 1 0 0 0 0 0
925 Reduction of topological $\mathbb{Z}$ classifi... one challenging problems correlated topologica... 0 1 0 0 0 0
926 Reducing biases on $H_0$ measurements using st... cosmological parameter constraints observation... 0 1 0 0 0 0
927 Characterizing the ionospheric current pattern... characterize response quiet time substorms sto... 0 1 0 0 0 0
928 On a question of Buchweitz about ranks of syzy... let r local ring dimension buchweitz asks rank... 0 0 1 0 0 0
929 Learning convex bounds for linear quadratic co... learning make decisions observed data dynamic ... 0 0 0 1 0 0
930 General mixed multi-soliton solution to the mu... based kp hierarchy reduction method general br... 0 1 0 0 0 0
931 Resolution and Relevance Trade-offs in Deep Le... deep learning successfully applied various tas... 1 0 0 0 0 0
932 Heisenberg Modules over Quantum 2-tori are met... modular gromovhausdorff propinquity distance c... 0 0 1 0 0 0
933 GraphCombEx: A Software Tool for Exploration o... present prototype software tool exploration mu... 1 0 0 0 0 0
934 Approches d'analyse distributionnelle pour amé... word sense disambiguation wsd improves many na... 1 0 0 0 0 0
935 Non-degenerate parametric resonance in tunable... develop theory nondegenerate parametric resona... 0 1 0 0 0 0
936 Toward Controlled Generation of Text generic generation manipulation text challengi... 1 0 0 1 0 0
937 Human peripheral blur is optimal for object re... eyes sample disproportionately large amount in... 0 0 0 0 1 0
938 Acceleration of Mean Square Distance Calculati... molecular dynamics simulates themovements atom... 1 0 0 0 0 0
939 Bridging Semantic Gaps between Natural Languag... developers increasingly rely text matching too... 1 0 0 0 0 0
940 Feedback optimal controllers for the Heston model prove existence optimal feedback controller st... 0 0 1 0 0 0
941 User Experience of the CoSTAR System for Instr... enable novice users create effective task plan... 1 0 0 0 0 0
942 Graph complexity and Mahler measure torsion complexity finite edgeweighted graph d... 0 0 1 0 0 0
943 Neutronic Analysis on Potential Accident Toler... neutronic performance investigated potential a... 0 1 0 0 0 0
944 Total-positivity preservers prove entrywise transforms rectangular matrice... 0 0 1 0 0 0
945 A revision of the subtract-with-borrow random ... popular widely used subtractwithborrow generat... 1 1 0 0 0 0
946 A Macdonald refined topological vertex consider refined topological vertex iqbal et a... 0 0 1 0 0 0
947 Bias voltage effects on tunneling magnetoresis... investigate bias voltage effects spindependent... 0 1 0 0 0 0
948 Listen to Your Face: Inferring Facial Action U... extensive efforts devoted recognizing facial a... 1 0 0 0 0 0
949 Icing on the Cake: An Easy and Quick Post-Lear... found easy quick postlearning method named ici... 0 0 0 1 0 0
950 Minimal Effort Back Propagation for Convolutio... traditional neural network consumes significan... 1 0 0 1 0 0
951 Estimating Achievable Range of Ground Robots O... mobile robots increasingly used assist active ... 1 0 0 0 0 0
952 Likelihood ratio test for variance components ... mixed effects models widely used describe hete... 0 0 0 1 0 0
953 Hölder continuous solutions of the Monge-Ampèr... show positive borel measure positive finite to... 0 0 1 0 0 0
954 The beamformer and correlator for the Large Eu... large european array pulsars combines europes ... 0 1 0 0 0 0
955 Solving $\ell^p\!$-norm regularization with te... paper discuss suitable family tensor kernels u... 0 0 1 1 0 0
956 Adversarial Phenomenon in the Eyes of Bayesian... deep learning models vulnerable adversarial ex... 1 0 0 1 0 0
957 Comparative Climates of TRAPPIST-1 planetary s... recent discovery planetary system hosted ultra... 0 1 0 0 0 0
958 Boundedness of $\mathbb{Q}$-Fano varieties wit... show mathbbqfano varieties fixed dimension ant... 0 0 1 0 0 0
959 Width Hierarchies for Quantum and Classical Or... consider quantum nondterministic probabilistic... 1 0 0 0 0 0
960 Complementary views on electron spectra: From ... study relation microscopic properties manybody... 0 1 0 0 0 0
961 Stall force of a cargo driven by N interacting... study generic onedimensional model intracellul... 0 1 0 0 0 0
962 Dynamics of a Camphoric Acid boat at the air-w... report experiments agarose gel tablet loaded c... 0 1 0 0 0 0
963 Separation of time scales and direct computati... artificial intelligence revolutionizing lives ... 1 0 0 1 0 0
964 $q$-deformed quadrature operator and optical t... letter define homodyne qdeformed quadrature op... 0 1 1 0 0 0
965 Efficient Graph Edit Distance Computation and ... graph edit distance ged important similarity m... 1 0 0 0 0 0
966 Asymptotic measures and links in simplicial co... introduce canonical measures locally finite si... 0 0 1 0 0 0
967 Usability of Humanly Computable Passwords reusing passwords across multiple websites com... 1 0 0 0 0 0
968 Shared urbanism: Big data on accommodation sha... affordability pressures tight rental markets g... 1 1 0 0 0 0
969 Structural changes in the interbank market acr... interbank markets often characterised terms co... 0 0 0 0 0 1
970 Extracting Automata from Recurrent Neural Netw... present novel algorithm uses exact learning ab... 1 0 0 0 0 0
971 Performance analysis of smart digital signage ... everything world connected things becoming int... 1 0 0 0 0 0
972 What pebbles are made of: Interpretation of th... recently atacama large millimetersubmillimeter... 0 1 0 0 0 0
973 Existence and uniqueness of steady weak soluti... existence weak solutions stationary navierstok... 0 0 1 0 0 0
974 More on products of Baire spaces new results baire product problem presented sh... 0 0 1 0 0 0
975 Social versus Moral preferences in the Ultimat... ultimatum game ug one player named proposer de... 0 0 0 0 1 0
976 Moderate Deviation Analysis for Classical-Quan... work study tradeoffs error probabilities class... 1 0 0 0 0 0
977 A simple recipe for making accurate parametric... constructing tests confidence regions control ... 0 0 1 1 0 0
978 GBDT of discrete skew-selfadjoint Dirac system... generalized bcklunddarboux transformations gbd... 0 0 1 0 0 0
979 Panel collapse and its applications describe procedure called panel collapse repla... 0 0 1 0 0 0
980 Smooth Neighbors on Teacher Graphs for Semi-su... recently proposed selfensembling methods achie... 1 0 0 1 0 0
981 Detecting Heavy Flows in the SDN Match and Act... efficient algorithms techniques detect identif... 1 0 0 0 0 0
982 Optimal Resource Allocation with Node and Link... tremendous increase internet traffic achieving... 1 1 0 0 0 0
983 On the complexity of solving a decision proble... consider fundamental integer programming ip mo... 0 0 0 0 0 1
984 Achieving Spectrum Efficient Communication Und... wireless communication heterogeneous technolog... 1 0 0 0 0 0
985 A Galactic Cosmic Ray Electron Intensity Incre... derived background corrected intensities mev g... 0 1 0 0 0 0
986 Statistical foundations for assessing the diff... beta one key quantities capital asset pricing ... 0 0 1 1 0 0
987 Integrating Human-Provided Information Into Be... partially observed environments useful human p... 1 0 0 0 0 0
988 Characterizing complex networks using Entropy-... open problems abound theory complex networks f... 0 0 0 0 1 0
989 On Integral Upper Limits Assuming Power Law Sp... highenergy nonthermal universe dominated power... 0 1 0 0 0 0
990 Estimates for solutions of Dirac equations and... develop estimates solutions derive existence u... 0 0 1 0 0 0
991 Analysis of Political Party Twitter Accounts' ... modern election campaigns political parties ut... 1 0 0 0 0 0
992 When a triangle is isosceles? jacob steiner christian rudolfs request proved... 0 0 1 0 0 0
993 Anomaly detecting and ranking of the cloud com... anomaly detecting important technical cloud co... 1 0 0 1 0 0
994 On self-affine sets survey dimension theory selfaffine sets genera... 0 0 1 0 0 0
995 The effect of phase change on stability of con... buoyancythermocapillary convection layer volat... 0 1 0 0 0 0
996 A graph model of message passing processes paper consider graph model message passing pro... 1 0 0 0 0 0
997 Learning the Sparse and Low Rank PARAFAC Decom... article derive bayesian model learning sparse ... 0 0 1 1 0 0
998 Holomorphic differentials, thermostats and Ano... introduce new family thermostat flows unit tan... 0 0 1 0 0 0
999 Multiplicative slices, relativistic Toda and s... introduce shifted quantum affine algebras map ... 0 0 1 0 0 0
1000 Statistical Latent Space Approach for Mixed Da... analysis mixed data raising challenges statist... 1 0 0 1 0 0
1001 Near-field coupling of gold plasmonic antennas... development spintronic technology increasingly... 0 1 0 0 0 0
1002 A reproducible effect size is more useful than... motivation p values derived null hypothesis si... 0 0 0 0 1 0
1003 High temperature thermodynamics of the honeyco... develop high temperature series expansions the... 0 1 0 0 0 0
1004 Laplace Beltrami operator in the Baran metric ... baran metric deltae finsler metric interior es... 0 0 1 0 0 0
1005 Magnetic polarons in a nonequilibrium polarito... consider condensate excitonpolaritons diluted ... 0 1 0 0 0 0
1006 Inference in Sparse Graphs with Pairwise Measu... consider statistical problem recovering hidden... 1 0 0 0 0 0
1007 Oracle Importance Sampling for Stochastic Simu... consider problem estimating expected outcome s... 0 0 0 1 0 0
1008 The Generalized Cross Validation Filter generalized cross validation gcv one important... 1 0 0 1 0 0
1009 Coherence of Biochemical Oscillations is Bound... biochemical oscillations prevalent living orga... 0 1 0 0 0 0
1010 How Do Classifiers Induce Agents To Invest Eff... algorithms often used produce decisionmaking r... 0 0 0 1 0 0
1011 Guiding Reinforcement Learning Exploration Usi... work present technique use natural language he... 1 0 0 1 0 0
1012 Of the People: Voting Is More Effective with R... light classic impossibility results arrow gibb... 1 0 0 0 0 0
1013 Cell Coverage Extension with Orthogonal Random... paper investigate coverage extension scheme ba... 1 0 1 0 0 0
1014 Hidden Community Detection in Social Networks introduce new paradigm important community det... 1 1 0 1 0 0
1015 Two-photon exchange correction to the hyperfin... reevaluate zemach recoil polarizability correc... 0 1 0 0 0 0
1016 Ising Models with Latent Conditional Gaussian ... ising models describe joint probability distri... 1 0 0 1 0 0
1017 Quasiparticles and charge transfer at the two ... direct experimental investigations lowenergy e... 0 1 0 0 0 0
1018 Breaking Bivariate Records establish fundamental property bivariate paret... 0 0 1 1 0 0
1019 A Bag-of-Paths Node Criticality Measure work compares several node network criticality... 1 1 0 0 0 0
1020 Generation and analysis of lamplighter programs consider programming language based lamplighte... 1 0 1 0 0 0
1021 A Projection-Based Reformulation and Decomposi... propose extended variant reformulation decompo... 0 0 1 0 0 0
1022 Preduals for spaces of operators involving Hil... continuing study preduals spaces mathcallhy bo... 0 0 1 0 0 0
1023 Computing maximum cliques in $B_2$-EPG graphs epg graphs introduced golumbic et al edgeinter... 1 0 0 0 0 0
1024 Interactions between Health Searchers and Sear... web important resource understanding diagnosin... 1 0 0 0 0 0
1025 Effect algebras as presheaves on finite Boolea... effect algebra examine category morphisms fini... 0 0 1 0 0 0
1026 Training Deep Convolutional Neural Networks wi... previous work detailed requirements obtain max... 1 0 0 1 0 0
1027 Absolute versus convective helical magnetorota... study magnetic taylorcouette flow system nondi... 0 1 0 0 0 0
1028 Symmetries and multipeakon solutions for the m... compared twocomponent camassaholm system modif... 0 0 1 0 0 0
1029 Selection of quasi-stationary states in the Na... two dimensional incompressible navierstokes eq... 0 0 1 0 0 0
1030 Geometric Enclosing Networks training model generate data increasingly attr... 1 0 0 1 0 0
1031 A pliable lasso for the Cox model introduce pliable lasso method estimation inte... 0 0 0 1 0 0
1032 Localized magnetic moments with tunable spin e... report experimental realization statedependent... 0 1 0 0 0 0
1033 Khintchine's Theorem with random fractions prove versions khintchines theorem approximati... 0 0 1 0 0 0
1034 A Method of Generating Random Weights and Bias... neural networks random hidden nodes gained inc... 1 0 0 1 0 0
1035 The Relative Performance of Ensemble Methods w... artificial neural networks successfully applie... 1 0 0 1 0 0
1036 Representation of big data by dimension reduction suppose data consist set points xj leq j leq j... 1 0 0 1 0 0
1037 Out-degree reducing partitions of digraphs let k fixed integer determine complexity findi... 1 0 0 0 0 0
1038 Introduction to Plasma Physics notes intended provide brief primer plasma phy... 0 1 0 0 0 0
1039 Presymplectic convexity and (ir)rational polyt... paper extend atiyahguilleminsternberg convexit... 0 0 1 0 0 0
1040 Unsupervised Learning of Mixture Regression Mo... paper concerned learning mixture regression mo... 0 0 0 1 0 0
1041 Anomalous electron states certain macroscopic perturbations condensed ma... 0 1 0 0 0 0
1042 Theoretical calculation of the fine-structure ... light traveling vacuum interacts virtual parti... 0 1 0 0 0 0
1043 LEADER: fast estimates of asteroid shape elong... many asteroid databases lightcurve brightness ... 0 1 0 0 0 0
1044 Calibrated Projection in MATLAB: Users' Manual present calibratedprojection matlab package im... 0 0 0 1 0 0
1045 Atomic Clock Measurements of Quantum Scatterin... use atomic fountain clock measure quantum scat... 0 1 0 0 0 0
1046 Temporal processing and context dependency in ... quantitative understanding sensory signals tra... 0 0 0 0 1 0
1047 On the putative essential discreteness of q-ge... argued epl bf entitled essential discreteness ... 0 1 0 0 0 0
1048 Spin Distribution of Primordial Black Holes estimate spin distribution primordial black ho... 0 1 0 0 0 0
1049 Automated flow for compressing convolution neu... deep convolutional neural networks cnn based s... 1 0 0 0 0 0
1050 Pulse rate estimation using imaging photopleth... objective establish algorithmic framework benc... 0 1 0 0 0 0
1051 Deep Laplacian Pyramid Networks for Fast and A... convolutional neural networks recently demonst... 1 0 0 0 0 0
1052 Foundation for a series of efficient simulatio... compute coarsest simulation preorder included ... 1 0 0 0 0 0
1053 A Review of Macroscopic Motion in Thermodynami... principle macroscopic motion systems thermodyn... 0 1 0 0 0 0
1054 Emergent electronic structure of CaFe2As2 cafeas exhibits collapsed tetragonal ct struct... 0 1 0 0 0 0
1055 Lord Kelvin's method of images approach to the... study mathematical model cell populations dyna... 0 0 1 0 0 0
1056 Study of the Magnetizing Relationship of the K... extraction system csns mainly consists two kin... 0 1 0 0 0 0
1057 Smart "Predict, then Optimize" many realworld analytics problems involve two ... 1 0 0 1 0 0
1058 U-SLADS: Unsupervised Learning Approach for Dy... novel data acquisition schemes emerging need s... 0 0 0 1 0 0
1059 On a registration-based approach to sensor net... consider registrationbased approach localizing... 1 0 1 0 0 0
1060 Density estimation on small datasets might smooth probability distribution estimate... 1 0 0 0 1 0
1061 Generalized Euler classes, differential forms ... context commutative differential graded algebr... 0 0 1 0 0 0
1062 Episodic memory for continual model learning human brain artificial learning agents operati... 1 0 0 1 0 0
1063 Security Trust Zone in 5G Networks fifth generation g telecommunication system go... 1 0 0 0 0 0
1064 Upper-Bounding the Regularization Constant for... consider reconstructing signal x minimizing we... 0 0 1 1 0 0
1065 On the Privacy of the Opal Data Release: A Res... document response report university melbourne ... 1 0 0 0 0 0
1066 Long time behavior of Gross-Pitaevskii equatio... stochastic grosspitaevskii equation used model... 0 0 1 0 0 0
1067 Isomorphism and Morita equivalence classes for... let theta theta irrational numbers b matrices ... 0 0 1 0 0 0
1068 Model Predictive Control for Distributed Micro... paper proposes new convex model predictive con... 1 0 0 0 0 0
1069 On noncommutative geometry of the Standard Mod... unveil geometric nature multiplet fundamental ... 0 0 1 0 0 0
1070 A Review of Dynamic Network Models with Latent... present selective review statistical modeling ... 0 0 0 1 0 0
1071 LevelHeaded: Making Worst-Case Optimal Joins W... pipelines combining sqlstyle business intellig... 1 0 0 0 0 0
1072 Few-shot learning of neural networks from scra... paper propose simple effective method training... 0 0 0 1 0 0
1073 Identities and congruences involving the Fubin... paper investigate umbral representation fubini... 0 0 1 0 0 0
1074 Introduction to Delay Models and Their Wave So... paper brief review delay population models app... 0 0 1 0 0 0
1075 On Dummett's Pragmatist Justification Procedure show propositional intuitionistic logic comple... 0 0 1 0 0 0
1076 Evidence for a radiatively driven disc-wind in... present newly discovered correlation wind outf... 0 1 0 0 0 0
1077 From a normal insulator to a topological insul... plumbene similar silicene buckled honeycomb st... 0 1 0 0 0 0
1078 High-sensitivity Kinetic Inductance Detectors ... providing background discrimination tool cruci... 0 1 0 0 0 0
1079 Bounding the composition length of primitive p... obtain upper bounds composition length finite ... 0 0 1 0 0 0
1080 A Bernstein Inequality For Spatial Lattice Pro... article present bernstein inequality sums rand... 0 0 1 1 0 0
1081 An Exploration of Approaches to Integrating Ne... explore different approaches integrating simpl... 1 0 0 0 0 0
1082 Dispersive Regimes of the Dicke Model study two dispersive regimes dynamics n twolev... 0 1 0 0 0 0
1083 ZebraLancer: Crowdsource Knowledge atop Open B... design implement first private anonymous decen... 1 0 0 0 0 0
1084 Fast, Better Training Trick -- Random Gradient paper show unprecedented method accelerate tra... 0 0 0 1 0 0
1085 Expressions of Sentiments During Code Reviews:... background software development organizations ... 1 0 0 0 0 0
1086 Monotonicity patterns and functional inequalit... paper aim present completely monotonicity conv... 0 0 1 0 0 0
1087 Multiple VLAD encoding of CNNs for image class... despite effectiveness convolutional neural net... 1 0 0 0 0 0
1088 Index of Dirac operators and classification of... real complex clifford bundles dirac operators ... 0 1 0 0 0 0
1089 Centroid vetting of transiting planet candidat... next generation transit survey ngts operating ... 0 1 0 0 0 0
1090 Galaxy And Mass Assembly: the evolution of the... present evolution cosmic spectral energy distr... 0 1 0 0 0 0
1091 Large sums of Hecke eigenvalues of holomorphic... let f hecke cusp form weight k full modular gr... 0 0 1 0 0 0
1092 EAD: Elastic-Net Attacks to Deep Neural Networ... recent studies highlighted vulnerability deep ... 1 0 0 1 0 0
1093 Playtime Measurement with Survival Analysis maximizing product use central goal many busin... 1 0 0 1 0 0
1094 Asymptotic formula of the number of Newton pol... paper enumerate newton polygons asymptotically... 0 0 1 0 0 0
1095 Invariant-based inverse engineering of crane c... applying invariantbased inverse engineering sm... 0 1 0 0 0 0
1096 Leaf Space Isometries of Singular Riemannian F... paper authors consider leaf spaces singular ri... 0 0 1 0 0 0
1097 Backward Monte-Carlo applied to muon transport discuss backward montecarlo technique muon tra... 0 1 0 0 0 0
1098 Functional importance of noise in neuronal inf... noise inherent part neuronal dynamics thus bra... 0 0 0 0 1 0
1099 Stochastic Variance Reduction Methods for Poli... policy evaluation crucial step many reinforcem... 1 0 1 1 0 0
1100 Self-consistent dynamical model of the Broad L... develope selfconsistent description broad line... 0 1 0 0 0 0
1101 Measuring the polarization of electromagnetic ... internal states atoms manipulated using cohere... 0 1 0 0 0 0
1102 Software-based Microarchitectural Attacks modern processors highly optimized systems eve... 1 0 0 0 0 0
1103 Pixelwise Instance Segmentation with a Dynamic... semantic segmentation object detection researc... 1 0 0 0 0 0
1104 Binary Matrix Factorization via Dictionary Lea... matrix factorization key tool data analysis ap... 0 0 0 1 0 0
1105 Enriching Complex Networks with Word Embedding... mild cognitive impairment mci mental disorder ... 1 0 0 0 0 0
1106 The many faces of degeneracy in conic optimiza... slaters condition existence strictly feasible ... 0 0 1 0 0 0
1107 Strong homotopy types of acyclic categories an... extend homotopy theories based point reduction... 0 0 1 0 0 0
1108 Boundary problems for the fractional and tempe... characterizing brownian motion bounded domain ... 0 0 1 0 0 0
1109 Bohm's approach to quantum mechanics: Alternat... since inception bohmian mechanics generally re... 0 1 0 0 0 0
1110 Continuous-wave virtual-state lasing from cold... conventional lasers based gain media three fou... 0 1 0 0 0 0
1111 Assessment of Future Changes in Intensity-Dura... evaluation possible climate change consequence... 0 1 0 1 0 0
1112 Improved Algorithms for Computing the Cycle of... study problem finding cycle minimum costtotime... 1 0 0 0 0 0
1113 Interplay of dust alignment, grain growth and ... polarized extinction emission dust interstella... 0 1 0 0 0 0
1114 Asynchronous Distributed Variational Gaussian ... gaussian processes gps powerful nonparametric ... 0 0 0 1 0 0
1115 Bayesian Unification of Gradient and Bandit-ba... bandit based optimisation remarkable advantage... 1 0 0 0 0 0
1116 Stacco: Differentially Analyzing Side-Channel ... intel software guard extension sgx offers soft... 1 0 0 0 0 0
1117 Automatic Extrinsic Calibration for Lidar-Ster... sensor setups consisting combination range sca... 1 0 0 0 0 0
1118 Representations of Super $W(2,2)$ algebra $\ma... paper study representation theory super w alge... 0 0 1 0 0 0
1119 Effective Reformulation of Query for Code Sear... software developers frequently issue generic n... 1 0 0 0 0 0
1120 Detecting Bot Activity in the Ethereum Blockch... ethereum blockchain network decentralized plat... 1 0 0 0 0 0
1121 Near-infrared laser thermal conjunctivoplasty conjunctivochalasis common cause tear dysfunct... 0 1 0 0 0 0
1122 Superconductivity at 7.3 K in the 133-type Cr-... report preparation superconductivity type crba... 0 1 0 0 0 0
1123 Solution of parabolic free boundary problems u... numerical method free boundary problems equati... 0 0 1 0 0 0
1124 Neural-Network Quantum States, String-Bond Sta... neuralnetwork quantum states recently introduc... 0 1 0 1 0 0
1125 Nondestructive testing of grating imperfection... reported usage gratingbased xray phasecontrast... 0 1 0 0 0 0
1126 End-to-End Information Extraction without Toke... stateoftheart information extraction approache... 1 0 0 0 0 0
1127 Lipschitz regularity of solutions to two-phase... prove lipschitz continuity viscosity solutions... 0 0 1 0 0 0
1128 VTA: An Open Hardware-Software Stack for Deep ... hardware acceleration enabler ubiquitous effic... 0 0 0 1 0 0
1129 Efficient Localized Inference for Large Graphi... propose new localized inference algorithm answ... 1 0 0 1 0 0
1130 Multi-kink collisions in the $ϕ^6$ model study simultaneous collisions two three four k... 0 1 0 0 0 0
1131 InverseFaceNet: Deep Monocular Inverse Face Re... introduce inversefacenet deep convolutional in... 1 0 0 0 0 0
1132 Exact partial information decompositions for G... partial information decomposition pid arxiv pr... 0 0 0 1 1 0
1133 Deep Multimodal Subspace Clustering Networks present convolutional neural network cnn based... 0 0 0 1 0 0
1134 Finite-time generalization of the thermodynami... fluctuating currents nonequilibrium steady sta... 0 1 0 0 0 0
1135 Composition Properties of Inferential Privacy ... proliferation mobile devices internet things d... 1 0 0 1 0 0
1136 Landau-Ginzburg theory of cortex dynamics: Sca... understanding origin nature functional signifi... 0 0 0 0 1 0
1137 Recurrent Autoregressive Networks for Online M... main challenge online multiobject tracking rel... 1 0 0 0 0 0
1138 The occurrence of transverse and longitudinal ... classical plasma arbitrary degree degeneration... 0 1 0 0 0 0
1139 Well-posedness of a Model for the Growth of Tr... paper studies pde model growth tree stem vine ... 0 0 1 0 0 0
1140 Yonsei evolutionary population synthesis (YEPS... discovery multiple stellar populations milky w... 0 1 0 0 0 0
1141 Large deviation theorem for random covariance ... establish large deviation theorem empirical sp... 0 0 1 0 0 0
1142 Hindsight policy gradients reinforcement learning agent needs pursue diff... 1 0 0 0 0 0
1143 Abundances in photoionized nebulae of the Loca... photoionized nebulae comprising hii regions pl... 0 1 0 0 0 0
1144 Are Thousands of Samples Really Needed to Gene... prediction cancer prognosis metastatic potenti... 0 0 0 1 0 0
1145 Multi-scale analysis of lead-lag relationships... propose novel estimation procedure scalebyscal... 0 0 0 1 0 0
1146 Approximations of the allelic frequency spectr... consider general branching population lifetime... 0 0 1 0 0 0
1147 Anomaly Detection Using Optimally-Placed Micro... distribution grid moves toward tightlymonitore... 1 0 0 0 0 0
1148 Electron-Phonon Interaction in Ternary Rare-Ea... investigation electronphonon interaction epi l... 0 1 0 0 0 0
1149 Ultrahigh Magnetic Field Phases in Frustrated ... magnetic phases triangularlattice antiferromag... 0 1 0 0 0 0
1150 Preserving Differential Privacy in Convolution... remarkable development deep learning medicine ... 1 0 0 1 0 0
1151 Injectivity almost everywhere and mappings wit... show sufficient condition weak limit sequence ... 0 0 1 0 0 0
1152 A probabilistic approach to the leader problem... consider classical erdosrenyi random graph pro... 0 0 1 0 0 0
1153 An improvement on LSB+ method least significant bit lsb substitution old sim... 1 0 0 0 0 0
1154 Oxygen reduction mechanisms in nanostructured ... work outline mechanisms contributing oxygen re... 0 1 0 0 0 0
1155 Learning Interpretable Models with Causal Guar... machine learning shown much promise helping im... 1 0 0 1 0 0
1156 Achromatic super-oscillatory lenses with sub-w... lenses crucial lightenabled technologies conve... 0 1 0 0 0 0
1157 Time-dependent linear-response variational Mon... present extension variational monte carlo vmc ... 0 1 0 0 0 0
1158 Wireless Power Transfer for Distributed Estima... paper studies power allocation distributed est... 1 0 1 0 0 0
1159 About a non-standard interpolation problem using algebraic methods motivated one variable... 0 0 1 0 0 0
1160 Quantum spin liquid signatures in Kitaev-like ... motivated recent experiments alpharucl investi... 0 1 0 0 0 0
1161 Equivalent electric circuit of magnetosphere-i... aim study investigate magnetospheric disturban... 0 1 0 0 0 0
1162 Charge polarization effects on the optical res... new approach study optical response periodic s... 0 1 0 0 0 0
1163 Replica analysis of overfitting in regression ... overfitting happens number parameters model la... 0 1 0 1 0 0
1164 System Description: Russell - A Logical Framew... russell logical framework specification implem... 1 0 1 0 0 0
1165 Spinor analysis let us call novel quantities addition vectors ... 0 1 0 0 0 0
1166 Identifiability of phylogenetic parameters fro... distances sequences based kmer frequency count... 0 0 1 0 0 0
1167 Short-Time Nonlinear Effects in the Exciton-Po... excitonpolariton system linear dispersive phot... 0 0 1 0 0 0
1168 GTC Observations of an Overdense Region of LAE... present results search faint galaxies near end... 0 1 0 0 0 0
1169 Comment on Photothermal radiometry parametric ... recent paper x guo mandelis j tolev k tang j a... 0 1 0 0 0 0
1170 Computing the projected reachable set of switc... fundamental question systems biology combinati... 1 0 1 0 0 0
1171 Temporal Action Localization by Structured Max... address problem temporal action localization v... 1 0 0 0 0 0
1172 Using Transfer Learning for Image-Based Cassav... cassava third largest source carbohydrates hum... 1 0 0 0 0 0
1173 Continuous Adaptation via Meta-Learning in Non... ability continuously learn adapt limited exper... 1 0 0 0 0 0
1174 Alpha-Divergences in Variational Dropout investigate use alternative divergences kullba... 1 0 0 1 0 0
1175 Curvature properties of Robinson-Trautman metric curvature properties robinsontrautman metric i... 0 0 1 0 0 0
1176 Dehn invariant of flexible polyhedra prove dehn invariant flexible polyhedron eucli... 0 0 1 0 0 0
1177 On Evaluation of Embodied Navigation Agents skillful mobile operation threedimensional env... 1 0 0 0 0 0
1178 Single Magnetic Impurity in Tilted Dirac Surfa... utilize variational method investigate kondo s... 0 1 0 0 0 0
1179 Leveraging the Path Signature for Skeleton-bas... human action recognition videos one challengin... 1 0 0 0 0 0
1180 How Many Subpopulations is Too Many? Exponenti... reconstruction population histories central pr... 0 0 0 0 1 0
1181 Source localization in an ocean waveguide usin... source localization ocean acoustics posed mach... 1 1 0 0 0 0
1182 Mining Illegal Insider Trading of Stocks: A Pr... illegal insider trading stocks based releasing... 0 0 0 1 0 1
1183 Discovery of Extreme [OIII]+H$β$ Emitting Gala... using deep multiwavelength photometry galaxies... 0 1 0 0 0 0
1184 Predictive Simulations for Tuning Electronic a... boron subphthalocyanine chloride electron dono... 0 1 0 0 0 0
1185 Learning to attend in a brain-inspired deep ne... recent machine learning models shown including... 0 0 0 0 1 0
1186 Anisotropic functional Laplace deconvolution present paper consider problem estimating thre... 0 0 0 1 0 0
1187 Prediction of many-electron wavefunctions usin... given manyelectron molecule possible define co... 0 1 0 0 0 0
1188 Free energy of formation of a crystal nucleus ... using formalism classical nucleation theory de... 0 1 0 0 0 0
1189 Ensemble learning with Conformal Predictors: T... machine learning classifiers give predictions ... 0 0 0 1 0 0
1190 Parameter Sharing Deep Deterministic Policy Gr... deep reinforcement learning multiagent coopera... 1 0 0 0 0 0
1191 Repair Strategies for Storage on Mobile Clouds study data reliability problem community devic... 1 0 0 0 0 0
1192 Mean-variance portfolio selection under partia... paper studies meanvariance portfolio selection... 0 0 0 0 0 1
1193 Learning from MOM's principles: Le Cam's approach obtain estimation error rates estimators obtai... 0 0 1 1 0 0
1194 On a Neumann-type series for modified Bessel f... paper interested neumanntype series modified b... 0 0 1 0 0 0
1195 Generalized Log-sine integrals and Bell polyno... paper investigate integral xnlogmsinx natural ... 0 0 1 0 0 0
1196 A Modern Search for Wolf-Rayet Stars in the Ma... past three years conducting survey wr stars la... 0 1 0 0 0 0
1197 Mathematical modeling of Zika disease in pregn... propose new mathematical model spread zika vir... 0 0 1 0 0 0
1198 A Noninformative Prior on a Space of Distribut... given problem bayesian statistical paradigm re... 0 0 1 1 0 0
1199 Towards a realistic NNLIF model: Analysis and ... network noisy leaky integrate fire nnlif model... 0 0 1 0 0 0
1200 An upper bound on the distinguishing index of ... distinguishing index simple graph g denoted dg... 0 0 1 0 0 0
1201 Adversarial Pseudo Healthy Synthesis Needs Pat... pseudo healthy synthesis ie creation subjectsp... 1 0 0 1 0 0
1202 Closure operators, frames, and neatest represe... given poset p standard closure operator gammaw... 0 0 1 0 0 0
1203 The structure of rationally factorized Lax typ... work devoted constructing wide class different... 0 1 0 0 0 0
1204 Learning Policy Representations in Multiagent ... modeling agent behavior central understanding ... 0 0 0 1 0 0
1205 Jamming-Resistant Receivers for the Massive MI... design jammingresistant receiver scheme enhanc... 1 0 0 0 0 0
1206 Multiplex core-periphery organization of the h... behavior many complex systems determined core ... 1 0 0 0 1 0
1207 Towards Learned Clauses Database Reduction Str... clause learning one important components confl... 1 0 0 0 0 0
1208 Integrable structure of products of finite com... consider squared singular values product stand... 0 1 1 0 0 0
1209 Global well-posedness of the 3D primitive equa... paper consider primitive equations oceanic atm... 0 1 1 0 0 0
1210 Superintegrable systems on 3-dimensional curve... eisenhart geometric formalism transforms eucli... 0 1 1 0 0 0
1211 An Incentive-Based Online Optimization Framewo... paper formulates timevarying socialwelfare max... 1 0 1 0 0 0
1212 Ricci solitons on Ricci pseudosymmetric $(LCS)... object present paper study types ricci pseudos... 0 0 1 0 0 0
1213 Optimal Gossip Algorithms for Exact and Approx... paper gives drastically faster gossip algorith... 1 0 0 0 0 0
1214 Influence of Heat Treatment on the Corrosion B... magnesium alloys ideal biodegradable implants ... 0 1 0 0 0 0
1215 Towards a scientific blockchain framework for ... publishing reproducible analyses longstanding ... 1 0 0 0 0 0
1216 Time Series Anomaly Detection; Detection of an... google uses continuous streams data industry p... 1 0 0 1 0 0
1217 A parallel approach to bi-objective integer pr... obtain better understanding tradeoffs various ... 1 0 1 0 0 0
1218 The adaptive zero-error capacity for a class o... adaptive zeroerror capacity discrete memoryles... 1 0 0 0 0 0
1219 Comparison of Self-Aware and Organic Computing... increasing complexity heterogeneity computing ... 1 0 0 0 0 0
1220 First Order Methods beyond Convexity and Lipsc... focus nonconvex nonsmooth minimization problem... 1 0 1 0 0 0
1221 An Army of Me: Sockpuppets in Online Discussio... online discussion communities users interact s... 1 1 0 1 0 0
1222 Robust Bayesian Optimization with Student-t Li... bayesian optimization recently attracted atten... 1 0 0 1 0 0
1223 Vehicle Localization and Control on Roads with... propose mapaided vehicle localization method g... 1 0 0 0 0 0
1224 Estimating Tactile Data for Adaptive Grasping ... present adaptive grasping method finds stable ... 1 0 0 0 0 0
1225 Generalization Bounds of SGLD for Non-convex L... algorithmdependent generalization error bounds... 1 0 1 1 0 0
1226 Near-UV OH Prompt Emission in the Innermost Co... deep impact spacecraft flyby comet phartley oc... 0 1 0 0 0 0
1227 Effective gravity and effective quantum equati... paper suggest macroscopic toy system potential... 0 1 0 0 0 0
1228 A gradient estimate for nonlocal minimal graphs consider class measurable functions defined ma... 0 0 1 0 0 0
1229 The GAPS Programme with HARPS-N@TNG XIV. Inves... carried bayesian homogeneous determination orb... 0 1 0 0 0 0
1230 Injective stabilization of additive functors. ... paper first one series three dealing concept i... 0 0 1 0 0 0
1231 Three hypergraph eigenvector centralities eigenvector centrality standard network analys... 1 0 0 0 0 0
1232 Reinforcement Learning using Augmented Neural ... neural networks allow qlearning reinforcement ... 0 0 0 1 0 0
1233 Instantons and Fluctuations in a Lagrangian Mo... perform detailed analytical study recent fluid... 0 1 0 0 0 0
1234 The heavy path approach to Galton-Watson trees... study heavy path decomposition conditional gal... 1 0 1 0 0 0
1235 Perishability of Data: Dynamic Pricing under V... consider firm sells large number products cust... 1 0 0 1 0 0
1236 A fast algorithm for maximal propensity score ... present new algorithm detects maximal possible... 1 0 0 1 0 0
1237 Fractional quantum Hall systems near nematicit... perform detailed comparison dirac composite fe... 0 1 0 0 0 0
1238 Recognizing Objects In-the-wild: Where Do We S... ability recognize objects essential skill robo... 1 0 0 0 0 0
1239 Generalizing Geometric Brownian Motion convert standard brownian motion z positive pr... 0 0 0 0 0 1
1240 Challenges testing the no-hair theorem with gr... general relativitys nohair theorem states isol... 0 1 0 0 0 0
1241 Speculation On a Source of Dark Matter drawing analogy superfluid vortices suggest da... 0 1 0 0 0 0
1242 Analyzing Cloud Optical Properties Using Sky C... clouds play significant role fluctuation solar... 0 1 0 0 0 0
1243 Response Formulae for $n$-point Correlations i... predicting response system perturbations key c... 0 1 1 0 0 0
1244 The Australian PCEHR system: Ensuring Privacy ... electronic health record ehr designed store di... 1 0 0 0 0 0
1245 Randomized Kernel Methods for Least-Squares Su... leastsquares support vector machine frequently... 1 0 0 1 0 0
1246 Optimal Transport: Fast Probabilistic Approxim... propose simple subsampling scheme fast randomi... 0 0 0 1 0 0
1247 Reliable Clustering of Bernoulli Mixture Models bernoulli mixture model bmm finite mixture ran... 1 0 0 1 0 0
1248 Short-time behavior of the heat kernel and Wey... paper prove pointwise convergence heat kernels... 0 0 1 0 0 0
1249 Football and Beer - a Social Media Analysis on... many societies alcohol legal common recreation... 1 0 0 0 0 0
1250 Cross-stream migration of a surfactant-laden d... motion viscous deformable droplet suspended un... 0 1 0 0 0 0
1251 PCA in Data-Dependent Noise (Correlated-PCA): ... study principal component analysis pca setting... 1 0 0 1 0 0
1252 Using a Predator-Prey Model to Explain Variati... spot pricing scheme considered resourceefficie... 1 0 0 0 0 0
1253 Separatrix crossing in rotation of a body with... consider free rotation body whose parts move s... 0 1 0 0 0 0
1254 SING: Symbol-to-Instrument Neural Generator recent progress deep learning audio synthesis ... 1 0 0 0 0 0
1255 Path-by-path regularization by noise for scala... prove pathbypath regularization noise result s... 0 0 1 0 0 0
1256 An End-to-End Trainable Neural Network Model w... present novel endtoend trainable neural networ... 1 0 0 0 0 0
1257 Neural IR Meets Graph Embedding: A Ranking Mod... recently neural models information retrieval b... 1 0 0 0 0 0
1258 Scaling up the software development process, a... diamond light source uks national synchrotron ... 1 0 0 0 0 0
1259 Lyapunov exponents for products of matrices let bf mmldots mk tuple real dtimes matrices c... 0 0 1 0 0 0
1260 A definitive improvement of a game-theoretic b... main goal paper full proof cardinal inequality... 0 0 1 0 0 0
1261 Group-Server Queues analyzing energyefficient management data cent... 1 0 0 0 0 0
1262 MC$^2$: Multi-wavelength and dynamical analysi... analyze rich dataset including subarusuprimeca... 0 1 0 0 0 0
1263 Bayesian adaptive bandit-based designs using t... adaptive designs multiarmed clinical trials be... 0 0 0 1 0 0
1264 Convexification of Queueing Formulas by Mixed-... mixedinteger secondorder cone programs misocps... 1 0 0 0 0 0
1265 Discriminative Metric Learning with Deep Forest discriminative deep forest disdf metric learni... 1 0 0 1 0 0
1266 An accurate and robust genuinely multidimensio... simple robust genuinely multidimensional conve... 0 1 1 0 0 0
1267 Strong Convergence Rate of Splitting Schemes f... prove optimal strong convergence rate fully di... 0 0 1 0 0 0
1268 Controllability of Conjunctive Boolean Network... boolean network finite state discrete time dyn... 0 0 1 0 0 0
1269 Fast-neutron and gamma-ray imaging with a capi... gammaray fastneutron imaging performed novel l... 0 1 0 0 0 0
1270 Is Task Board Customization Beneficial? - An E... task board essential artifact many agile devel... 1 0 0 0 0 0
1271 Characterizing the impact of model error in hy... hydrogeologic models commonly oversmoothed rel... 0 0 1 0 0 0
1272 Suszko's Problem: Mixed Consequence and Compos... suszkos problem problem finding minimal number... 1 0 1 0 0 0
1273 Optimization of distributions differences for ... paper introduce new classification algorithm c... 1 0 0 1 0 0
1274 Galois descent of semi-affinoid spaces study galois descent semiaffinoid nonarchimede... 0 0 1 0 0 0
1275 Synthesis, Crystal Structure, and Physical Pro... synthesized new layered oxychalcogenide laobia... 0 1 0 0 0 0
1276 Planar Graph Perfect Matching is in NC perfect matching nc deterministic fast paralle... 1 0 0 0 0 0
1277 Recommendation under Capacity Constraints paper investigate common scenario every candid... 1 0 0 1 0 0
1278 Simulation to scaled city: zero-shot policy tr... using deep reinforcement learning train contro... 1 0 0 0 0 0
1279 Relative Singularity Categories study following generalization singularity cat... 0 0 1 0 0 0
1280 Challenges to Keeping the Computer Industry Ce... undeniable worldwide computer industrys center... 1 0 0 0 0 0
1281 Contiguous Relations, Laplace's Methods and Co... using contiguous relations construct infinite ... 0 0 1 0 0 0
1282 Arimoto-Rényi Conditional Entropy and Bayesian... paper gives upper lower bounds minimum error p... 1 0 1 1 0 0
1283 A note on the violation of Bell's inequality bells inequalities one formal expression show ... 0 1 0 0 0 0
1284 Real-Time Model Predictive Control for Energy ... improving endurance crucial extending spatial ... 1 0 0 0 0 0
1285 Surjective H-Colouring over Reflexive Digraphs surjective hcolouring problem test given graph... 1 0 0 0 0 0
1286 A modal typing system for self-referential pro... paper proposes modal typing system enables us ... 1 0 0 0 0 0
1287 Scalable Realistic Recommendation Datasets thr... recommender system research suffers currently ... 1 0 0 1 0 0
1288 Implementation of a Distributed Coherent Quant... paper considers problem implementing previousl... 1 0 1 0 0 0
1289 Stacking and stability stacking general approach combining multiple m... 1 0 0 1 0 0
1290 Accelerating Discrete Wavelet Transforms on GPUs twodimensional discrete wavelet transform huge... 1 0 0 0 0 0
1291 Accelerated Consensus via Min-Sum Splitting apply minsum messagepassing protocol solve con... 0 0 1 0 0 0
1292 Chemception: A Deep Neural Network with Minima... last years seen transformative impact deep lea... 1 0 0 1 0 0
1293 Constraining the Milky Way assembly history wi... aim galactic archaeology recover evolutionary ... 0 1 0 0 0 0
1294 A unified view of entropy-regularized Markov d... propose general framework entropyregularized a... 1 0 0 1 0 0
1295 Arithmetic Circuits for Multilevel Qudits Base... present basic integer arithmetic quantum circu... 1 0 0 0 0 0
1296 Quantifying the distribution of editorial powe... analyzed longitudinal activity nearly editors ... 1 1 0 0 0 0
1297 Threshold Constraints with Guarantees for Pari... beyond worstcase synthesis problem introduced ... 1 0 1 0 0 0
1298 GLSR-VAE: Geodesic Latent Space Regularization... vaes variational autoencoders proved powerful ... 1 0 0 1 0 0
1299 Timing Solution and Single-pulse Properties fo... rotating radio transients rrats loosely define... 0 1 0 0 0 0
1300 Strong and broadly tunable plasmon resonances ... lowdimensional plasmonic materials function hi... 0 1 0 0 0 0
1301 The coordination of centralised and distribute... paper analyse interaction centralised carbon e... 0 0 1 0 0 0
1302 Computation of annular capacity by Hamiltonian... first author introduced relative symplectic ca... 0 0 1 0 0 0
1303 A New Torsion Pendulum for Gravitational Refer... report design sensitivity new torsion pendulum... 0 1 0 0 0 0
1304 Optical Angular Momentum in Classical Electrod... invoking maxwells classical equations conjunct... 0 1 0 0 0 0
1305 Efficient variational Bayesian neural network ... work perform outlier detection using ensembles... 1 0 0 1 0 0
1306 Emergent high-spin state above 7 GPa in superc... local electronic magnetic properties supercond... 0 1 0 0 0 0
1307 Verification in Staged Tile Self-Assembly prove unique assembly unique shape verificatio... 1 0 0 0 0 0
1308 Combinets: Creativity via Recombination of Neu... one defining characteristics human creativity ... 0 0 0 1 0 0
1309 Siamese Network of Deep Fisher-Vector Descript... paper addresses problem large scale image retr... 1 0 0 0 0 0
1310 Gender Disparities in Science? Dropout, Produc... scientific collaborations shape ideas well inn... 1 1 0 0 0 0
1311 Estimating a network from multiple noisy reali... complex interactions entities often represente... 0 0 1 1 0 0
1312 Autonomous drone race: A computationally effic... drone racing becoming popular sport human pilo... 1 0 0 0 0 0
1313 Experimental investigations on nucleation, bub... combustion characteristics ethanoljet fuel dro... 0 1 0 0 0 0
1314 Hypergraph $p$-Laplacian: A Differential Geome... graph laplacian plays key roles information pr... 1 0 0 1 0 0
1315 Controlling motile disclinations in a thick ne... manipulating topological disclination networks... 0 1 0 0 0 0
1316 How Generative Adversarial Networks and Their ... generative adversarial networks gan received w... 1 0 0 0 0 0
1317 Principal Boundary on Riemannian Manifolds revisit classification problem focus nonlinear... 1 0 0 1 0 0
1318 Exploiting network topology for large-scale in... development chemical reaction models aids unde... 1 0 0 1 0 0
1319 Numerical investigations of non-uniqueness for... consider cauchy problem incompressible naviers... 0 1 1 0 0 0
1320 Time-lagged autoencoders: Deep learning of slo... inspired success deep learning techniques phys... 1 1 0 1 0 0
1321 Some integrable maps and their Hirota bilinear... introduce twoparameter family birational maps ... 0 1 0 0 0 0
1322 Dynamics of higher-order rational solitons for... integrable nonlocal nonlinear schrodinger nnls... 0 1 1 0 0 0
1323 N2N Learning: Network to Network Compression v... bigger deeper neural network architectures con... 1 0 0 1 0 0
1324 Spectral analysis of stationary random bivaria... novel approach towards spectral analysis stati... 0 0 0 1 0 0
1325 Scalable Gaussian Processes with Billions of I... propose method ttgp approximate inference gaus... 1 0 0 1 0 0
1326 Some preliminary results on the set of princip... second edition congruence lattice book problem... 0 0 1 0 0 0
1327 Extracting 3D Vascular Structures from Microsc... vasculature known key biological significance ... 1 0 0 0 0 0
1328 Search for Interstellar LiH in the Milky Way report results sensitive search ghz j transiti... 0 1 0 0 0 0
1329 Neural Probabilistic Model for Non-projective ... paper propose probabilistic parsing model defi... 1 0 0 1 0 0
1330 Modularity of complex networks models modularity designed measure strength division ... 0 0 1 0 0 0
1331 BOLD5000: A public fMRI dataset of 5000 images vision science particularly machine vision rev... 0 0 0 0 1 0
1332 Prospects for gravitational wave astronomy wit... next generation radio telescopes namely fivehu... 0 1 0 0 0 0
1333 On Identifiability of Nonnegative Matrix Facto... letter propose new identification criterion gu... 1 0 0 1 0 0
1334 Optimal Non-blocking Decentralized Supervisory... supervisory control synthesis encounters compu... 1 0 0 0 0 0
1335 Fair mixing: the case of dichotomous preferences agents vote choose fair mixture public outcome... 1 0 0 0 0 0
1336 Inverse system characterizations of the (hered... give criteria inverse system finite groups ens... 0 0 1 0 0 0
1337 p-FP: Extraction, Classification, and Predicti... recent advances learning deep neural network d... 1 0 0 1 0 0
1338 Equal confidence weighted expectation value es... article issues discussed bayesian approach lea... 0 0 1 1 0 0
1339 Protein Folding and Machine Learning: Fundamen... spite decades research much remains discovered... 0 0 0 0 1 0
1340 Discrete configuration spaces of squares and h... consider generalizations familiar fifteenpiece... 1 0 1 0 0 0
1341 On the non commutative Iwasawa main conjecture... establish iwasawa main conjecture semistable a... 0 0 1 0 0 0
1342 Absorption and Emission Probabilities of Elect... consider induced emission ultrarelativistic el... 0 1 0 0 0 0
1343 Design, Development and Evaluation of a UAV to... measuring gases air quality monitoring challen... 1 0 0 0 0 0
1344 Gaussian Process bandits with adaptive discret... paper problem maximizing blackbox function fma... 1 0 0 1 0 0
1345 Conditional Time Series Forecasting with Convo... present method conditional time series forecas... 0 0 0 1 0 0
1346 Automated Assistants to Identify and Prompt Ac... bias common problem todays media appearing fre... 1 0 0 0 0 0
1347 A Matched Filter Technique For Slow Radio Tran... many astronomical sources produce transient ph... 0 1 0 0 0 0
1348 Shape and Energy Consistent Pseudopotentials f... method developed generating pseudopotentials u... 0 1 0 0 0 0
1349 Bayes model selection offer general bayes theoretic framework tackle... 0 0 1 1 0 0
1350 Phase Congruency Parameter Optimization for En... following presentation proof hypothesis image ... 1 0 1 0 0 0
1351 Community structure detection and evaluation d... detecting evaluating regions brain various cir... 1 0 0 0 1 0
1352 Shapley effects for sensitivity analysis with ... global sensitivity analysis numerical model ai... 0 0 1 1 0 0
1353 Ridesourcing Car Detection by Transfer Learning ridesourcing platforms like uber didi getting ... 1 0 0 1 0 0
1354 A Semantic Cross-Species Derived Data Manageme... managing dynamic information large multisite m... 1 0 0 0 0 0
1355 Retrosynthetic reaction prediction using neura... describe fully data driven model learns perfor... 1 0 0 1 0 0
1356 Redshift, metallicity and size of two extended... present results spectroscopic photometric foll... 0 1 0 0 0 0
1357 Collapsing hyperkähler manifolds given projective hyperkahler manifold holomorp... 0 0 1 0 0 0
1358 Fast amortized inference of neural activity fr... calcium imaging permits optical measurement ne... 1 0 0 1 0 0
1359 Hidden multiparticle excitation in weakly inte... investigate multiparticle excitation effect co... 0 1 0 0 0 0
1360 Hausdorff Measure: Lost in Translation present article describe one define hausdorff ... 0 0 1 0 0 0
1361 Orthogonalized ALS: A Theoretically Principled... popular alternating least squares als algorith... 1 0 0 1 0 0
1362 Domain Generalization by Marginal Transfer Lea... domain generalization problem assigning class ... 0 0 0 1 0 0
1363 (Non-)formality of the extended Swiss Cheese o... study two colored operads configurations littl... 0 0 1 0 0 0
1364 Pricing options and computing implied volatili... paper proposes datadriven approach means artif... 1 0 0 0 0 1
1365 Effect of magnetization on the tunneling anoma... tunneling electrons twodimensional electron sy... 0 1 0 0 0 0
1366 Learning to Acquire Information consider problem diagnosis set simple observat... 1 0 0 1 0 0
1367 How hard is it to cross the room? -- Training ... work explores feasibility steering drone recur... 1 0 0 0 0 0
1368 Range-efficient consistent sampling and locali... localitysensitive hashing lsh fundamental tech... 1 0 0 0 0 0
1369 Decoupled Greedy Learning of CNNs commonly cited inefficiency neural network tra... 1 0 0 1 0 0
1370 Discrete time Pontryagin maximum principle for... establish pontryagin maximum principle discret... 1 0 1 0 0 0
1371 Quantitative evaluation of an active Chemotaxi... system n particles chemical medium mathbbrd st... 0 0 1 0 0 0
1372 Deep Learning the Ising Model Near Criticality well established neural networks deep architec... 1 1 0 1 0 0
1373 A supervised approach to time scale detection ... stream timestamped edges form dynamic network ... 1 0 0 0 0 0
1374 Binarized octree generation for Cartesian adap... revisit generation balanced octrees adaptive m... 1 1 0 0 0 0
1375 Adversarial Examples: Opportunities and Challe... advent era artificial intelligenceai deep neur... 0 0 0 1 0 0
1376 Decoupling Learning Rules from Representations artificial intelligence field learning often c... 1 0 0 1 0 0
1377 Schur P-positivity and involution Stanley symm... involution stanley symmetric functions hatfy s... 0 0 1 0 0 0
1378 A Riemannian gossip approach to subspace learn... paper focus subspace learning problems grassma... 1 0 1 0 0 0
1379 Space-Valued Diagrams, Type-Theoretically (Ext... topologists sometimes interested spacevalued d... 1 0 1 0 0 0
1380 Properties of cyanobacterial UV-absorbing pigm... ancient repertoire uv absorbing pigments survi... 0 1 0 0 0 0
1381 Output Impedance Diffusion into Lossy Power Lines output impedances inherent elements power sour... 1 0 0 0 0 0
1382 Enhancing the significance of gravitational wa... quest observe gravitational waves challenges a... 0 1 0 0 0 0
1383 Model-based Clustering with Sparse Covariance ... finite gaussian mixture models widely used mod... 0 0 0 1 0 0
1384 An Assessment of Data Transfer Performance for... document data transfer workflow data transfer ... 1 1 0 0 0 0
1385 Generalization for Adaptively-chosen Estimator... datasets often reused perform multiple statist... 1 0 0 1 0 0
1386 Automated Problem Identification: Regression v... regression classification perhaps basic questi... 1 0 0 1 0 0
1387 Attribution of extreme rainfall in Southeast C... anthropogenic climate change increased probabi... 0 1 0 0 0 0
1388 The Kellogg property and boundary regularity f... paper boundary regularity pharmonic functions ... 0 0 1 0 0 0
1389 Nonparametric Inference via Bootstrapping the ... paper propose construct confidence bands boots... 0 0 1 1 0 0
1390 Solving constraint-satisfaction problems with ... finding actions satisfy constraints imposed ex... 0 0 0 0 1 0
1391 Automatic Brain Tumor Detection and Segmentati... major challenge brain tumor treatment planning... 1 0 0 0 0 0
1392 Asymptotic Blind-spot Analysis of Localization... localization network lineofsight anchors trans... 1 0 0 0 0 0
1393 The relation between galaxy morphology and col... investigate relation kinematic morphology intr... 0 1 0 0 0 0
1394 An alternative to continuous univariate distri... paper introduce bmt distribution unimodal alte... 0 0 1 1 0 0
1395 Deep Object Centric Policies for Autonomous Dr... learning visuomotor skills endtoend manner app... 1 0 0 0 0 0
1396 A Search for Laser Emission with Megawatt Thre... searched high resolution spectra nearby stars ... 0 1 0 0 0 0
1397 Learning Large Scale Ordinary Differential Equ... learning large scale nonlinear ordinary differ... 0 0 1 1 0 0
1398 Linear Time Clustering for High Dimensional Mi... clustering mixtures gaussian distributions fun... 1 0 0 0 0 0
1399 Estimation of Relationship between Stimulation... study developed method estimate relationship s... 0 0 0 0 1 0
1400 Facial Keypoints Detection detect facial keypoints critical element face ... 1 0 0 1 0 0
1401 Transitions from a Kondo-like diamagnetic insu... one initial essential question magnetism wheth... 0 1 0 0 0 0
1402 Sample, computation vs storage tradeoffs for c... paper exhibit tradeoffs training sample comput... 1 0 0 1 0 0
1403 One-step Estimation of Networked Population Si... estimates population size hidden hardtoreach i... 1 0 0 1 0 0
1404 Real single ion solvation free energies with q... single ion solvation free energies one importa... 0 1 0 0 0 0
1405 Crowdsourcing with Sparsely Interacting Workers consider estimation worker skills workertask i... 1 0 0 0 0 0
1406 Training deep learning based denoisers without... recent deep learning based denoisers often out... 0 0 0 1 0 0
1407 Language Design and Renormalization consider wellknown facts syntax physics perspe... 1 1 0 0 0 0
1408 On the geometry of the moduli space of sheaves... study moduli space stable sheaves euler charac... 0 0 1 0 0 0
1409 Attention Solves Your TSP, Approximately development efficient heuristic algorithms pra... 0 0 0 1 0 0
1410 A Distributed Online Pricing Strategy for Dema... study demand response problem utility also ref... 1 0 1 0 0 0
1411 Highly Nonlinear and Low Confinement Loss Phot... paper presents triangular lattice photonic cry... 0 1 0 0 0 0
1412 Is Epicurus the father of Reinforcement Learning? epicurean philosophy commonly thought simplist... 1 0 0 1 0 0
1413 Low-Precision Floating-Point Schemes for Neura... use lowprecision fixedpoint arithmetic along s... 0 0 0 1 0 0
1414 Deep Person Re-Identification with Improved Em... person reidentification task greatly boosted d... 1 0 0 0 0 0
1415 Unsupervised speech representation learning us... consider task unsupervised extraction meaningf... 1 0 0 1 0 0
1416 Many-body localization caused by temporal diso... manybody localization mbl commonly related str... 0 1 0 0 0 0
1417 Second-generation p-values: improved rigor, re... verifying statistically significant result sci... 0 0 0 1 0 0
1418 Latency Optimal Broadcasting in Noisy Wireless... paper adopt new noisy wireless network model i... 1 0 0 0 0 0
1419 Construction of Directed 2K Graphs study problem constructing synthetic graphs re... 1 0 0 0 0 0
1420 Pattern Generation Strategies for Improving Re... recognition handwritten mathematical expressio... 1 0 0 0 0 0
1421 Actions of automorphism groups of Lie groups expository article properties actions lie grou... 0 0 1 0 0 0
1422 Interplay between relativistic energy correcti... paper theoretically study xray multiphoton ion... 0 1 0 0 0 0
1423 Collective spin excitations of helices and mag... magnetic materials hosting correlated electron... 0 1 0 0 0 0
1424 On the Relation between Color Image Denoising ... large amount image denoising literature focuse... 1 0 0 0 0 0
1425 A simplicial decomposition framework for large... paper analyze depth simplicial decomposition l... 0 0 1 0 0 0
1426 A Logic of Blockchain Updates blockchains distributed data structures used a... 1 0 0 0 0 0
1427 A proof of the Flaherty-Keller formula on the ... prove mathematically rigorous way asymptotic f... 0 0 1 0 0 0
1428 Regret Bounds for Reinforcement Learning via M... give simple optimistic algorithm easy derive r... 0 0 0 1 0 0
1429 Superradiance with local phase-breaking effects study superradiant evolution set n twolevel sy... 0 1 0 0 0 0
1430 Kinetic model of selectivity and conductivity ... introduce selfconsistent multispecies kinetic ... 0 1 0 0 0 0
1431 The affine approach to homogeneous geodesics i... recent paper claimed homogeneous finsler space... 0 0 1 0 0 0
1432 About Synchronized Globular Cluster Formation ... observational theoretical arguments support id... 0 1 0 0 0 0
1433 Geometric counting on wavefront real spherical... provide lpversus linftybounds eigenfunctions r... 0 0 1 0 0 0
1434 Fate of the spin-\frac{1}{2} Kondo effect in t... consider strongly interacting quantum dot conn... 0 1 0 0 0 0
1435 Extragalactic source population studies at ver... cherenkov telescope array cta next generation ... 0 1 0 0 0 0
1436 Modeling the SBC Tanzania Production-Distribut... increase customer expectation terms cost servi... 0 0 1 0 0 0
1437 Dark matter in dwarf galaxies although cuspcore controversy dwarf galaxies s... 0 1 0 0 0 0
1438 A Survey of Parallel A* bestfirst search algorithm finding optimalcost... 1 0 0 0 0 0
1439 Large second harmonic generation enhancement i... integrated waveguides exhibiting efficient sec... 0 1 0 0 0 0
1440 Large Scale Constrained Linear Regression Revi... paper revisit largescale constrained linear re... 0 0 0 1 0 0
1441 Geometrical dependence of domain wall propagat... study key domain wall properties segmented nan... 0 1 0 0 0 0
1442 Faster Rates for Policy Learning article improves existing proven rates regret ... 0 0 1 1 0 0
1443 Anisotropic Exchange in ${\bf LiCu_2O_2}$ investigate magnetic properties multiferroic q... 0 1 0 0 0 0
1444 Which friends are more popular than you? Conta... friendship paradox states social network egos ... 1 1 0 0 0 0
1445 Stochastic Optimization with Bandit Sampling many stochastic optimization algorithms work e... 1 0 0 1 0 0
1446 Learning Robust Options robust reinforcement learning aims produce pol... 0 0 0 1 0 0
1447 Levitation of non-magnetizable droplet inside ... central theme work stable levitation denser no... 0 1 0 0 0 0
1448 Simultaneous Detection of H and D NMR Signals ... present nmr spectra remotemagnetized deuterate... 0 1 0 0 0 0
1449 Learning Deep Networks from Noisy Labels with ... large datasets often unreliable labelssuch obt... 1 0 0 1 0 0
1450 On Efficiently Detecting Overlapping Communiti... modern networks huge sizes well high dynamics ... 1 0 0 0 0 0
1451 Structured Black Box Variational Inference for... continuous latent time series models prevalent... 1 0 0 1 0 0
1452 $L^p$ Norms of Eigenfunctions on Regular Graph... prove upper bounds lp norms eigenfunctions dis... 0 0 1 0 0 0
1453 Spatially distributed multipartite entanglemen... key resource distributed quantumenhanced proto... 0 1 0 0 0 0
1454 Multipath IP Routing on End Devices: Motivatio... end devices equipped multiple network interfac... 1 0 0 0 0 0
1455 Defense semantics of argumentation: encoding r... paper show defense relation among abstract arg... 1 0 0 0 0 0
1456 Fast Global Convergence via Landscape of Empir... optimizing convex objective loss functions pow... 0 0 0 1 0 0
1457 Photodetector figures of merit in terms of POVMs photodetector may characterized various figure... 0 1 0 0 0 0
1458 Kinetics of Protein-DNA Interactions: First-Pa... living systems function far away equilibrium r... 0 0 0 0 1 0
1459 Jamming transitions induced by an attraction i... numerically study jamming transitions pedestri... 0 1 0 0 0 0
1460 A Deep Active Survival Analysis Approach for P... survival analysis developed applied number are... 0 0 0 1 0 0
1461 Detecting Topological Changes in Dynamic Commu... study timevarying dynamic networks graphs fund... 1 0 0 0 0 0
1462 Online Boosting Algorithms for Multi-label Ran... consider multilabel ranking approach multilabe... 1 0 0 1 0 0
1463 Semisuper Efimov effect of two-dimensional bos... waveparticle duality quantum mechanics allows ... 0 1 0 0 0 0
1464 Free quantitative fourth moment theorems on Wi... prove quantitative fourth moment theorem wigne... 0 0 1 0 0 0
1465 Optimizing the Latent Space of Generative Netw... generative adversarial networks gans shown abl... 1 0 0 1 0 0
1466 Conservativity of realizations on motives of a... show ladic realization functor conservative re... 0 0 1 0 0 0
1467 Towards understanding startup product developm... software startups face multiple technical busi... 1 0 0 0 0 0
1468 Generalized Dirac structure beyond the linear ... show generalized dirac structure survives beyo... 0 1 0 0 0 0
1469 Generative Mixture of Networks generative model based training deep architect... 1 0 0 1 0 0
1470 Shape-dependence of the barrier for skyrmions ... single magnetic skyrmions localized whirls mag... 0 1 0 0 0 0
1471 Further Results on Size and Power of Heteroske... complement theory developed preinerstorfer pts... 0 0 1 1 0 0
1472 A powerful approach to the study of moderate e... effect modification means magnitude stability ... 0 0 0 1 0 0
1473 Ad-blocking: A Study on Performance, Privacy a... many internet ventures rely advertising revenu... 1 0 0 0 0 0
1474 On the quantum differentiation of smooth real-... calculating value ckininfty class smoothness r... 0 0 1 0 0 0
1475 On recognizing shapes of polytopes from their ... let p q two convex polytopes contained interio... 0 0 1 0 0 0
1476 Variational methods for steady-state Darcy/Fic... existence steady states elastic media small st... 0 0 1 0 0 0
1477 Case Studies on Plasma Wakefield Accelerator D... field plasmabased particle accelerators seen t... 0 1 0 0 0 0
1478 GANs for Biological Image Synthesis paper propose novel application generative adv... 1 0 0 1 0 0
1479 An objective classification of Saturn cloud fe... clustering algorithm applied cassini imaging s... 0 1 0 0 0 0
1480 The Peridynamic Stress Tensors and the Non-loc... reexamine notion stress peridynamics based ide... 0 1 0 0 0 0
1481 Identification of Unmodeled Objects from Symbo... successful humanrobot cooperation hinges agent... 1 0 0 1 0 0
1482 Balanced News Using Constrained Bandit-based P... present prototype news search engine presents ... 1 0 0 0 0 0
1483 Intuitionistic Layered Graph Logic: Semantics ... models complex systems widely used physical so... 1 0 0 0 0 0
1484 Learning Efficient Image Representation for Pe... color names based image representation success... 1 0 0 0 0 0
1485 Exciting Nucleons in Compton Scattering and Hy... phd thesis devoted lowenergy structure nucleon... 0 1 0 0 0 0
1486 Multiple universalities in order-disorder magn... phase transitions isotropic quantum antiferrom... 0 1 0 0 0 0
1487 Exact Inference of Causal Relations in Dynamic... philosophers ancient times modern economists b... 0 0 0 0 1 0
1488 Privacy-Preserving Deep Inference for Rich Use... deep neural networks increasingly used variety... 1 0 0 0 0 0
1489 Gradient Method With Inexact Oracle for Compos... paper develop new firstorder method composite ... 0 0 1 0 0 0
1490 Kernel Implicit Variational Inference recent progress variational inference paid muc... 1 0 0 1 0 0
1491 The Ringel dual of the Auslander-Dlab-Ringel a... adr algebra ra finitedimensional algebra quasi... 0 0 1 0 0 0
1492 The socle filtrations of principal series repr... study structure mathfrakgkmodules principal se... 0 0 1 0 0 0
1493 Improving the phase response of an atom interf... study theoretically experimentally influence t... 0 1 0 0 0 0
1494 Helium-like and Lithium-like ions: Ground stat... shown nonrelativistic ground state energy heli... 0 1 0 0 0 0
1495 Improvement of training set structure in fusio... traditional data cleaning identifies dirty dat... 1 0 0 0 0 0
1496 Eigenvalue Solvers for Modeling Nuclear Reacto... three complementary methods implemented code d... 1 1 0 0 0 0
1497 Thermoregulation in mice, rats and humans: An ... thermoregulation system animals removes body h... 0 0 0 0 1 0
1498 Koszul A-infinity algebras and free loop space... introduce notion koszul ainfinity algebra gene... 0 0 1 0 0 0
1499 Learning RBM with a DC programming Approach exploiting property rbm loglikelihood function... 1 0 0 1 0 0
1500 Duality and Universal Transport in a Mixed-Dim... consider theory twocomponent dirac fermion loc... 0 1 0 0 0 0
1501 Beyond similarity assessment: Selecting the op... pair hidden markov models phmms probabilistic ... 0 0 0 1 0 0
1502 Experimental evidence for Glycolaldehyde and E... study focuses formation two molecules astrobio... 0 1 0 0 0 0
1503 New Methods of Enhancing Prediction Accuracy i... paper prediction linear systems missing inform... 1 0 0 1 0 0
1504 Revisiting Imidazolium Based Ionic Liquids: Ef... study ionic liquids composed alkylmethylimidaz... 0 1 0 0 0 0
1505 Tick: a Python library for statistical learnin... tick statistical learning library python parti... 0 0 0 1 0 0
1506 An energy method for rough partial differentia... present wellposedness stability result class n... 0 0 1 0 0 0
1507 Sparse Inverse Covariance Estimation for Chord... paper consider graphical lasso gl popular opti... 0 0 0 1 0 0
1508 Orthogonal free quantum group factors are stro... prove orthogonal free quantum group factors ma... 0 0 1 0 0 0
1509 Enhanced spin ordering temperature in ultrathi... studied temperature dependence diagonal double... 0 1 0 0 0 0
1510 High Order Hierarchical Divergence-free Constr... paper use interior functions hierarchical basi... 0 0 1 0 0 0
1511 REMOTEGATE: Incentive-Compatible Remote Config... imagine malicious hacker trying attack server ... 1 0 0 0 0 0
1512 Distributed Event-Triggered Control for Global... consider global consensus problem multiagent s... 0 0 1 0 0 0
1513 Autocommuting probability of a finite group re... let h subseteq k two subgroups finite group g ... 0 0 1 0 0 0
1514 Total variation regularization with variable L... work proposes variable exponent lebesgue modul... 0 0 1 0 0 0
1515 Radio observations confirm young stellar popul... present radio observations ghz local objects s... 0 1 0 0 0 0
1516 Sparse Deep Neural Network Exact Solutions deep neural networks dnns emerged key enablers... 0 0 0 1 0 0
1517 Variation formulas for an extended Gompf invar... r gompf defined homotopy invariant thetag orie... 0 0 1 0 0 0
1518 A SAT+CAS Approach to Finding Good Matrices: N... enumerate circulant good matrices odd orders d... 1 0 0 0 0 0
1519 An Exploration of Mimic Architectures for Resi... spectral mapping uses deep neural network dnn ... 1 0 0 0 0 0
1520 Deep Neural Networks to Enable Real-time Multi... gravitational wave astronomy set motion scient... 1 1 0 0 0 0
1521 Contribution of cellular automata to the under... present stochastic ca modelling approach corro... 0 1 0 0 0 0
1522 Involutive bordered Floer homology give bordered extension involutive hfhat use g... 0 0 1 0 0 0
1523 Orbital Evolution, Activity, and Mass Loss of ... comprehensive study comet c focuses first inve... 0 1 0 0 0 0
1524 A Note on Property Testing Sum of Squares and ... paper investigate property testing whether deg... 1 0 0 0 0 0
1525 Closed-form mathematical expressions for the e... cauchyrayleigh cr distribution successfully us... 0 0 1 1 0 0
1526 HTEM data improve 3D modelling of aquifers in ... paris basin evaluate htem data complement usua... 0 1 0 0 0 0
1527 Implementing GraphQL as a Query Language for D... methods access large relational databases dist... 1 0 0 0 0 0
1528 Social Network based Short-Term Stock Trading ... paper proposes novel adaptive algorithm automa... 1 0 0 0 0 1
1529 New Determinant Expressions of the Multi-index... multiindexed orthogonal polynomials meixner li... 0 1 1 0 0 0
1530 Rethinking generalization requires revisiting ... describe approach understand peculiar counteri... 1 0 0 1 0 0
1531 Towards an Understanding of the Effects of Aug... locationbased augmented reality games entered ... 1 0 0 0 0 0
1532 Integrating a Global Induction Mechanism into ... interesting proofs mathematics contain inducti... 1 0 0 0 0 0
1533 An analytic resolution to the competition betw... near pristine atomic cooling halo close star f... 0 1 0 0 0 0
1534 Driving Interactive Graph Exploration Using 0-... graphs commonly used encode relationships amon... 1 0 0 0 0 0
1535 Identification of Conduit Countries and Commun... due economic globalization countrys economic l... 0 0 0 0 0 1
1536 A comprehensive study of batch construction st... work compare different batch construction meth... 1 0 0 1 0 0
1537 On a class of shift-invariant subspaces of the... druryarveson space consider subspace functions... 0 0 1 0 0 0
1538 Airborne gamma-ray spectroscopy for modeling c... paper present results sim hour airborne gammar... 0 1 0 0 0 0
1539 Search for axions in streaming dark matter new search strategy detection elusive dark mat... 0 1 0 0 0 0
1540 Faster integer and polynomial multiplication u... present algorithm computes product two nbit in... 1 0 0 0 0 0
1541 Reward Maximization Under Uncertainty: Leverag... study stochastic multiarmed bandit mab problem... 1 0 0 1 0 0
1542 Verifying Safety of Functional Programs with R... goal unbounded program verification discover i... 1 0 0 0 0 0
1543 Extended Formulations for Polytopes of Regular... present simple proof fact base independence po... 1 0 1 0 0 0
1544 Multiscale Change-point Segmentation: Beyond S... modern multiscale type segmentation methods kn... 0 0 1 1 0 0
1545 Data Motif-based Proxy Benchmarks for Big Data... architecture community reasonable simulation t... 1 0 0 0 0 0
1546 The neighborhood lattice for encoding partial ... neighborhood regression successful approach gr... 1 0 1 1 0 0
1547 The 2-adic complexity of a class of binary seq... pseudorandom sequences good statistical proper... 1 0 1 0 0 0
1548 Nesterov's Smoothing Technique and Minimizing ... bilevel hierarchical clustering model commonly... 0 0 1 0 0 0
1549 Minimal solutions to generalized Lambda-semifl... generalized lambdasemiflows abstraction semifl... 0 0 1 0 0 0
1550 Newton-Type Methods for Non-Convex Optimizatio... consider variants trustregion cubic regulariza... 1 0 0 1 0 0
1551 $G 1$-smooth splines on quad meshes with 4-spl... analyze space differentiable functions quadmes... 0 0 1 0 0 0
1552 BanglaLekha-Isolated: A Comprehensive Bangla H... bangla handwriting recognition becoming import... 1 0 0 0 0 0
1553 Estimates for maximal functions associated to ... article continue study problem lpboundedness m... 0 0 1 0 0 0
1554 Using Inertial Sensors for Position and Orient... recent years mems inertial sensors acceleromet... 1 0 0 0 0 0
1555 Heisenberg equation for a nonrelativistic part... classical mechanics nonrelativistic particle c... 0 1 0 0 0 0
1556 On constraining projections of future climate ... new bayesian framework presented constrain pro... 0 0 0 1 0 0
1557 Higher order molecular organisation as a sourc... molecular interactions widely modelled network... 0 0 0 0 1 0
1558 The Massive CO White Dwarf in the Symbiotic Re... accreting white dwarfs wd binary systems produ... 0 1 0 0 0 0
1559 Semi-equivelar maps on the torus are Archimedean facecycles vertices map surface type map calle... 0 0 1 0 0 0
1560 Dynamics of Porous Dust Aggregates and Gravita... consider dynamics porous icy dust aggregates t... 0 1 0 0 0 0
1561 Localization landscape theory of disorder in s... urbach tails semiconductors often associated e... 0 1 0 0 0 0
1562 Global teleconnectivity structures of the El N... recent work provided ample evidence global cli... 0 1 0 0 0 0
1563 Unbiased Shrinkage Estimation shrinkage estimation usually reduces variance ... 0 0 1 1 0 0
1564 Characterizing The Influence of Continuous Int... continuous integration ci tools integrate code... 1 0 0 0 0 0
1565 Why Abeta42 Is Much More Toxic Than Abeta40 amyloid precursor amino acids dimerizes aggreg... 0 0 0 0 1 0
1566 A Polynomial Time Algorithm for Spatio-Tempora... everimportant issue protecting infrastructure ... 1 0 0 0 0 0
1567 TIDBD: Adapting Temporal-difference Step-sizes... paper introduce method adapting stepsizes temp... 0 0 0 1 0 0
1568 Enhanced clustering tendency of Cu-impurities ... threshold carbonloadings initial tiohosts post... 0 1 0 0 0 0
1569 On Controllable Abundance Of Saturated-input L... several theorems volume computing polyhedron s... 1 0 1 0 0 0
1570 Localization and dynamics of sulfur-oxidizing ... organic material anoxic sediment represents gl... 0 1 0 0 0 0
1571 Probabilistic Surfel Fusion for Dense LiDAR Ma... recent development highend lidars systems able... 1 0 0 0 0 0
1572 Quantum Paramagnet and Frustrated Quantum Crit... motivated proposal topological quantum paramag... 0 1 0 0 0 0
1573 Characterizations of minimal dominating sets a... graph said welldominated minimal dominating se... 1 0 1 0 0 0
1574 To the Acceleration of Charged Particles with ... describe latest results calculations flexpde c... 0 1 0 0 0 0
1575 Affiliation networks with an increasing degree... affiliation network one kind twomode social ne... 0 0 1 1 0 0
1576 Coarse Grained Parallel Selection analyze running time saukassong algorithm sele... 1 0 0 0 0 0
1577 An IoT Analytics Embodied Agent Model based on... agentbased internet things iot applications re... 1 0 0 0 0 0
1578 Aggregation of Classifiers: A Justifiable Info... study introduce new approach combine multiclas... 1 0 0 1 0 0
1579 FRET-based nanocommunication with luciferase a... paper concerned inbody system gathering data m... 0 0 0 0 1 0
1580 FLASH: Randomized Algorithms Accelerated over ... present flash textbffast textbflsh textbfalgor... 1 0 0 0 0 0
1581 Neural Sequence Model Training via $α$-diverge... propose new neural sequence model training met... 1 0 0 1 0 0
1582 Output Range Analysis for Deep Neural Networks deep neural networks nn extensively used machi... 1 0 0 1 0 0
1583 Projection Theorems of Divergences and Likelih... projection theorems divergences enable us find... 0 0 1 1 0 0
1584 Optimal Timing in Dynamic and Robust Attacker ... advanced persistent threats apts stealthy atta... 1 0 0 0 0 0
1585 The Mismeasure of Mergers: Revised Limits on S... influential recent paper harvey et al derive u... 0 1 0 0 0 0
1586 International crop trade networks: The impact ... analyzing available fao data countries years o... 0 0 0 0 0 1
1587 Winning on the Merits: The Joint Effects of Co... debate deliberation play essential roles polit... 1 0 0 0 0 0
1588 Gene regulatory networks: a primer in biologic... modelling gene regulatory networks requires th... 0 0 0 1 1 0
1589 Mathematical Knowledge and the Role of an Obse... david berlinski writes existence nature mathem... 0 0 1 0 0 0
1590 Persuasive Technology For Human Development: R... technology extremely potent tool leveraged hum... 1 0 0 0 0 0
1591 Variable Prioritization in Nonlinear Black Box... central aim paper address variable selection q... 0 0 0 1 1 0
1592 Activit{é} motrice des truies en groupes dans ... assessment motor activity grouphoused sows com... 0 0 0 0 1 0
1593 Linking High-Energy Cosmic Particles by Black-... origin ultrahighenergy cosmic rays uhecrs half... 0 1 0 0 0 0
1594 Quantifying and suppressing ranking bias in a ... widely recognized citation counts papers diffe... 1 1 0 1 0 0
1595 Posterior Concentration for Bayesian Regressio... since inception regression trees one widely us... 0 0 1 1 0 0
1596 Predicting Oral Disintegrating Tablet Formulat... oral disintegrating tablets odts novel dosage ... 0 0 0 1 0 0
1597 HNCcorr: A Novel Combinatorial Approach for Ce... calcium imaging emerged workhorse method neuro... 0 0 1 0 0 0
1598 Intense cross-tail field-aligned currents in t... fieldaligned currents earths magnetotail tradi... 0 1 0 0 0 0
1599 First non-icosahedral boron allotrope synthesi... theoretical predictions pressureinduced phase ... 0 1 0 0 0 0
1600 A Result of Uniqueness of Solutions of the Shi... derive uniqueness weak solutions shigesadakawa... 0 0 1 0 0 0
1601 Mind the Gap: A Well Log Data Analysis main task oil gas exploration gain understandi... 1 0 0 1 0 0
1602 Inconsistency of Template Estimation with the ... tackle problem template estimation data random... 0 0 1 1 0 0
1603 All-optical switching and unidirectional plasm... highindex dielectric nanoparticles become powe... 0 1 0 0 0 0
1604 Group chasing tactics: how to catch a faster p... propose bioinspired agentbased approach descri... 0 1 0 1 0 0
1605 On solving a restricted linear congruence usin... consider linear congruence equation xldotsxk e... 0 0 1 0 0 0
1606 Magnetization spin dynamics in a (LuBi)3Fe5O12... bismuth substituted lutetium iron garnet blig ... 0 1 0 0 0 0
1607 Probing for sparse and fast variable selection... present new variable selection method based mo... 0 0 0 1 0 0
1608 A surface-hopping method for semiclassical cal... semicalssical method based surfacehopping tech... 0 1 0 0 0 0
1609 Holographic coherent states from random tensor... random tensor networks provide useful models i... 0 1 0 0 0 0
1610 Persistent Spread Measurement for Big Network ... persistent spread measurement count number dis... 1 0 0 0 0 0
1611 High-dimensional Linear Regression for Depende... last years extensive literature focused ell pe... 0 0 1 1 0 0
1612 Dynamic control of the optical emission from G... optical emission ingan quantum dots embedded g... 0 1 0 0 0 0
1613 Robust Tracking and Behavioral Modeling of Mov... propose novel computational method extract inf... 1 1 0 0 0 0
1614 Understanding Membership Inferences on Well-Ge... membership inference attack mia determines pre... 0 0 0 1 0 0
1615 Identification of Near-Infrared [Se III] and [... identify se iii micron planetary nebula pn ngc... 0 1 0 0 0 0
1616 On reduction of differential inclusions and Ly... paper locally lipschitz regular functions util... 1 0 0 0 0 0
1617 Deep Generative Networks For Sequence Prediction thesis investigates unsupervised time series r... 0 0 0 1 0 0
1618 Composite Behavioral Modeling for Identity The... work aim building bridge poor behavioral data ... 1 0 0 0 0 0
1619 Asymptotic properties of the set of systoles o... purpose article try understand mysterious coin... 0 0 1 0 0 0
1620 Nonlinear elliptic equations on Carnot groups article concerns class elliptic equations carn... 0 0 1 0 0 0
1621 Raptor Codes for Higher-Order Modulation Using... paper represent raptor codes multiedge type lo... 1 0 1 0 0 0
1622 A Tidy Data Model for Natural Language Process... package cleannlp provides set fast tools conve... 1 0 0 1 0 0
1623 Relaxation of the EM Algorithm via Quantum Ann... propose modified expectationmaximization algor... 0 1 0 1 0 0
1624 Multiband Superconductivity in the time revers... report point contact andreev reflection pcar m... 0 1 0 0 0 0
1625 Influence of broken-pair excitations on the ex... doubly occupied configuration interaction doci... 0 1 0 0 0 0
1626 Dynamical regularities of US equities opening ... first investigate evolution opening closing au... 0 0 0 0 0 1
1627 Comment on "Laser cooling of $^{173}$Yb for is... present measurements hyperfine splitting yb sp... 0 1 0 0 0 0
1628 Training GANs with Optimism address issue limit cycling behavior training ... 1 0 0 1 0 0
1629 New concepts of inertial measurements with mul... field cold atom inertial sensors present analy... 0 1 0 0 0 0
1630 LAMN in a class of parametric models for null ... study statistical models onedimensional diffus... 0 0 1 1 0 0
1631 A recipe for topological observables of densit... meaningful topological invariants mixed quantu... 0 1 0 0 0 0
1632 Generalization Tower Network: A Novel Deep Neu... deep learning dl advances stateoftheart reinfo... 1 0 0 1 0 0
1633 On a class of infinitely differentiable functi... space gm varphi infinitely differentiable func... 0 0 1 0 0 0
1634 Spatially resolved, energy-filtered imaging of... accurate description spatial variations energy... 0 1 0 0 0 0
1635 Effects of Degree Correlations in Interdepende... study influence degree correlations network mi... 1 1 0 0 0 0
1636 Towards more Reliable Transfer Learning multisource transfer learning proven effective... 0 0 0 1 0 0
1637 Forming short-period Wolf-Rayet X-ray binaries... show blackhole highmass xray binaries hmxbs bt... 0 1 0 0 0 0
1638 Syzygies of Cohen-Macaulay modules over one di... study syzygies maximal cohenmacaulay modules o... 0 0 1 0 0 0
1639 Chirality provides a direct fitness advantage ... chirality shape motility evolve rapidly microb... 0 1 0 0 0 0
1640 Learning to Draw Samples with Amortized Stein ... propose simple algorithm train stochastic neur... 0 0 0 1 0 0
1641 Preconditioned dynamic mode decomposition and ... note proposes simple general framework dynamic... 0 1 0 0 0 0
1642 A functional perspective on emergent supersymm... investigate emergence cal n supersymmetry long... 0 1 0 0 0 0
1643 Variants of RMSProp and Adagrad with Logarithm... adaptive gradient methods become recently popu... 1 0 0 1 0 0
1644 Dykstra's Algorithm, ADMM, and Coordinate Desc... study connections dykstras algorithm projectin... 0 0 1 1 0 0
1645 A Topological Perspective on Interacting Algeb... techniques higher categories higherdimensional... 1 0 1 0 0 0
1646 Dynamic nested sampling: an improved algorithm... introduce dynamic nested sampling generalisati... 0 1 0 1 0 0
1647 Multistage Adaptive Testing of Sparse Signals multistage design used wide range scientific f... 0 0 0 1 0 0
1648 On the commutativity of the powerspace constru... investigate powerspace constructions topologic... 1 0 1 0 0 0
1649 Bounds on poloidal kinetic energy in plane lay... numerical method presented conveniently comput... 0 1 0 0 0 0
1650 Concentration of Multilinear Functions of the ... prove neartight concentration measure polynomi... 1 0 1 1 0 0
1651 Switching Isotropic and Directional Exploratio... paper proposes exploration method deep reinfor... 0 0 0 1 0 0
1652 Fast and high-accuracy measuring technique for... paper based framework traditional spectrophoto... 0 1 0 0 0 0
1653 The solution to the initial value problem for ... propose method solve initial value problem ult... 0 1 0 0 0 0
1654 Width-tuned magnetic order oscillation on zigz... quantum confinement interference often generat... 0 1 0 0 0 0
1655 Fast and accurate approximation of the full co... gamma distribution arises frequently bayesian ... 0 0 0 1 0 0
1656 Two variants of the Froiduire-Pin Algorithm fo... paper present two algorithms based froidurepin... 1 0 1 0 0 0
1657 Holon Wigner Crystal in a Lightly Doped Kagome... address problem lightly doped spinliquid large... 0 1 0 0 0 0
1658 Accelerated Block Coordinate Proximal Gradient... nonconvex optimization problems arise differen... 1 0 0 1 0 0
1659 Phase retrieval using alternating minimization... paper considers problem phase retrieval goal r... 0 0 1 1 0 0
1660 Inverse statistical problems: from the inverse... inverse problems statistical physics motivated... 0 1 0 0 0 0
1661 Static structure of chameleon dark Matter as a... propose novel mechanism explains cored dark ma... 0 1 0 0 0 0
1662 Multi-Stakeholder Recommendation: Applications... recommender systems successfully applied assis... 1 0 0 0 0 0
1663 Unbalancing Sets and an Almost Quadratic Lower... prove lower bound omeganlog n size syntactical... 1 0 0 0 0 0
1664 Saturated absorption competition microscopy introduce concept saturated absorption competi... 0 1 0 0 0 0
1665 Topological and non inertial effects on the in... work investigate combined influence nontrivial... 0 1 0 0 0 0
1666 Evolution of antiferromagnetic domains in the ... report observation magnetic domains exotic ant... 0 1 0 0 0 0
1667 Phylogenetic networks that are their own fold-ups phylogenetic networks becoming increasing inte... 0 0 0 0 1 0
1668 Hyperbolic inverse mean curvature flow paper prove shorttime existence hyperbolic inv... 0 0 1 0 0 0
1669 Theoretically Principled Trade-off between Rob... identify tradeoff robustness accuracy serves g... 1 0 0 1 0 0
1670 A new charge reconstruction algorithm for the ... dark matter particle explorer dampe one four s... 0 1 0 0 0 0
1671 The Structure Transfer Machine Theory and Appl... representation learning fundamental challengin... 0 0 0 1 0 0
1672 Inverse Fractional Knapsack Problem with Profi... address paper problem modifying profits costs ... 1 0 1 0 0 0
1673 Large dimensional analysis of general margin b... marginbased classifiers popular machine learni... 1 0 0 1 0 0
1674 Complete reducibility, Kulshammer's question, ... let k nonperfect separably closed field let g ... 0 0 1 0 0 0
1675 Covariance structure associated with an equali... general linear model paper derives necessary s... 0 0 1 1 0 0
1676 Three natural subgroups of the Brauer-Picard g... article construct three explicit natural subgr... 0 0 1 0 0 0
1677 UAV Visual Teach and Repeat Using Only Semanti... demonstrate use semantic object detections rob... 1 0 0 0 0 0
1678 Towards a Deep Reinforcement Learning Approach... numerous breakthroughs reinforcement learning ... 1 0 0 0 0 0
1679 A Case for an Atmosphere on Super-Earth 55 Can... one primary questions characterizing earthsize... 0 1 0 0 0 0
1680 From LiDAR to Underground Maps via 5G - Busine... everincreasing productivity targets mining ope... 1 0 0 0 0 0
1681 The number of realizations of a Laman graph laman graphs model planar frameworks rigid gen... 1 0 1 0 0 0
1682 UV Detector based on InAlN/GaN-on-Si HEMT Stac... demonstrate inalnganonsi hemt based uv detecto... 0 1 0 0 0 0
1683 Deep Reinforcement Learning for Inquiry Dialog... paper first attempt learn policy inquiry dialo... 1 0 0 0 0 0
1684 Proof of Time's Arrow with Perfectly Chaotic S... problem times arrow rigorously solved certain ... 0 1 0 0 0 0
1685 Using Phone Sensors and an Artificial Neural N... phone sensors could useful assessing changes g... 1 0 0 1 0 0
1686 A Lattice Model of Charge-Pattern-Dependent Po... view recent intense experimental theoretical i... 0 0 0 0 1 0
1687 "Noiseless" thermal noise measurement of atomi... measuring quadratic values representative rand... 0 1 0 0 0 0
1688 A Forward Model at Purkinje Cell Synapses Faci... motor system solve problem anticipatory contro... 1 0 1 0 0 0
1689 De Rham and twisted cohomology of Oeljeklaus-T... oeljeklaustoma ot manifolds complex nonkhler m... 0 0 1 0 0 0
1690 Episode-Based Active Learning with Bayesian Ne... investigate different strategies active learni... 1 0 0 1 0 0
1691 Origin of X-ray and gamma-ray emission from th... study possible connection different nonthermal... 0 1 0 0 0 0
1692 Freeness and The Partial Transposes of Wishart... show partial transposes complex wishart random... 0 0 1 0 0 0
1693 Coset space construction for the conformal gro... technique constructing conformally invariant t... 0 0 1 0 0 0
1694 Fixed points of polarity type operators wellknown result says euclidean unit ball uniq... 0 0 1 0 0 0
1695 Multiple Improvements of Multiple Imputation L... multiple imputation mi inference handles missi... 0 0 1 1 0 0
1696 Estimating the unseen from multiple populations given samples distribution many new elements e... 1 0 0 1 0 0
1697 Continued Fractions and $q$-Series Generating ... construct new continued fraction expansions ja... 0 0 1 0 0 0
1698 Implications of a wavelength dependent PSF for... convolution galaxy images pointspread function... 0 1 0 0 0 0
1699 Improving TSP tours using dynamic programming ... given traveling salesman problem tsp tour h gr... 1 0 0 0 0 0
1700 Semi-Supervised Approaches to Efficient Evalua... many modern machine learning applications outc... 0 0 0 1 0 0
1701 Linearization of the box-ball system: an eleme... kuniba okado takagi yamada found timeevolution... 0 1 0 0 0 0
1702 Controlling Sources of Inaccuracy in Stochasti... scientists engineers commonly use simulation m... 0 0 1 1 0 0
1703 Implications of Decentralized Q-learning Resou... reinforcement learning gaining attention wirel... 1 0 0 0 0 0
1704 Exponential Ergodicity of the Bouncy Particle ... nonreversible markov chain monte carlo schemes... 0 0 0 1 0 0
1705 Analysis and X-ray tomography lecture notes course mats analysis xray tomogr... 0 0 1 0 0 0
1706 Spatially Transformed Adversarial Examples recent studies show widely used deep neural ne... 0 0 0 1 0 0
1707 Arrow Categories of Monoidal Model Categories prove arrow category monoidal model category e... 0 0 1 0 0 0
1708 Differential-operator representations of Weyl ... given suitable ordering positive root system a... 0 0 1 0 0 0
1709 Faithful Semitoric Systems paper consists two parts first provides review... 0 1 1 0 0 0
1710 HoloScope: Topology-and-Spike Aware Fraud Dete... online fraudsters invest resources including p... 1 0 0 0 0 0
1711 On Approximation Guarantees for Greedy Low Ran... provide new approximation guarantees greedy lo... 1 0 0 1 0 0
1712 Topology Estimation in Bulk Power Grids: Guara... topology power grid affects dynamic operation ... 1 0 1 1 0 0
1713 Wasserstein Introspective Neural Networks present wasserstein introspective neural netwo... 1 0 0 0 0 0
1714 Convexity of level lines of Martin functions a... let omega unbounded domain mathbbrtimesmathbbr... 0 0 1 0 0 0
1715 New skein invariants of links introduce new skein invariants links based pro... 0 0 1 0 0 0
1716 HSTREAM: A directive-based language extension ... big data streaming applications require utiliz... 1 0 0 0 0 0
1717 Faddeev-Jackiw approach of the noncommutative ... interest higher derivatives field theories ori... 0 1 0 0 0 0
1718 Spin Transport and Accumulation in 2D Weyl Fer... work study spin hall effect rashbaedelstein ef... 0 1 0 0 0 0
1719 Model-Based Control Using Koopman Operators paper explores application koopman operator th... 1 0 0 0 0 0
1720 Turbulence Hierarchy in a Random Fibre Laser turbulence challenging feature common wide ran... 0 1 0 0 0 0
1721 Optimal Rates for Learning with Nyström Stocha... setting nonparametric regression propose study... 1 0 1 1 0 0
1722 Run Procrustes, Run! On the convergence of acc... work present theoretical results convergence n... 0 0 0 1 0 0
1723 A note on the bijectivity of antipode of a Hop... certain sufficient homological ringtheoretical... 0 0 1 0 0 0
1724 Perfect Edge Domination: Hard and Solvable Cases let g undirected graph edge g dominates edges ... 1 0 0 0 0 0
1725 On the presentation of Hecke-Hopf algebras for... heckehopf algebras defined berenstein kazhdan ... 0 0 1 0 0 0
1726 ILP-based Alleviation of Dense Meander Segment... lengthmatching important technique bal ance de... 1 0 0 0 0 0
1727 Membrane Trafficking in the Yeast Saccharomyce... yeast saccharomyces cerevisiae one best charac... 0 0 0 0 1 0
1728 Synthesizing Programs for Images using Reinfor... advances deep generative networks led impressi... 0 0 0 1 0 0
1729 A Correspondence Between Random Neural Network... number recent papers provided evidence practic... 1 1 0 1 0 0
1730 The nature of the progenitor of the M31 North-... examine nature possible orbits physical proper... 0 1 0 0 0 0
1731 On codimension two flats in Fermat-type arrang... present note study certain arrangements codime... 0 0 1 0 0 0
1732 Invariant Causal Prediction for Sequential Data investigate problem inferring causal predictor... 0 0 1 1 0 0
1733 Smoothing with Couplings of Conditional Partic... state space models smoothing refers task estim... 0 0 0 1 0 0
1734 Formation of High Pressure Gradients at the Fr... nonlinear dynamics free surface ideal incompre... 0 1 0 0 0 0
1735 Subsampling for Ridge Regression via Regulariz... given n vectors mathbfxiin mathbbrd want fit l... 1 0 0 0 0 0
1736 Ab initio calculations of the concentration de... persistent interest integration latticematched... 0 1 0 0 0 0
1737 Outliers and related problems define outliers set observations contradicts p... 0 0 1 1 0 0
1738 On Quadratic Convergence of DC Proximal Newton... propose dc proximal newton algorithm solving n... 1 0 1 1 0 0
1739 Dynamic Safe Interruptibility for Decentralize... reinforcement learning agents learn performing... 1 0 0 1 0 0
1740 Heuristic Optimization for Automated Distribut... network integration studies try assess impact ... 1 0 0 0 0 0
1741 The Sizes and Depletions of the Dust and Gas C... report alma cycle observations ghz mm dust con... 0 1 0 0 0 0
1742 Demystifying AlphaGo Zero as AlphaGo GAN astonishing success alphago zerocitesilveralph... 1 0 0 1 0 0
1743 Effects of pressure and magnetic field on the ... electrondoped euferhas systematically studied ... 0 1 0 0 0 0
1744 Commissioning and Operation chapter highluminosity large hadron collider h... 0 1 0 0 0 0
1745 Only in the standard representation the Dirac ... shown relativistic quantum mechanics single fe... 0 1 0 0 0 0
1746 Stable absorbing boundary conditions for molec... new type absorbing boundary conditions molecul... 0 1 0 0 0 0
1747 Algebraic operads up to homotopy paper deals homotopy theory differential grade... 0 0 1 0 0 0
1748 Nonlinear Kalman Filtering with Divergence Min... consider nonlinear kalman filtering problem us... 0 0 1 1 0 0
1749 On Chern number inequality in dimension 3 prove x x threefold terminal flip cxcxleq cxcx... 0 0 1 0 0 0
1750 Enhancing SDO/HMI images using deep learning helioseismic magnetic imager hmi provides cont... 1 1 0 0 0 0
1751 Suppression of the superconductivity in ultrat... contact superconductor normal metal modifies p... 0 1 0 0 0 0
1752 Functional data analysis in the Banach space o... functional data analysis typically conducted w... 0 0 1 1 0 0
1753 Bayesian Recurrent Neural Networks work explore straightforward variational bayes... 1 0 0 1 0 0
1754 Cross-Correlation Redshift Calibration Without... galaxy crosscorrelations highfidelity redshift... 0 1 0 0 0 0
1755 Completely bounded bimodule maps and spectral ... initiate study completely bounded multipliers ... 0 0 1 0 0 0
1756 Distill-and-Compare: Auditing Black-Box Models... blackbox risk scoring models permeate lives ye... 1 0 0 1 0 0
1757 An influence-based fast preceding questionnair... improve efficiency elderly assessments influen... 1 0 0 0 0 0
1758 A GPU Accelerated Discontinuous Galerkin Incom... present gpuaccelerated version highorder disco... 1 0 0 0 0 0
1759 The Auger Engineering Radio Array and multi-hy... auger engineering radio array aera aims detect... 0 1 0 0 0 0
1760 Historic Emergence of Diversity in Painting: H... painting art form long functioned major channe... 1 1 0 0 0 0
1761 Cage Size and Jump Precursors in Glass-Forming... glassy dynamics intermittent particles suddenl... 0 1 0 0 0 0
1762 A Comprehensive Survey on Bengali Phoneme Reco... hidden markov model based various phoneme reco... 1 0 0 0 0 0
1763 Factorization of arithmetic automorphic periods paper prove arithmetic automorphic periods gln... 0 0 1 0 0 0
1764 Multielectronic processes in particle and anti... chapter analyze multiple ionization impact z p... 0 1 0 0 0 0
1765 A Floating Cylinder on An Unbounded Bath paper reconsider circular cylinder horizontall... 0 1 1 0 0 0
1766 Switching between Limit Cycles in a Model of R... paper considers problem switching two periodic... 1 0 0 0 0 0
1767 Locally Private Bayesian Inference for Count M... aspects social interaction digitally recorded ... 1 0 0 1 0 0
1768 Carrier Diffusion in Thin-Film CH3NH3PbI3 Pero... report application femtosecond fourwave mixing... 0 1 0 0 0 0
1769 On effective Birkhoff's ergodic theorem for co... introduce computable actions computable groups... 0 0 1 0 0 0
1770 Gender Differences in Participation and Reward... programming valuable skill labor market making... 1 0 0 0 0 0
1771 Invariant surface area functionals and singula... express two cr invariant surface area elements... 0 0 1 0 0 0
1772 Dynamic dipole polarizabilities of heteronucle... article address general approach calculating d... 0 1 0 0 0 0
1773 Minor-free graphs have light spanners show every hminorfree graph light epsilonspann... 1 0 0 0 0 0
1774 Adversarial Generation of Natural Language generative adversarial networks gans gathered ... 1 0 0 1 0 0
1775 Likely Transiting Exocomets Detected by Kepler present first good evidence exocomet transits ... 0 1 0 0 0 0
1776 Origins of bond and spin order in rare-earth n... analyze charge spin response functions rareear... 0 1 0 0 0 0
1777 Canonical Truth introduce study notion canonical set theoretic... 0 0 1 0 0 0
1778 AACT: Application-Aware Cooperative Time Alloc... number internet things iot devices keeps incre... 1 0 0 0 0 0
1779 COPA: Constrained PARAFAC2 for Sparse & Large ... parafac demonstrated success modeling irregula... 0 0 0 1 0 0
1780 Effect of Composition Gradient on Magnetotherm... model intracluster medium weakly collisional p... 0 1 0 0 0 0
1781 A Verified Algorithm Enumerating Event Structures event structure mathematical abstraction model... 1 0 0 0 0 0
1782 Missing Data as Part of the Social Behavior in... many realworld networks known exhibit facts co... 0 0 0 1 0 0
1783 Quantum Monte Carlo simulation of a two-dimens... study interacting majorana fermions two dimens... 0 1 0 0 0 0
1784 Geometric Rescaling Algorithms for Submodular ... present new class polynomialtime algorithms su... 1 0 1 0 0 0
1785 Statistical PT-symmetric lasing in an optical ... ptsymmetry optics condition whereby real imagi... 0 1 0 0 0 0
1786 Transforming Single Domain Magnetic CoFe2O4 Na... single phase uniform size nm cobalt ferrite cf... 0 1 0 0 0 0
1787 Probing the dusty stellar populations of the L... midinfrared instrument miri em james webb spac... 0 1 0 0 0 0
1788 PythonRobotics: a Python code collection of ro... paper describes open source software oss proje... 1 0 0 0 0 0
1789 A Liouville theorem for the Euler equations in... paper concerned qualitative properties bounded... 0 0 1 0 0 0
1790 First On-Site True Gamma-Ray Imaging-Spectrosc... developed electron tracking compton camera etc... 0 1 0 0 0 0
1791 Weak Versus Strong Disorder Superfluid-Bose Gl... using largescale simulations based matrix prod... 0 1 0 0 0 0
1792 Quantum Structures in Human Decision-making: T... ellsberg thought experiments empirical confirm... 0 0 0 0 1 1
1793 Fine-grained Event Learning of Human-Object In... event learning one important problems ai howev... 1 0 0 0 0 0
1794 Book Review Interferometry and Synthesis in Ra... review third edition interferometry synthesis ... 0 1 0 0 0 0
1795 A Kernel Theory of Modern Data Augmentation data augmentation technique training set expan... 0 0 0 1 0 0
1796 Carrier driven coupling in ferromagnetic oxide... transition metal oxides well known complex mag... 0 1 0 0 0 0
1797 Data Dropout in Arbitrary Basis for Deep Netwo... important problem training deep networks high ... 1 0 0 1 0 0
1798 Efficient algorithms to discover alterations w... recent large cancer studies measured somatic a... 0 0 0 0 1 0
1799 Laplace operators on holomorphic Lie algebroids paper introduces laplacetype operators functio... 0 0 1 0 0 0
1800 Composing Differential Privacy and Secure Comp... private record linkage prl problem identifying... 1 0 0 0 0 0
1801 Recurrent Neural Filters: Learning Independent... despite recent popularity deep generative stat... 1 0 0 1 0 0
1802 A Submodularity-Based Approach for Multi-Agent... consider optimal coverage problem multiagent n... 1 0 1 0 0 0
1803 A GPU-based Multi-level Algorithm for Boundary... novel scalable geometric multilevel algorithm ... 1 1 0 0 0 0
1804 Counterexample-Guided k-Induction Verification... recently kinduction algorithm proven successfu... 1 0 0 0 0 0
1805 Cautious Model Predictive Control using Gaussi... gaussian process gp regression widely used sup... 1 0 1 0 0 0
1806 Probabilistic Trajectory Segmentation by Means... using movement primitive libraries effective m... 1 0 0 1 0 0
1807 Radio Frequency Interference Mitigation radio astronomy observational facilities const... 0 1 0 0 0 0
1808 Online Calibration of Phasor Measurement Unit ... data quality phasor measurement unit pmu recei... 1 0 0 0 0 0
1809 Some basic properties of bounded solutions of ... provide detailed fully rigorous derivation sev... 0 0 1 0 0 0
1810 Andreev Reflection without Fermi surface align... address controversy proximity effect topologic... 0 1 0 0 0 0
1811 Structural Data Recognition with Graph Model B... paper presents novel method structural data re... 1 0 0 1 0 0
1812 Exceptional points in two simple textbook exam... propose introduce concept exceptional points i... 0 1 0 0 0 0
1813 Bootstrap of residual processes in regression:... paper consider location model form mx varepsil... 0 0 1 1 0 0
1814 Polynomiality for the Poisson centre of trunca... show poisson centre truncated maximal paraboli... 0 0 1 0 0 0
1815 Row-Centric Lossless Compression of Markov Images motivated question whether recently introduced... 1 0 0 0 0 0
1816 Planetesimal formation by the streaming instab... recent years seen growing interest streaming i... 0 1 0 0 0 0
1817 Fault Tolerant Thermal Control of Steam Turbin... metaltometal clearances steam turbine full par... 1 0 0 0 0 0
1818 Causal Mediation Analysis Leveraging Multiple ... summary statistics genomewide association stud... 1 0 0 1 1 0
1819 Causal Queries from Observational Data in Biol... biological networks convenient modelling visua... 0 0 0 1 1 0
1820 Hierarchical Bloom Filter Trees for Approximat... bytewise approximate matching algorithms recen... 1 0 0 0 0 0
1821 GANDALF - Graphical Astrophysics code for N-bo... gandalf new hydrodynamics nbody dynamics code ... 0 1 0 0 0 0
1822 Pre-freezing transition in Boltzmann-Gibbs mea... consider boltzmanngibbs measures associated lo... 0 1 0 0 0 0
1823 Learning Combinatorial Optimization Algorithms... design good heuristics approximation algorithm... 1 0 0 1 0 0
1824 Optimal Oil Production and Taxation in Presenc... paper studies optimal extraction policy oil fi... 0 0 1 0 0 0
1825 Critical well-posedness and scattering results... scattering masscritical fractional schrdinger ... 0 0 1 0 0 0
1826 Lightweight Multilingual Software Analysis developer preferences language capabilities pe... 1 0 0 0 0 0
1827 Room-temperature 1.54 $μ$m photoluminescence o... demand single photon sources lambdamum follows... 0 1 0 0 0 0
1828 Sparse Algorithm for Robust LSSVM in Primal Space enjoying closed form solution least squares su... 1 0 0 1 0 0
1829 Value Propagation for Decentralized Networked ... consider networked multiagent reinforcement le... 1 0 0 1 0 0
1830 Collect at Once, Use Effectively: Making Non-i... noninteractive local differential privacy ldp ... 1 0 0 0 0 0
1831 Learning Independent Causal Mechanisms statistical learning relies upon data sampled ... 1 0 0 1 0 0
1832 A Bayesian Model for False Information Belief ... work technical approach modeling false informa... 1 0 0 0 0 0
1833 Topological dynamics of gyroscopic and Floquet... despite intense interest realizing topological... 0 1 1 0 0 0
1834 Stability of axisymmetric chiral skyrmions examine topological solitons minimal variation... 0 0 1 0 0 0
1835 Efficiency versus instability in plasma accele... plasma wakefield acceleration one main technol... 0 1 0 0 0 0
1836 Resistivity bound for hydrodynamic bad metals obtain rigorous upper bound resistivity rho el... 0 1 0 0 0 0
1837 Minimal Exploration in Structured Stochastic B... paper introduces addresses wide class stochast... 1 0 0 1 0 0
1838 Data Driven Exploratory Attacks on Black Box C... modern day web applications aim create impact ... 1 0 0 1 0 0
1839 On Optimistic versus Randomized Exploration in... discuss relative merits optimistic randomized ... 1 0 0 1 0 0
1840 Fast Monte-Carlo Localization on Aerial Vehicl... size weight power constrained platforms impose... 1 0 0 0 0 0
1841 Generalized two-field $α$-attractor models fro... consider fourdimensional gravity coupled nonli... 0 1 1 0 0 0
1842 The Geodetic Hull Number is Hard for Chordal G... show hardness geodetic hull number chordal graphs 1 0 0 0 0 0
1843 $\overline{M}_{1,n}$ is usually not uniruled i... using etale cohomology define birational invar... 0 0 1 0 0 0
1844 Active Community Detection: A Maximum Likeliho... propose novel semisupervised active learning a... 1 0 0 1 0 0
1845 Continuum Limit of Posteriors in Graph Bayesia... consider problem recovering function input dif... 0 0 1 1 0 0
1846 Automatic Conflict Detection in Police Body-Wo... automatic conflict detection grown relevance a... 1 0 0 1 0 0
1847 The cobordism hypothesis assuming conjecture factorization homology adj... 0 0 1 0 0 0
1848 LAMOST telescope reveals that Neptunian cousin... discover population shortperiod neptunesize pl... 0 1 0 0 0 0
1849 A Latent Variable Model for Two-Dimensional Ca... describing dimension reduction dr techniques m... 1 0 0 1 0 0
1850 Model enumeration in propositional circumscrip... many practical problems characterized preferen... 1 0 0 0 0 0
1851 Structured Neural Summarization summarization long sequences concise statement... 1 0 0 0 0 0
1852 Variations on a Visserian Theme first order theory said tight two deductively ... 0 0 1 0 0 0
1853 Galerkin Least-Squares Stabilization in Ice Sh... investigate accuracy robustness one common met... 0 1 0 0 0 0
1854 Improved Query Reformulation for Concept Locat... software maintenance developers usually deal s... 1 0 0 0 0 0
1855 High-performance parallel computing in the cla... use computers statistical physics common sheer... 0 1 0 0 0 0
1856 Coupled spin-charge dynamics in helical Fermi ... consider helical system fermions generic spin ... 0 1 0 0 0 0
1857 Correlation decay in fermionic lattice systems... study correlations fermionic lattice systems l... 0 1 0 0 0 0
1858 Integrated Microsimulation Framework for Dynam... present integrated microsimulation framework e... 0 1 1 0 0 0
1859 Dimensionality Reduction for Stationary Time S... stochastic optimization naturally arises machi... 0 0 0 1 0 0
1860 Efficient tracking of a growing number of experts consider variation problem prediction expert a... 1 0 0 1 0 0
1861 Toeplitz Inverse Covariance-Based Clustering o... subsequence clustering multivariate time serie... 1 0 1 0 0 0
1862 The ellipse law: Kirchhoff meets dislocations paper consider nonlocal energy ialpha whose ke... 0 0 1 0 0 0
1863 SAML-QC: a Stochastic Assessment and Machine L... recently advancement industrial automation hig... 1 0 0 0 0 0
1864 Probing the gravitational redshift with an Ear... present approach testing gravitational redshif... 0 1 0 0 0 0
1865 A stencil scaling approach for accelerating ma... present novel approach fast onthefly low order... 1 0 0 0 0 0
1866 Cramér-Rao Lower Bounds for Positioning with L... consider potential positioning system antenna ... 1 0 0 0 0 0
1867 Asymptotic behaviour methods for the Heat Equa... expository work discuss asymptotic behaviour s... 0 0 1 0 0 0
1868 Magnetization dynamics of weakly interacting s... artificial spin ice asi consisting two dimensi... 0 1 0 0 0 0
1869 Filtering Tweets for Social Unrest since events arab spring increased interest us... 1 0 0 1 0 0
1870 Structured Connectivity Augmentation initiate algorithmic study following structure... 1 0 0 0 0 0
1871 Transition probability of Brownian motion in t... derive semianalytic formula transition probabi... 0 0 0 0 0 1
1872 Block-Sparse Recurrent Neural Networks recurrent neural networks rnns used stateofthe... 1 0 0 1 0 0
1873 Equitable neighbour-sum-distinguishing edge an... necessarily proper edge kcolouring gammaeglong... 1 0 1 0 0 0
1874 An Oracle Property of The Nadaraya-Watson Kern... celebrated nadarayawatson kernel estimator amo... 0 0 1 1 0 0
1875 Fast Rates for Bandit Optimization with Upper-... consider problem bandit optimization inspired ... 0 0 1 1 0 0
1876 Highly sensitive atomic based MW interferometry theoretically study scheme develop atomic base... 0 1 0 0 0 0
1877 The Wisdom of a Kalman Crowd kalman filter called one greatest inventions s... 0 0 0 0 0 1
1878 Noisy independent component analysis of auto-c... present new method separation superimposed ind... 0 1 0 1 0 0
1879 Ages and structural and dynamical parameters o... gc gc two globular clusters gcs remote halo gr... 0 1 0 0 0 0
1880 Bayesian Renewables Scenario Generation via De... present method generate renewable scenarios us... 0 0 0 1 0 0
1881 Graphons: A Nonparametric Method to Model, Est... many social economic systems naturally represe... 1 1 0 0 0 0
1882 Hopf Parametric Adjoint Objects through a 2-ad... article hopf parametric adjunctions defined an... 0 0 1 0 0 0
1883 Krylov Subspace Recycling for Fast Iterative L... solving symmetric positive definite linear pro... 1 0 0 1 0 0
1884 Towards a Physical Oracle for the Partition Pr... despite remarkable achievements practical trac... 1 0 0 0 0 0
1885 Bayesian Methods in Cosmology notes aim presenting overview bayesian statist... 0 1 0 1 0 0
1886 Information Extraction in Illicit Domains extracting useful entities attribute values il... 1 0 0 0 0 0
1887 A Tutorial on Kernel Density Estimation and Re... tutorial provides gentle introduction kernel d... 0 0 0 1 0 0
1888 Optimizing expected word error rate via sampli... statelevel minimum bayes risk smbr training be... 1 0 0 1 0 0
1889 Real-Time Illegal Parking Detection System Bas... increasing illegal parking become serious nowa... 1 0 0 1 0 0
1890 On a representation of fractional Brownian mot... discuss extensions results recent paper cherno... 0 0 1 1 0 0
1891 Stochastic Canonical Correlation Analysis tightly analyze sample complexity cca provide ... 1 0 0 1 0 0
1892 Segmentation of Instances by Hashing propose novel approach address simultaneous de... 1 0 0 0 0 0
1893 Grafting for Combinatorial Boolean Model using... paper introduces combinatorial boolean model c... 1 0 0 1 0 0
1894 Rapid Assessment of Damaged Homes in the Flori... september hurricane irma made landfall florida... 0 0 0 1 0 0
1895 Status maximization as a source of fairness in... human behavioural patterns exhibit selfish com... 1 0 0 0 0 1
1896 On Dziobek Special Central Configurations study special central configurations curved nb... 0 0 1 0 0 0
1897 Laser Interferometer Space Antenna following selection gravitational universe esa... 0 1 0 0 0 0
1898 Learning from a lot: Empirical Bayes in high-d... empirical bayes versatile approach learn lot t... 0 0 0 1 0 0
1899 Dissipativity Theory for Accelerating Stochast... techniques reducing variance gradient estimate... 0 0 0 1 0 0
1900 Runout transition and clustering instability o... binary mixtures dry grains avalanching slope e... 0 1 0 0 0 0
1901 A Simple Convex Layers Algorithm given set n points p plane first layer l p for... 1 0 0 0 0 0
1902 Entire Solution in an Ignition Nonlocal Disper... paper mainly focus frontlike entire solution c... 0 0 1 0 0 0
1903 Fundamental solutions for Schrodinger operato... paper classify fundamental solutions class sch... 0 0 1 0 0 0
1904 Making up for the deficit in a marathon run predict final result athlete marathon run thor... 1 0 0 0 0 0
1905 An Efficient Load Balancing Method for Tree Al... nowadays multiprocessing mainstream exponentia... 1 0 0 0 0 0
1906 Dynamics of the spin-1/2 Heisenberg chain init... study dynamics isotropic spin heisenberg chain... 0 1 0 0 0 0
1907 Multi-Erasure Locally Recoverable Codes Over S... erasure codes play important role storage syst... 1 0 0 0 0 0
1908 NSML: A Machine Learning Platform That Enables... machine learning libraries tensorflow pytorch ... 1 0 0 0 0 0
1909 High order local absorbing boundary conditions... devise new high order local absorbing boundary... 0 1 1 0 0 0
1910 Simple Necessary Conditions for the Existence ... describe necessary conditions existence hamilt... 1 0 0 0 0 0
1911 Bootstrapping Exchangeable Random Graphs introduce two new bootstraps exchangeable rand... 0 0 0 1 0 0
1912 A question proposed by K. Mahler on exceptiona... paper shall prove subset overlinemathbb qcap b... 0 0 1 0 0 0
1913 Implementation of the Bin Hierarchy Method for... present textttbhm tool restoring smooth functi... 0 1 0 1 0 0
1914 The Discrete Stochastic Galerkin Method for Hy... develop general polynomial chaos gpc based sto... 0 0 1 0 0 0
1915 Seasonal evolution of $\mathrm{C_2N_2}$, $\mat... study seasonal evolution titans lower stratosp... 0 1 0 0 0 0
1916 Systems, Actors and Agents: Operation in a mul... multiagent approach become popular computer sc... 1 0 0 0 0 0
1917 An invitation to model theory and C*-algebras present introductory survey first order logic ... 0 0 1 0 0 0
1918 Random Close Packing and the Hard Sphere Percu... percusyevick theory monodisperse hard spheres ... 0 1 0 0 0 0
1919 The Painlevé property of $\mathbb{C}P^{N-1}$ s... test mathbbcpn sigma models painlev property c... 0 1 0 0 0 0
1920 A comment on Stein's unbiased risk estimate fo... framework matrix valued observables low rank m... 0 0 1 1 0 0
1921 An empirical study on evaluation metrics of ge... evaluating generative adversarial networks gan... 0 0 0 1 0 0
1922 Analytical and simulation studies of pedestria... intersecting pedestrian flow lattice random up... 0 1 0 0 0 0
1923 Static and Fluctuating Magnetic Moments in the... lioso first example new class material called ... 0 1 0 0 0 0
1924 Compiling Deep Learning Models for Custom Hard... convolutional neural networks cnns core stateo... 1 0 0 0 0 0
1925 Ranking with Adaptive Neighbors retrieving similar objects largescale database... 0 0 0 1 0 0
1926 Identities and central polynomials of real gra... let finite dimensional real algebra division g... 0 0 1 0 0 0
1927 VB-Courant algebroids, E-Courant algebroids an... paper first discuss relation vbcourant algebro... 0 0 1 0 0 0
1928 Majorana bound states in hybrid 2D Josephson j... consider josephson junction consisting superco... 0 1 0 0 0 0
1929 Two-Dimensional Large Gap Topological Insulato... rashba spin orbit coupling topological insulat... 0 1 0 0 0 0
1930 Topological boundary invariants for Floquet sy... floquet systems periodically driven quantum sy... 0 1 0 0 0 0
1931 Assumption-Based Approaches to Reasoning with ... paper maps relation different approaches handl... 1 0 0 0 0 0
1932 On the Impact of Transposition Errors in Diffu... work consider diffusionbased molecular communi... 1 0 1 0 0 0
1933 Uniform $L^p$-improving for weighted averages ... define variable parameter analogues affine arc... 0 0 1 0 0 0
1934 Finite Sample Differentially Private Confidenc... study problem estimating finite sample confide... 1 0 1 1 0 0
1935 xSDK Foundations: Toward an Extreme-scale Scie... extremescale computational science increasingl... 1 0 0 0 0 0
1936 Muon Spin Rotation Analysis of the Internal Ma... uranium beryllium heavy fermion system whose a... 0 1 0 0 0 0
1937 The infinity-Fucik spectrum article study behavior p nearrowinfty fucik sp... 0 0 1 0 0 0
1938 Unitary Groups as Stabilizers of Orbits show finite unitary group orbits spanning whol... 0 0 1 0 0 0
1939 m-TSNE: A Framework for Visualizing High-Dimen... multivariate time series mts become increasing... 1 0 0 1 0 0
1940 On stabilization of solutions of nonlinear par... parabolic equations form fracpartial upartial ... 0 0 1 0 0 0
1941 Deep metric learning for multi-labelled radiog... many radiological studies reveal presence seve... 0 0 0 1 0 0
1942 Algebras of generalized dihedral type provide complete classification algebras gener... 0 0 1 0 0 0
1943 Resonant particle production during inflation:... revisit study phenomenology associated burst p... 0 1 0 0 0 0
1944 Average whenever you meet: Opportunistic proto... consider following asynchronous opportunistic ... 1 0 0 0 0 0
1945 A polynomial-time approximation algorithm for ... give fully polynomialtime randomized approxima... 1 0 0 0 0 0
1946 Provably Accurate Double-Sparse Coding sparse coding crucial subroutine algorithms va... 1 0 0 1 0 0
1947 Asymptotic theory for maximum likelihood estim... reducedrank regression dimensionality reductio... 0 0 1 1 0 0
1948 Sequential two-fold Pearson chi-squared test a... find asymptotic formulas error probabilities t... 0 0 1 1 0 0
1949 Tracking Gaze and Visual Focus of Attention of... visual focus attention vfoa recognized promine... 1 0 0 0 0 0
1950 Fully-Dynamic and Kinetic Conflict-Free Colori... introduce fullydynamic conflictfree coloring p... 1 0 0 0 0 0
1951 Magnetic properties in ultra-thin 3d transitio... systematic experimental study gilbert damping ... 0 1 0 0 0 0
1952 Detection of Anomalies in Large Scale Accounti... learning detect fraud largescale accounting da... 1 0 0 0 0 0
1953 Alternate Estimation of a Classifier and the C... consider problem learning binary classifier po... 0 0 0 1 0 0
1954 Oscillating dipole with fractional quantum sou... show case special dipolar source electromagnet... 0 1 0 0 0 0
1955 Randomized Linear Programming Solves the Disco... propose novel randomized linear programming al... 1 0 1 0 0 0
1956 SCAV'18: Report of the 2nd International Works... report summarizes discussions open issues take... 1 0 0 0 0 0
1957 Inference For High-Dimensional Split-Plot-Desi... statisticians increasingly face problem recons... 0 0 1 1 0 0
1958 Rate Optimal Binary Linear Locally Repairable ... locally repairable code availability property ... 1 0 1 0 0 0
1959 A general renormalization procedure on the one... present general form renormalization operator ... 0 1 1 0 0 0
1960 Duality Spectral Sequences for Weierstrass Fib... study duality spectral sequences weierstrass f... 0 0 1 0 0 0
1961 Occupation times for the finite buffer fluid q... short communication study fluid queue finite b... 0 0 1 0 0 0
1962 Affine forward variance models introduce class affine forward variance afv mo... 0 0 0 0 0 1
1963 The cohomology of free loop spaces of homogene... free loops space lambda x space x become impor... 0 0 1 0 0 0
1964 Measurement of the muon-induced neutron season... cosmic ray muons average energy gev neutrons p... 0 1 0 0 0 0
1965 Trail-Mediated Self-Interaction number microorganisms leave persistent trails ... 0 0 0 0 1 0
1966 A sub-super solution method for a class of non... present paper study existence solutions nonloc... 0 0 1 0 0 0
1967 Summability properties of Gabor expansions show exist complete minimal systems timefreque... 0 0 1 0 0 0
1968 A Las Vegas algorithm to solve the elliptic cu... paper describe new las vegas algorithm solve e... 1 0 1 0 0 0
1969 Spectral sequences via examples lecture notes short course spectral sequences ... 0 0 1 0 0 0
1970 Coherent scattering from semi-infinite non-Her... two identical coherent beams injected semiinfi... 0 1 0 0 0 0
1971 A Higher Structure Identity Principle prove structure identity principle theories de... 1 0 1 0 0 0
1972 Two-Player Games for Efficient Non-Convex Cons... recent years constrained optimization become i... 0 0 0 1 0 0
1973 On thin local sets of the Gaussian free field study small local set continuum gaussian free ... 0 0 1 0 0 0
1974 A Note on Prediction Markets prediction market individuals sequentially pla... 0 0 1 1 0 0
1975 Dihedral angle prediction using generative adv... several dihedral angles prediction methods dev... 0 0 0 1 1 0
1976 A recurrence relation for the odd order moment... simple recurrence relation even order moments ... 0 0 1 0 0 0
1977 Performance of Range Separated Hybrids: Study ... long range corrected range separated hybrid fu... 0 1 0 0 0 0
1978 Manifold Mixup: Learning Better Representation... deep networks often perform well data distribu... 0 0 0 1 0 0
1979 Small Resolution Proofs for QBF using Dependen... spite close connection evaluation quantified b... 1 0 0 0 0 0
1980 Theoretical Analysis of Generalized Sagnac Eff... sagnac effect shown inertial frames well rotat... 0 1 0 0 0 0
1981 Lattice thermal expansion and anisotropic disp... anisotropic displacement parameters adps commo... 0 1 0 0 0 0
1982 Learning Heuristic Search via Imitation robotic motion planning problems typically sol... 1 0 0 0 0 0
1983 Hook removal operators on the odd Young graph article consider hook removal operators odd pa... 0 0 1 0 0 0
1984 Modal operators and toric ideals present paper consider modal propositional log... 0 0 1 0 0 0
1985 Metadynamics for Training Neural Network Model... neural network nn model chemistries mcs promis... 0 1 0 1 0 0
1986 ServeNet: A Deep Neural Network for Web Servic... automated service classification plays crucial... 0 0 0 1 0 0
1987 Photoinduced Hund excitons in the breakdown of... study photoinduced breakdown twoorbital mott i... 0 1 0 0 0 0
1988 Using Synthetic Data to Train Neural Networks ... draw formal connection using synthetic trainin... 1 0 0 1 0 0
1989 Multi-timescale memory dynamics in a reinforce... learning memory intertwined brain relationship... 1 0 0 1 0 0
1990 Dynamical structure of entangled polymers simu... nonlinear response entangled polymers shear fl... 0 1 0 0 0 0
1991 Coherent modulation up to 100 GBd 16QAM using ... demonstrate generation higherorder modulation ... 0 1 0 0 0 0
1992 Current induced magnetization switching in PtC... magnetic trilayers large perpendicular magneti... 0 1 0 0 0 0
1993 Grain boundary diffusion in severely deformed ... grain boundary diffusion severely deformed alb... 0 1 0 0 0 0
1994 Quantum Black Holes and Atomic Nuclei are Hollow quantum schrodingernewton equation solved self... 0 1 0 0 0 0
1995 Learning Non-Discriminatory Predictors consider learning predictor nondiscriminatory ... 1 0 0 0 0 0
1996 Time-Resolved High Spectral Resolution Observa... many brown dwarfs exhibit photometric variabil... 0 1 0 0 0 0
1997 Pinned, locked, pushed, and pulled traveling w... traveling fronts describe transition two alter... 0 0 0 0 1 0
1998 Two-pixel polarimetric camera by compressive s... propose original concept compressive sensing c... 1 0 0 0 0 0
1999 A Stochastic Programming Approach for Electric... advantages electric vehicles ev include reduct... 1 0 1 0 0 0
2000 Autonomy in the interactive music system VIVO interactive music systems ims introduced new w... 1 0 0 0 0 0
2001 Information and estimation in Fokker-Planck ch... study relationship information estimationtheor... 1 0 1 1 0 0
2002 The role of industry, occupation, and location... regions acquire knowledge need diversify econo... 0 0 0 0 0 1
2003 Bayes-Optimal Entropy Pursuit for Active Choic... analyze problem learning single users preferen... 1 0 0 1 0 0
2004 Towards Understanding Generalization of Deep L... widely observed deep learning models learned p... 1 0 0 1 0 0
2005 Benchmarking Decoupled Neural Interfaces with ... artifical neural networks particular class lea... 1 0 0 1 0 0
2006 Macquarie University at BioASQ 5b -- Query-bas... macquarie universitys contribution bioasq chal... 1 0 0 0 0 0
2007 Network Topology Modulation for Energy and Dat... internetofthings iot architectures connecting ... 1 0 1 0 0 0
2008 Core structure of two-dimensional Fermi gas vo... report diffusion monte carlo results groundsta... 0 1 0 0 0 0
2009 One can hear the Euler characteristic of a sim... prove number p positive eigenvalues connection... 1 0 1 0 0 0
2010 A new complete Calabi-Yau metric on $\mathbb{C... motivated study collapsing calabiyau threefold... 0 0 1 0 0 0
2011 Weighted density fields as improved probes of ... comes searches extensions general relativity l... 0 1 0 0 0 0
2012 Nonlinear control for an uncertain electromagn... paper presents design nonlinear control law ty... 1 0 0 0 0 0
2013 Adaptation and Robust Learning of Probabilisti... probabilistic representations movement primiti... 1 0 0 1 0 0
2014 Transverse spinning of light with globally uni... access transverse spin light unlocked new regi... 0 1 0 0 0 0
2015 A general class of quasi-independence tests fo... survival studies classical inferences lefttrun... 0 0 0 1 0 0
2016 EPIC 220204960: A Quadruple Star System Contai... present strongly interacting quadruple system ... 0 1 0 0 0 0
2017 On the higher Cheeger problem develop notion higher cheeger constants measur... 0 0 1 0 0 0
2018 Petri Nets and Machines of Things That Flow petri nets established graphical formalism mod... 1 0 0 0 0 0
2019 Fundamental Conditions for Low-CP-Rank Tensor ... consider problem low canonical polyadic cp ran... 1 0 1 1 0 0
2020 Multiplex Network Regression: How do relations... introduce statistical method investigate impac... 1 1 0 1 0 0
2021 Hall-Littlewood-PushTASEP and its KPZ limit study new model interactive particle systems c... 0 0 1 1 0 0
2022 Pricing for Online Resource Allocation: Interv... present pricing mechanisms several online reso... 1 0 0 0 0 0
2023 Learning best K analogies from data distributi... casebased reasoning cbr widely used generate g... 1 0 0 0 0 0
2024 Optimal designs for enzyme inhibition kinetic ... paper present new method determining optimal d... 0 0 1 1 0 0
2025 Highly Granular Calorimeters: Technologies and... calice collaboration developing highly granula... 0 1 0 0 0 0
2026 Discontinuous Hamiltonian Monte Carlo for disc... hamiltonian monte carlo emerged standard tool ... 0 0 0 1 0 0
2027 Optimal boundary gradient estimates for Lamé s... paper derive pointwise upper bounds lower boun... 0 0 1 0 0 0
2028 On a variable step size modification of Hines'... simulating large networks neurons hines propos... 0 0 1 0 0 0
2029 Neural Question Answering at BioASQ 5B paper describes submission bioasq challenge pa... 1 0 0 0 0 0
2030 Implementation of Smart Contracts Using Hybrid... recently decentralised onblockchain platforms ... 1 0 0 0 0 0
2031 Electro-mechanical control of an on-chip optic... demonstrate electromechanical control onchip g... 0 1 0 0 0 0
2032 Data Distillation for Controlling Specificity ... people speak different levels specificity diff... 1 0 0 0 0 0
2033 Non-locality of the meet levels of the Trotter... prove meet level trotterweil mathsfvm local ge... 1 0 1 0 0 0
2034 Particle-based and Meshless Methods with Aboria aboria powerful flexible c library implementat... 1 0 0 0 0 0
2035 Backlund transformations and divisor doubling classical mechanics wellknown cryptographic al... 0 1 1 0 0 0
2036 KATE: K-Competitive Autoencoder for Text autoencoders successful learning meaningful re... 1 0 0 1 0 0
2037 Stochastic evolution equations for large portf... consider large market model defaultable assets... 0 0 1 0 0 0
2038 Learning to Address Health Inequality in the U... lifeexpectancy complex outcome driven genetic ... 0 0 0 1 0 0
2039 Asynchronous parallel primal-dual block update... recent several years witnessed surge asynchron... 0 0 1 1 0 0
2040 Towards Noncommutative Topological Quantum Fie... define new invariants manifolds using space ta... 0 0 1 0 0 0
2041 Chaotic Dynamic S Boxes Based Substitution App... paper propose image encryption algorithm based... 1 0 0 0 0 0
2042 Randomized Optimal Transport on a Graph: Frame... recently developed bagofpaths framework consis... 1 0 0 1 0 0
2043 A Generative Model for Natural Sounds Based on... recent advances analysis subband amplitude env... 0 0 0 1 0 0
2044 Linear and Nonlinear Heat Equations on a p-Adi... study vladimirov fractional differentiation op... 0 0 1 0 0 0
2045 PVEs: Position-Velocity Encoders for Unsupervi... propose positionvelocity encoders pves learnwi... 1 0 0 0 0 0
2046 Few-shot Learning by Exploiting Visual Concept... convolutional neural networks cnns one driving... 1 0 0 1 0 0
2047 Noise Statistics Oblivious GARD For Robust Reg... linear regression models contaminated gaussian... 0 0 0 1 0 0
2048 Multi-Scale Continuous CRFs as Sequential Deep... paper addresses problem depth estimation singl... 1 0 0 0 0 0
2049 On the relation between representations and co... one fundamental results computability existenc... 1 0 0 0 0 0
2050 Towards Proxemic Mobile Collocated Interactions research mobile collocated interactions explor... 1 0 0 0 0 0
2051 Adjusting for bias introduced by instrumental ... instrumental variable iv methods widely used e... 0 0 0 1 0 0
2052 On the length of perverse sheaves and D-modules prove length function perverse sheaves algebra... 0 0 1 0 0 0
2053 Flexpoint: An Adaptive Numerical Format for Ef... deep neural networks commonly developed traine... 1 0 0 1 0 0
2054 Bounds on the expected size of the maximum agr... show expected size maximum agreement subtree t... 0 0 0 0 1 0
2055 Magnetic ground state of SrRuO$_3$ thin film a... systematic firstprinciples study performed und... 0 1 0 0 0 0
2056 No minimal tall Borel ideal in the Katětov order answering question second listed author show t... 0 0 1 0 0 0
2057 RelNN: A Deep Neural Model for Relational Lear... statistical relational ai starai aims reasonin... 1 0 0 1 0 0
2058 $ΔN_{\text{eff}}$ and entropy production from ... gravitinos fundamental prediction supergravity... 0 1 0 0 0 0
2059 Game-Theoretic Choice of Curing Rates Against ... study networks human decisionmakers independen... 1 0 0 0 0 0
2060 A Continuum Poisson-Boltzmann Model for Membra... membrane proteins constitute large portion hum... 0 1 0 0 0 0
2061 An ALMA survey of submillimetre galaxies in th... present spectroscopic redshifts smjy submillim... 0 1 0 0 0 0
2062 On the structure of Hausdorff moment sequences... paper treats several aspects truncated matrici... 0 0 1 0 0 0
2063 Lower bounds on the Bergman metric near points... let omega pseudoconvex domain mathbb cn satisf... 0 0 1 0 0 0
2064 Minimal Approximately Balancing Weights: Asymp... observational studies sample surveys regressio... 0 0 1 1 0 0
2065 Phonetic-attention scoring for deep speaker fe... recent studies shown framelevel deep speaker f... 1 0 0 0 0 0
2066 MobInsight: A Framework Using Semantic Neighbo... collective urban mobility embodies residents l... 1 0 0 0 0 0
2067 The Broad Consequences of Narrow Banking investigate macroeconomic consequences narrow ... 0 0 0 0 0 1
2068 Sitatapatra: Blocking the Transfer of Adversar... convolutional neural networks cnns widely used... 1 0 0 1 0 0
2069 Neurofeedback: principles, appraisal and outst... neurofeedback form brain training subjects fed... 0 0 0 0 1 0
2070 Automating Image Analysis by Annotating Landma... image video analysis often crucial step study ... 1 0 0 0 0 0
2071 Weak-strong uniqueness in fluid dynamics give survey recent results weakstrong uniquene... 0 1 1 0 0 0
2072 Cognitive Subscore Trajectory Prediction in Al... accurate diagnosis alzheimers disease ad entai... 1 0 0 1 0 0
2073 Variance Regularizing Adversarial Learning introduce novel approach training adversarial ... 1 0 0 1 0 0
2074 Improving fairness in machine learning systems... potential machine learning ml systems amplify ... 1 0 0 0 0 0
2075 PICOSEC: Charged particle Timing to 24 picosec... prospect pileup induced backgrounds high lumin... 0 1 0 0 0 0
2076 The first result on 76Ge neutrinoless double b... report first result ge neutrinoless double bet... 0 1 0 0 0 0
2077 Measuring scientific buzz keywords important information retrieval used ... 1 0 0 0 0 0
2078 Fully Optical Spacecraft Communications: Imple... free space optical communication techniques su... 1 0 0 0 0 0
2079 Linear compartmental models: input-output equa... work focuses question identifiability mathemat... 0 0 0 0 1 0
2080 On Nonlinear Dimensionality Reduction, Linear ... develop theory nonlinear dimensionality reduct... 0 0 0 1 0 0
2081 Asymmetric Deep Supervised Hashing hashing widely used largescale approximate nea... 1 0 0 1 0 0
2082 Pseudo-Separation for Assessment of Structural... based upon idea network functionality impaired... 1 0 0 0 0 0
2083 A Novel Approach to Forecasting Financial Vola... paper use gaussian process gp regression propo... 1 0 0 1 0 0
2084 Out-of-Sample Testing for GANs propose new method evaluate gans namely evalga... 1 0 0 1 0 0
2085 Quantum periodicity in the critical current of... use superconducting rings asymmetric linkup cu... 0 1 0 0 0 0
2086 Understanding Norm Change: An Evolutionary Gam... human societies around world interact developi... 1 0 0 0 0 0
2087 A Story of Parametric Trace Slicing, Garbage a... paper presents proposal story statically detec... 1 0 0 0 0 0
2088 Extended TQFT arising from enriched multi-fusi... define symmetric monoidal category duals whose... 0 0 1 0 0 0
2089 Multipermutation Ulam Sphere Analysis Toward C... permutation codes form rank modulation shown p... 1 0 1 0 0 0
2090 Thermophysical characteristics of the large ma... dembowska large bright mainbelt asteroid fast ... 0 1 0 0 0 0
2091 CM3: Cooperative Multi-goal Multi-stage Multi-... propose cm new deep reinforcement learning met... 0 0 0 1 0 0
2092 Adaptive twisting sliding mode control for qua... work addresses problem robust attitude control... 1 0 0 0 0 0
2093 Dynamic Laplace: Efficient Centrality Measure ... origin sociology social network analysis sna q... 1 0 0 0 0 0
2094 Fighting Accounting Fraud Through Forensic Dat... accounting fraud global concern representing s... 0 0 0 1 0 0
2095 Doubly Stochastic Variational Inference for De... gaussian processes gps good choice function ap... 0 0 0 1 0 0
2096 Electric properties of carbon nano-onion/polya... complex electric modulus ac conductivity carbo... 0 1 0 0 0 0
2097 Uniform Rates of Convergence of Some Represent... uniform convergence rates provided asymptotic ... 0 0 0 1 0 0
2098 Predicting regional and pan-Arctic sea ice ano... predicting arctic sea ice extent notoriously d... 0 1 0 0 0 0
2099 Eigensolutions and spectral analysis of a mode... plasmids autonomously replicating genetic elem... 0 0 0 0 1 0
2100 Large-sample approximations for variance-covar... distributional approximations bi linear functi... 0 0 1 1 0 0
2101 Resilience: A Criterion for Learning in the Pr... introduce criterion resilience allows properti... 1 0 0 1 0 0
2102 Non-Euclidean geometry, nontrivial topology an... space topological defect abrikosovnielsenolese... 0 1 0 0 0 0
2103 Spatial risk measures and rate of spatial dive... accurate assessment risk extreme environmental... 0 0 0 0 0 1
2104 Double Homotopy (Co)Limits for Relative Catego... answer question extent homotopy colimits categ... 0 0 1 0 0 0
2105 Theory of ground states for classical Heisenbe... formulate part rigorous theory ground states c... 0 1 1 0 0 0
2106 A Pliable Index Coding Approach to Data Shuffling promising research area recently emerged use i... 1 0 0 0 0 0
2107 The statistical challenge of constraining the ... use monte carlo simulations explore statistica... 0 1 0 0 0 0
2108 Spatial analysis of airborne laser scanning po... recent developments remote sensing technologie... 0 0 0 1 1 0
2109 Analytic and arithmetic properties of the $(Γ,... consider reproducing kernel function theta bar... 0 0 1 0 0 0
2110 Concentration of $1$-Lipschitz functions on ma... paper consider concentration measure problem r... 0 0 1 0 0 0
2111 Simulated Annealing for JPEG Quantization jpeg one widely used image formats ways remain... 1 0 0 0 0 0
2112 Greedy Strategy Works for Clustering with Outl... study problems clustering outliers high dimens... 1 0 0 0 0 0
2113 All-but-the-Top: Simple and Effective Postproc... realvalued word representations transformed nl... 1 0 0 1 0 0
2114 Detecting Near Duplicates in Software Document... contemporary software documentation complicate... 1 0 0 0 0 0
2115 L-Graphs and Monotone L-Graphs mathsflembedding graph vertex represented math... 1 0 0 0 0 0
2116 ZigZag: A new approach to adaptive online lear... develop novel family algorithms online learnin... 1 0 1 1 0 0
2117 Comparing Rule-Based and Deep Learning Models ... objective investigate whether deep learning te... 1 0 0 1 0 0
2118 Jackknife multiplier bootstrap: finite sample ... paper concerned finite sample approximations s... 0 0 1 1 0 0
2119 On the universality of anomalous scaling expon... previous experiments open turbulent flows eg d... 0 1 0 0 0 0
2120 On the Heat Kernel and Weyl Anomaly of Schrödi... propose method inspired discrete light cone qu... 0 1 0 0 0 0
2121 Tree-based networks: characterisations, metric... phylogenetic networks generalise phylogenetic ... 1 0 0 0 0 0
2122 Comparing People with Bibliometrics bibliometric indicators citation counts andor ... 1 1 0 0 0 0
2123 Urban Dreams of Migrants: A Case Study of Migr... unprecedented human mobility driven rapid urba... 1 1 0 0 0 0
2124 A computational method for estimating Burr XII... flexibility shape scale burr xii distribution ... 0 0 0 1 0 0
2125 Locally stationary spatio-temporal interpolati... argo floats measure seawater temperature salin... 0 1 0 1 0 0
2126 Knowledge Reuse for Customization: Metamodels ... theories knowledge reuse posit two distinct pr... 1 0 0 0 0 0
2127 Dynamic Rank Maximal Matchings consider problem matching applicants posts app... 1 0 0 0 0 0
2128 Early identification of important patents thro... one challenging problems technological forecas... 1 0 0 0 0 0
2129 Central limit theorem for the variable bandwid... paper study ideal variable bandwidth kernel de... 0 0 1 1 0 0
2130 Distance-to-Mean Continuous Conditional Random... increase vehicle highways may cause traffic co... 1 0 0 0 0 0
2131 Submap-based Pose-graph Visual SLAM: A Robust ... vslam visual simultaneous localization mapping... 1 0 0 0 0 0
2132 Partial and Total Dielectronic Recombination R... dielectronic recombination dr dominant mode re... 0 1 0 0 0 0
2133 Congenial Causal Inference with Binary Structu... structural nested mean models snmms among fund... 0 0 0 1 0 0
2134 Improving Search through A3C Reinforcement Lea... develop reinforcement learning based search as... 1 0 0 0 0 0
2135 Eco-Routing based on a Data Driven Fuel Consum... nonparametric fuel consumption model developed... 0 0 0 1 0 0
2136 SuperSpike: Supervised learning in multi-layer... vast majority computation brain performed spik... 1 0 0 1 0 0
2137 Distributions-oriented wind forecast verificat... winds northwest quadrant lack precipitation kn... 0 0 0 1 0 0
2138 Mean Field Residual Networks: On the Edge of C... study randomly initialized residual networks u... 1 1 0 0 0 0
2139 Automorphisms and deformations of conformally ... obtain structure theorem group holomorphic aut... 0 0 1 0 0 0
2140 Human-Level Intelligence or Animal-Like Abilit... vision systems eagle snake outperform everythi... 1 0 0 1 0 0
2141 Wembedder: Wikidata entity embedding web service present web service querying embedding entitie... 1 0 0 1 0 0
2142 Meta-Learning for Contextual Bandit Exploration describe melee metalearning algorithm learning... 1 0 0 1 0 0
2143 Population polarization dynamics and next-gene... present manybody theory explains reproduces re... 0 1 0 0 0 0
2144 Ride Sharing and Dynamic Networks Analysis potential efficient ridesharing scheme signifi... 1 1 0 0 0 0
2145 Gas Adsorption and Dynamics in Pillared Graphe... pillared graphene frameworks novel class micro... 0 1 0 0 0 0
2146 DepthSynth: Real-Time Realistic Synthetic Data... recent progress computer vision dominated deep... 1 0 0 0 0 0
2147 Short Laws for Finite Groups and Residual Fini... prove every n mathbbn delta exists word wn f l... 0 0 1 0 0 0
2148 Majorana Spin Liquids, Topology and Supercondu... theoretically address spin chain analogs kitae... 0 1 0 0 0 0
2149 Conditional Mean and Quantile Dependence Testi... motivated applications biological science prop... 0 0 1 1 0 0
2150 Finding low-tension communities motivated applications arise online social med... 1 1 0 0 0 0
2151 Cohomology of the flag variety under PBW degen... pbw degenerations particularly nice family fla... 0 0 1 0 0 0
2152 Exact MAP inference in general higher-order gr... paper concerned problem exact map inference ge... 1 0 0 0 0 0
2153 Dissolution of topological Fermi arcs in a dir... weyl semimetals wsms recently attracted great ... 0 1 0 0 0 0
2154 Performance Improvement in Noisy Linear Consen... analyze performance class timedelay firstorder... 1 0 0 0 0 0
2155 Use of First and Third Person Views for Deep I... explore problem intersection classification us... 1 0 0 0 0 0
2156 On the Liouville heat kernel for k-coarse MBRW... study liouville heat kernel l phase associated... 0 0 1 0 0 0
2157 Bounding the convergence time of local probabi... isoperimetric inequalities form intuitive yet ... 1 0 0 0 0 0
2158 Excitable behaviors chapter revisits concept excitability basic sy... 1 0 0 0 0 0
2159 Laplacian solitons: questions and homogeneous ... give first examples closed laplacian solitons ... 0 0 1 0 0 0
2160 The Markoff Group of Transformations in Prime ... markoff group transformations group gamma affi... 0 0 1 0 0 0
2161 The equivariant index of twisted dirac operato... consider spin manifold equipped line bundle l ... 0 0 1 0 0 0
2162 Proportionally Representative Participatory Bu... participatory budgeting one exciting developme... 1 0 0 0 0 0
2163 The Arctic Ocean seasonal cycles of heat and f... paper presents first estimate seasonal cycle o... 0 1 0 0 0 0
2164 Standard Zero-Free Regions for Rankin--Selberg... give simple proof standard zerofree region tas... 0 0 1 0 0 0
2165 Mass transfer in asymptotic-giant-branch binar... binary stars interact via mass transfer one me... 0 1 0 0 0 0
2166 On polar relative normalizations of ruled surf... paper deals skew ruled surfaces euclidean spac... 0 0 1 0 0 0
2167 Femtosecond X-ray Fourier holography imaging o... ultrafast xray imaging provides high resolutio... 0 1 0 0 0 0
2168 The Rank Effect decompose returns portfolios bottomranked lowe... 0 0 0 0 0 1
2169 The Generalized Label Correcting Method for Op... nearly autonomous robotic systems use form mot... 1 0 0 0 0 0
2170 Learning to Compose Task-Specific Tree Structures years recursive neural networks rvnns shown su... 1 0 0 0 0 0
2171 Navier-Stokes flow past a rigid body: attainab... consider navierstokes flow dimensional exterio... 0 0 1 0 0 0
2172 Flux cost functions and the choice of metaboli... metabolic fluxes cells governed physical bioch... 0 0 0 0 1 0
2173 Finding Archetypal Spaces for Data Using Neura... archetypal analysis type factor analysis data ... 1 0 0 1 0 0
2174 Formally continuous functions on Baire space function baire space natural numbers called fo... 1 0 1 0 0 0
2175 Universal Joint Image Clustering and Registrat... consider problem universal joint clustering re... 1 0 1 1 0 0
2176 Quantitative statistical stability and speed o... consider general relation fixed point stabilit... 0 0 1 0 0 0
2177 Minimax Rényi Redundancy redundancy universal lossless compression disc... 1 0 1 0 0 0
2178 DeepArchitect: Automatically Designing and Tra... deep learning performance strongly affected ch... 0 0 0 1 0 0
2179 Dynamical control of atoms with polarized bich... propose ultranarrow dynamical control populati... 0 1 0 0 0 0
2180 Cycle packings of the complete multigraph bryant horsley maenhaut smith recently gave ne... 0 0 1 0 0 0
2181 Statistical Inference for the Population Lands... modern statistical inference tasks often requi... 0 0 1 1 0 0
2182 Super cavity solitons and the coexistence of m... passive kerr cavities driven coherent laser fi... 0 1 0 0 0 0
2183 Twisting and Mixing present framework connects three interesting c... 0 0 1 0 0 0
2184 KeyVec: Key-semantics Preserving Document Repr... previous studies demonstrated empirical succes... 1 0 0 0 0 0
2185 Integer Factorization with a Neuromorphic Sieve bound factor large integers dominated computat... 1 0 0 0 0 0
2186 Probabilistic Assessment of PV-Battery System ... increasing uptake residential batteries led su... 1 0 0 0 0 0
2187 Simulating Cellular Communications in Vehicula... evolution cellular technologies toward g progr... 1 0 0 0 0 0
2188 AdaBatch: Adaptive Batch Sizes for Training De... training deep neural networks stochastic gradi... 1 0 0 1 0 0
2189 Extremely broadband ultralight thermally emiss... report design fabrication characterization ult... 0 1 0 0 0 0
2190 Wright-Fisher diffusions for evolutionary game... investigate spatial evolutionary games deathbi... 0 0 1 0 0 0
2191 Quantized Compressed Sensing for Partial Rando... provide first analysis nontrivial quantization... 1 0 1 0 0 0
2192 Optimal Scheduling of Multi-Energy Systems wit... paper proposes detailed optimal scheduling mod... 1 0 0 0 0 0
2193 On the sharpness and the injective property of... justification awareness models jams proposed s... 1 0 0 0 0 0
2194 AFT*: Integrating Active Learning and Transfer... splendid success convolutional neural networks... 0 0 0 1 0 0
2195 Do triangle-free planar graphs have exponentia... thomassen conjectured trianglefree planar grap... 0 0 1 0 0 0
2196 Smart TWAP trading in continuous-time equilibria paper presents continuoustime equilibrium mode... 0 0 0 0 0 1
2197 Self-sustained activity in balanced networks w... brain display selfsustained activity ssa persi... 0 0 0 0 1 0
2198 Fixed-Rank Approximation of a Positive-Semidef... several important applications streaming pca s... 1 0 0 1 0 0
2199 A New Perspective on Robust $M$-Estimation: Fi... heavytailed errors impair accuracy least squar... 0 0 1 1 0 0
2200 On the incorporation of interval-valued fuzzy ... paper analyse benefits incorporating intervalv... 1 0 0 0 0 0
2201 Characterization of Thermal Neutron Beam Monitors neutron beam monitors high efficiency low gamm... 0 1 0 0 0 0
2202 Detecting Galaxy-Filament Alignments in the Sl... previous studies shown filamentary structures ... 0 0 0 1 0 0
2203 Pandeia: A Multi-mission Exposure Time Calcula... pandeia exposure time calculator etc system de... 0 1 0 0 0 0
2204 The numbers of edges of 5-polytopes with a giv... basic combinatorial invariant convex polytope ... 0 0 1 0 0 0
2205 MapExif: an image scanning and mapping tool fo... recently integration geographical coordinates ... 1 0 0 0 0 0
2206 Fitch-Style Modal Lambda Calculi fitchstyle modal deduction modalities eliminat... 1 0 0 0 0 0
2207 Hot Stuff for One Year (HSOY) - A 583 million ... recently first installment data esas gaia astr... 0 1 0 0 0 0
2208 Asymptotic behaviour of ground states for mixt... consider randomly distributed mixtures bonds f... 0 0 1 0 0 0
2209 Extended Reduced-Form Framework for Non-Life I... paper propose general framework modeling insur... 0 0 0 0 0 1
2210 Overview of Recent Studies and Design Changes ... paper cover several studies design changes eve... 0 1 0 0 0 0
2211 Complete algebraic solution of multidimensiona... consider multidimensional optimization problem... 1 0 1 0 0 0
2212 Deep Learning on Attributed Graphs: A Journey ... graph powerful concept representation relation... 1 0 0 1 0 0
2213 Supermodular Optimization for Redundant Robot ... paper considers assignment multiple mobile rob... 1 0 0 0 0 0
2214 Several classes of optimal ternary cyclic codes cyclic codes efficient encoding decoding algor... 1 0 1 0 0 0
2215 $Σ$-pure-injective modules for string algebras... prove indecomposable sigmapureinjective module... 0 0 1 0 0 0
2216 Continuous Optimization of Adaptive Quadtree S... present novel continuous optimization method d... 1 0 0 0 0 0
2217 Machine Learning Meets Microeconomics: The Cas... provide microeconomic framework decision trees... 0 0 0 1 0 0
2218 Structured Control Nets for Deep Reinforcement... recent years deep reinforcement learning made ... 1 0 0 0 0 0
2219 PAC Identification of Many Good Arms in Stocha... consider problem identifying k best arms narme... 1 0 0 1 0 0
2220 Collaborative Filtering using Denoising Auto-E... recommender systems rs help users navigate lar... 1 0 0 1 0 0
2221 Stein's Method for Stationary Distributions of... develop new technique based steins method comp... 0 0 1 0 0 0
2222 Enabling Multi-Source Neural Machine Translati... paper propose novel elegant solution multisour... 1 0 0 0 0 0
2223 Risk-sensitive Inverse Reinforcement Learning ... literature inverse reinforcement learning irl ... 1 0 0 0 0 0
2224 QRT maps and related Laurent systems recent work shown recursive factorisation cert... 0 1 1 0 0 0
2225 Model-based reinforcement learning in differen... paper seeks combine differential game theory a... 1 0 1 0 0 0
2226 The depth of a finite simple group introduce notion depth finite group g defined ... 0 0 1 0 0 0
2227 TRAGALDABAS. First results on cosmic ray studi... cosmic rays originating extraterrestrial sourc... 0 1 0 0 0 0
2228 Approximation of solutions of SDEs driven by a... aim paper establish strong stability propertie... 0 0 1 0 0 0
2229 Smoothed GMM for quantile models paper develops theory feasible estimators fini... 0 0 1 1 0 0
2230 Multi-district preference modelling generating realistic artificial preference dis... 1 1 0 0 0 0
2231 Orientability of the moduli space of Spin(7)-i... let momega closed dimensional manifold equippe... 0 0 1 0 0 0
2232 Neural Text Generation: A Practical Guide deep learning methods recently achieved great ... 1 0 0 1 0 0
2233 Context Prediction for Unsupervised Deep Learn... point clouds provide flexible natural represen... 1 0 0 1 0 0
2234 A core-set approach for distributed quadratic ... new challenge learning algorithms cyberphysica... 1 0 1 0 0 0
2235 On the Erasure Robustness Property of Random M... study restricted isometry property rip corrupt... 0 0 1 0 0 0
2236 The Weighted Kendall and High-order Kernels fo... propose new positive definite kernels permutat... 0 0 0 1 0 0
2237 Synchronizing automata and the language of min... study connection synchronizing automata set mi... 1 0 0 0 0 0
2238 Peephole: Predicting Network Performance Befor... quest performant networks significant force dr... 1 0 0 1 0 0
2239 Optimization Landscape and Expressivity of Dee... analyze loss landscape expressiveness practica... 1 0 0 1 0 0
2240 A new cosine series antialiasing function and ... formulated implemented procedure generate alia... 1 0 0 0 0 0
2241 Defining Equations of Nilpotent Orbits for Bor... let g quasisimple algebraic group defined alge... 0 0 1 0 0 0
2242 Quadratically Tight Relations for Randomized Q... let fn rightarrow boolean function certificate... 1 0 0 0 0 0
2243 Parabolic subgroup orbits on finite root systems oshimas lemma describes orbits parabolic subgr... 0 0 1 0 0 0
2244 User Modelling for Avoiding Overfitting in Int... humanintheloop machine learning user provides ... 1 0 0 1 0 0
2245 A note on the asymptotics of the modified Bess... employ exponentially improved asymptotic expan... 0 0 1 0 0 0
2246 Fair k-Center Clustering for Data Summarization data summarization want choose k prototypes or... 1 0 0 1 0 0
2247 Advanced Bayesian Multilevel Modeling with the... brms package allows r users easily specify wid... 0 0 0 1 0 0
2248 $W$-entropy, super Perelman Ricci flows and $(... paper prove characterization k inftysuper pere... 0 0 1 0 0 0
2249 Stellar energetic particle ionization in proto... anomalies abundance measurements short lived r... 0 1 0 0 0 0
2250 Extended Trust-Region Problems with One or Two... establish geometric condition guaranteeing exa... 0 0 1 0 0 0
2251 Weighted batch means estimators in Markov chai... paper proposes family weighted batch means var... 0 0 0 1 0 0
2252 Backpropagation through the Void: Optimizing c... gradientbased optimization foundation deep lea... 1 0 0 0 0 0
2253 Truncation-free Hybrid Inference for DPMM dirichlet process mixture models dpmm cornerst... 1 0 0 1 0 0
2254 Functors and morphisms determined by subcatego... study existence uniqueness minimal right deter... 0 0 1 0 0 0
2255 Collective Effects in Nanolasers Explained by ... study stationary photon output statistics smal... 0 1 0 0 0 0
2256 The Risk of Machine Learning many applied settings empirical economics invo... 0 0 0 1 0 0
2257 Agatha: disentangling periodic signals from co... periodograms used key significance assessment ... 0 1 0 1 0 0
2258 A Probabilistic Disease Progression Model for ... work consider problem predicting course progre... 0 0 0 1 0 0
2259 On the generation of the quarks through sponta... paper present state art quarks group su lie al... 0 1 0 0 0 0
2260 Distributed Holistic Clustering on Linked Data link discovery active field research support d... 1 0 0 0 0 0
2261 A branch-and-bound algorithm for the minimum r... minimum kenclosing ball problem seeks ball sma... 1 0 1 0 0 0
2262 Dependency Parsing with Dilated Iterated Graph... dependency parses effective way inject linguis... 1 0 0 0 0 0
2263 Motion Planning in Irreducible Path Spaces motion mechanical system defined path configur... 1 0 0 0 0 0
2264 Learning Neural Networks with Two Nonlinear La... give polynomialtime algorithm learning neural ... 1 0 0 1 0 0
2265 Sample-Derived Disjunctive Rules for Secure Po... machine learning techniques used past using mo... 0 0 0 1 0 0
2266 Satellite altimetry reveals spatial patterns o... main properties climate waves seasonally iceco... 0 1 0 0 0 0
2267 Estimation of Covariance Matrices for Portfoli... estimating covariances financial assets plays ... 0 0 0 0 0 1
2268 Zeeman interaction and Jahn-Teller effect in $... present thorough analysis interplay magnetic m... 0 1 0 0 0 0
2269 Measuring the Declared SDK Versions and Their ... android popular smartphone system multiple pla... 1 0 0 0 0 0
2270 The Design and Implementation of Modern Online... paper presents framework implementation online... 1 0 0 0 0 0
2271 Emergence of a spectral gap in a class of rand... motivated intriguing behavior displayed dynami... 0 1 1 0 0 0
2272 Helping News Editors Write Better Headlines: A... present software tool employs stateoftheart na... 1 0 0 0 0 0
2273 ParaGraphE: A Library for Parallel Knowledge G... knowledge graph embedding aims translating kno... 1 0 0 0 0 0
2274 The Globular Cluster - Dark Matter Halo Connec... present simple phenomenological model observed... 0 1 0 0 0 0
2275 NullHop: A Flexible Convolutional Neural Netwo... convolutional neural networks cnns become domi... 1 0 0 0 0 0
2276 Platooning in the Presence of a Speed Drop: A ... positive impacts platooning travel time reliab... 1 0 0 0 0 0
2277 Koszul duality for Lie algebroids paper studies role dglie algebroids derived de... 0 0 1 0 0 0
2278 Semi-Semantic Line-Cluster Assisted Monocular ... paper presents novel method reduce scale drift... 1 0 0 0 0 0
2279 Direct visualization of vortex ice in a nanost... artificial ice systems unique physical propert... 0 1 0 0 0 0
2280 Statistical Mechanics of Node-perturbation Lea... nodeperturbation learning type statistical gra... 1 0 0 1 0 0
2281 New Generalized Fixed Point Results on $S_{b}$... recently sbmetric spaces introduced generaliza... 0 0 1 0 0 0
2282 A Decentralized Optimization Framework for Ene... designing decentralized policies wireless comm... 1 0 1 0 0 0
2283 Inf-sup stable finite-element methods for the ... paper propose analyze finite element method ha... 0 0 1 0 0 0
2284 Power Control and Relay Selection in Full-Dupl... paper investigates power control relay selecti... 1 0 1 1 0 0
2285 Ternary and $n$-ary $f$-distributive Structures introduce study ternary fdistributive structur... 0 0 1 0 0 0
2286 Deformations of infinite-dimensional Lie algeb... important unsolved problem theory integrable s... 0 1 0 0 0 0
2287 Tunable high-harmonic generation by chromatic ... work study impact chromatic focusing fewcycle ... 0 1 0 0 0 0
2288 Gate Switchable Transport and Optical Anisotro... anisotropy describes directional dependence ma... 0 1 0 0 0 0
2289 MM Algorithms for Variance Component Estimatio... logistic linear mixed model widely used experi... 0 0 0 1 0 0
2290 Settling the query complexity of non-adaptive ... prove nonadaptive algorithm tests whether unkn... 1 0 0 0 0 0
2291 Investigation of Language Understanding Impact... language understanding key component spoken di... 1 0 0 0 0 0
2292 String stability and a delay-based spacing pol... novel delaybased spacing policy control vehicl... 1 0 1 0 0 0
2293 Reidemeister spectra for solvmanifolds in low ... reidemeister number endomorphism group number ... 0 0 1 0 0 0
2294 Cross-layer Optimization for Ultra-reliable an... paper propose framework crosslayer optimizatio... 1 0 0 0 0 0
2295 Network Inference via the Time-Varying Graphic... many important problems modeled system interco... 1 0 1 0 0 0
2296 Construction of dynamical semigroups by a func... functional version kato oneparametric regulari... 0 0 1 0 0 0
2297 Visual Reasoning with Multi-hop Feature Modula... recent breakthroughs computer vision natural l... 0 0 0 1 0 0
2298 Behavioral-clinical phenotyping with type 2 di... objective evaluate unsupervised clustering met... 0 0 0 1 0 0
2299 Ultrahigh capacitive energy storage in highly ... report structural optical temperature frequenc... 0 1 0 0 0 0
2300 Hermitian-Yang-Mills connections on collapsing... let xrightarrow mathbb p elliptically fibered ... 0 0 1 0 0 0
2301 Highly Efficient Human Action Recognition with... paper propose use quantum genetic algorithm op... 1 0 0 1 0 0
2302 The Game Imitation: Deep Supervised Convolutio... present visiononly model gaming ai uses late i... 1 0 0 0 0 0
2303 Differential relations for almost Belyi maps several kinds differential relations polynomia... 0 0 1 0 0 0
2304 Non-commutative holomorphic semicocycles paper studies holomorphic semicocycles semigro... 0 0 1 0 0 0
2305 Comparative Study of Virtual Machines and Cont... work plan develop system compare virtual machi... 1 0 0 0 0 0
2306 Developmental tendencies in the Academic Field... emergence intellectual property academic issue... 1 1 0 0 0 0
2307 Periodic fourth-order cubic NLS: Local well-po... paper consider cubic fourthorder nonlinear sch... 0 0 1 0 0 0
2308 Feature Learning for Meta-Paths in Knowledge G... thesis study problem feature learning heteroge... 1 0 0 1 0 0
2309 Closed-Form Exact Inverses of the Weakly Singu... introduce new boundary integral operators exac... 0 0 1 0 0 0
2310 Focus on Imaging Methods in Granular Physics granular materials complex multiparticle ensem... 0 1 0 0 0 0
2311 The Stochastic Matching Problem: Beating Half ... stochastic matching problem given general nece... 1 0 0 0 0 0
2312 Measuring the unmeasurable - a project of dome... prevention domestic violence dv aroused seriou... 1 0 0 0 0 0
2313 Attaining Capacity with Algebraic Geometry Cod... paper show attain capacity discrete symmetric ... 1 0 0 0 0 0
2314 Embedded real-time monitoring using SystemC in... avionics one kind domain prevention prevails n... 1 0 0 0 0 0
2315 One pixel attack for fooling deep neural networks recent research revealed output deep neural ne... 1 0 0 1 0 0
2316 A computer simulation of the Volga River hydro... investigate special dam optimal location volga... 1 0 0 0 0 0
2317 Multi-proton bunch driven hollow plasma wakefi... protondriven plasma wakefield acceleration dem... 0 1 0 0 0 0
2318 Self corrective Perturbations for Semantic Seg... convolutional neural networks subject great im... 1 0 0 1 0 0
2319 Large-Scale Mapping of Human Activity using Ge... paper first work perform spatiotemporal mappin... 1 0 0 0 0 0
2320 Structure of a Parabolic Partial Differential ... paper studies structure parabolic partial diff... 1 0 1 0 0 0
2321 GCN-GAN: A Non-linear Temporal Link Prediction... paper generally formulate dynamics prediction ... 1 0 0 0 0 0
2322 Efficient Exact and Approximate Algorithms for... graphs important tool model data different dom... 1 0 0 0 0 0
2323 A multi-instrument non-parametric reconstructi... context past decade sensitive resolved sunyaev... 0 1 0 0 0 0
2324 Recognizing Union-Find trees built up using un... disjointset forests consisting unionfind trees... 1 0 0 0 0 0
2325 A Competitive Algorithm for Online Multi-Robot... paper study problem exploring translating plum... 1 0 0 0 0 0
2326 Warped Riemannian metrics for location-scale m... present paper shows warped riemannian metrics ... 0 0 1 1 0 0
2327 Admissibility of solution estimators for stoch... look stochastic optimization problems lens sta... 0 0 1 1 0 0
2328 Min-Max Regret Scheduling To Minimize the Tota... study single machine scheduling problem object... 1 0 0 0 0 0
2329 Correcting rural building annotations in OpenS... rural building mapping paramount support demog... 1 0 0 0 0 0
2330 Closed-form Harmonic Contrast Control with Sur... problem suppressing scattering conductive obje... 0 1 0 0 0 0
2331 Numerical methods to prevent pressure oscillat... accurate robust simulation transcritical realf... 0 1 0 0 0 0
2332 Shape Convergence for Aggregate Tiles in Confo... given substitution tiling plane subdivision op... 0 0 1 0 0 0
2333 Performance and sensitivity of vortex coronagr... detection molecular species atmospheres earthl... 0 1 0 0 0 0
2334 Classical Spacetime Structure discuss several issues related classical space... 0 1 0 0 0 0
2335 Fractal curves from prime trigonometric series study convergence parameter family series valp... 0 0 1 0 0 0
2336 Facets on the convex hull of $d$-dimensional B... stationary homogeneous markov processes viz lv... 0 1 1 0 0 0
2337 Local systems on complements of arrangements o... consider smooth complex quasiprojective variet... 0 0 1 0 0 0
2338 Some Open Problems in Random Matrix Theory and... describe list open problems random matrix theo... 0 1 1 0 0 0
2339 A semi-parametric estimation for max-mixture s... proposed semiparametric estimation procedure o... 0 0 1 1 0 0
2340 Spectroscopic Observation and Analysis of HII ... spectra starforming hii regions ngc observed u... 0 1 0 0 0 0
2341 Output-only parameter identification of a colo... problem outputonly parameter identification no... 0 1 0 0 0 0
2342 Deep learning to achieve clinically applicable... half million individuals diagnosed head neck c... 0 0 0 1 0 0
2343 Anomaly Detection in Hierarchical Data Streams... consider problem detecting targets among large... 1 0 0 0 0 0
2344 Intelligent Parameter Tuning in Optimization-b... number imageprocessing problems formulated opt... 0 1 0 0 0 0
2345 Adversarial Examples that Fool Detectors adversarial example example adjusted produce w... 1 0 0 0 0 0
2346 FLUX: Progressive State Estimation Based on Za... propose homotopy continuation method called fl... 1 0 0 0 0 0
2347 Direct and mediating influences of user-develo... user participation considered effective way co... 1 0 0 0 0 0
2348 Equivariant Schrödinger maps from two dimensio... article consider equivariant schrdinger map bb... 0 0 1 0 0 0
2349 A fast numerical method for ideal fluid flow i... collection arbitrarilyshaped solid objects mov... 0 0 1 0 0 0
2350 A Short Survey on Probabilistic Reinforcement ... reinforcement learning agent tries maximize cu... 1 0 0 1 0 0
2351 Modification of low-temperature silicon dioxid... structure composition electrophysical characte... 0 1 0 0 0 0
2352 GelSlim: A High-Resolution, Compact, Robust, a... work describes development highresolution tact... 1 0 0 0 0 0
2353 The Muon g-2 experiment at Fermilab upcoming fermilab e experiment measure muon an... 0 1 0 0 0 0
2354 Ringel duality as an instance of Koszul duality previous work koenig ovsienko second author sh... 0 0 1 0 0 0
2355 Bypass Fraud Detection: Artificial Intelligenc... telecom companies severely damaged bypass frau... 1 0 0 0 0 0
2356 Absence of cyclotron resonance in the anomalou... observed many thin superconducting films high ... 0 1 0 0 0 0
2357 Scenario Reduction Revisited: Fundamental Limi... goal scenario reduction approximate given disc... 0 0 1 0 0 0
2358 Testing the science/technology relationship by... relationship scientific knowledge development ... 1 1 0 0 0 0
2359 The Informativeness of $k$-Means and Dimension... learning mixture models viewed clustering prob... 1 0 0 1 0 0
2360 A Mention-Ranking Model for Abstract Anaphora ... resolving abstract anaphora important difficul... 1 0 0 1 0 0
2361 Harmonic density interpolation methods for hig... present effective harmonic density interpolati... 0 1 0 0 0 0
2362 Stochastic Low-Rank Bandits many problems computer vision recommender syst... 1 0 0 1 0 0
2363 Temporal resolution of a pre-maximum halt in a... classical novae show rapid rise optical bright... 0 1 0 0 0 0
2364 The Thermophysical Properties of the Bagnold D... work compare thermophysical properties particl... 0 1 0 0 0 0
2365 Entrywise Eigenvector Analysis of Random Matri... recovering lowrank structures via eigenvector ... 0 0 1 1 0 0
2366 Algorithmic Trading with Fitted Q Iteration an... present use fitted q iteration algorithmic tra... 0 0 0 0 0 1
2367 Superrigidity of actions on finite rank median... finite rank median spaces simultaneous general... 0 0 1 0 0 0
2368 Detecting and Explaining Causes From Text For ... explaining underlying causes effects events ch... 1 0 0 0 0 0
2369 Mailbox Types for Unordered Interactions propose type system reasoning protocol conform... 1 0 0 0 0 0
2370 The Complexity of Counting Surjective Homomorp... homomorphism graph g graph h function vertices... 1 0 0 0 0 0
2371 A recursive algorithm and a series expansion r... consider spatially homogeneous boltzmann equat... 0 0 1 0 0 0
2372 Periodic auxetics: Structure and design materials science adopted term auxetic behavio... 0 0 1 0 0 0
2373 Asymptotics of maximum likelihood estimation f... asymptotics maximum likelihood estimation alph... 0 0 1 1 0 0
2374 Enabling Massive Deep Neural Networks with the... deep neural networks dnns emerged core tool ma... 1 0 0 0 0 0
2375 Univariate and Bivariate Geometric Discrete Ge... marshall olkin biometrika introduced powerful ... 0 0 0 1 0 0
2376 What Can Machine Learning Teach Us about Commu... rapid improvements machine learning past decad... 1 0 0 1 0 0
2377 Global stability of a network-based SIRS epide... paper studies dynamics networkbased sirs epide... 0 0 0 0 1 0
2378 Slicewise definability in first-order logic wi... every qin mathbb n let textrmfoq denote class ... 1 0 0 0 0 0
2379 The efficiency of community detection by most ... community analysis important way ascertain whe... 1 0 0 0 0 0
2380 Composite Adaptive Control for Bilateral Teleo... composite adaptive control schemes use system ... 1 0 0 0 0 0
2381 Infinitely many periodic orbits just above the... introduce new critical value cinftyl tonelli l... 0 0 1 0 0 0
2382 Decentralized Random Walk-Based Data Collectio... analyze decentralized random walkbased algorit... 1 0 0 0 0 0
2383 The Fan Region at 1.5 GHz. I: Polarized synchr... fan region one dominant features polarized rad... 0 1 0 0 0 0
2384 The redshift distribution of cosmological samp... determining redshift distribution nz galaxy sa... 0 1 0 0 0 0
2385 DeepCodec: Adaptive Sensing and Recovery via D... paper develop novel computational sensing fram... 1 0 0 1 0 0
2386 Robotic frameworks, architectures and middlewa... nowadays construction complex robotic system r... 1 0 0 0 0 0
2387 Analysis of equivalence relation in joint spar... joint sparse recovery problem generalization s... 1 0 1 0 0 0
2388 The Stochastic Firefighter Problem dynamics infectious diseases spread crucial de... 1 0 0 0 0 0
2389 The phase space structure of the oligopoly dyn... investigate dynamical complexity cournot oligo... 0 1 0 0 0 0
2390 Generalizations of the 'Linear Chain Trick': I... mathematical modelers long known rule thumb re... 0 0 0 0 1 0
2391 Life and work of Egbert Brieskorn (1936 - 2013) egbert brieskorn died july days th birthday im... 0 0 1 0 0 0
2392 Resource Allocation for a Full-Duplex Base Sta... exploiting fullduplex fd technology base stati... 1 0 0 0 0 0
2393 Combining Neural Networks and Tree Search for ... consider task motion planning complex dynamic ... 1 0 0 0 0 0
2394 BT-Nets: Simplifying Deep Neural Networks via ... recently deep neural networks dnns regarded st... 1 0 0 1 0 0
2395 Resampling Strategy in Sequential Monte Carlo ... sequential monte carlo smc methods class monte... 0 0 0 1 0 0
2396 Transverse Shift in Andreev Reflection incoming electron reflected back hole normalme... 0 1 0 0 0 0
2397 Production of Entanglement Entropy by Decoherence examine dynamics entanglement entropy parts op... 0 1 0 0 0 0
2398 Aggressive Economic Incentives and Physical Ac... aggressive incentive schemes allow individuals... 0 0 0 0 0 1
2399 Dynamics of resonances and equilibria of Low E... nearby space surrounding earth densely populat... 0 1 0 0 0 0
2400 Nonequilibrium photonic transport and phase tr... characterize photonic transport boundary drive... 0 1 0 0 0 0
2401 The Unusual Effectiveness of Averaging in GAN ... show empirically optimal strategy parameter av... 0 0 0 1 0 0
2402 A null test of General Relativity: New limits ... compare longterm fractional frequency variatio... 0 1 0 0 0 0
2403 Stellarator bootstrap current and plasma flow ... bootstrap current flow velocity lowcollisional... 0 1 0 0 0 0
2404 SG1120-1202: Mass-Quenching as Tracked by UV E... use hubble space telescope obtain wfcfw imagin... 0 1 0 0 0 0
2405 Dynamical patterns in individual trajectories ... society faces fundamental global problem under... 1 1 0 0 0 0
2406 Convergence rate bounds for a proximal ADMM wi... paper establishes convergence rate bounds vari... 0 0 1 0 0 0
2407 Detection, Recognition and Tracking of Moving ... paper address basic problem recognizing moving... 1 0 0 0 0 0
2408 Microfluidics for Chemical Synthesis: Flow Che... klavs f jensen warren k lewis professor chemic... 0 0 0 0 1 0
2409 Global Sensitivity Analysis of High Dimensiona... complexity size stateoftheart cell models sign... 0 0 0 0 1 0
2410 Few new reals introduce new method building models ch togeth... 0 0 1 0 0 0
2411 Boundary Hamiltonian theory for gapped topolog... paper propose hamiltonian approach gapped topo... 0 1 1 0 0 0
2412 Fast Inverse Nonlinear Fourier Transformation ... paper considers nonhermitian zakharovshabat zs... 0 1 0 0 0 0
2413 Propagation in media as a probe for topologica... central goal thesis develop methods experiment... 0 1 0 0 0 0
2414 Leverage Score Sampling for Faster Accelerated... given matrix mathbfainmathbbrntimes vector b i... 1 0 0 1 0 0
2415 SOTER: Programming Safe Robotics System using ... autonomous robots increasingly depend thirdpar... 1 0 0 0 0 0
2416 On the Evaluation of Silicon Photomultipliers ... silicon photomultipliers sipms potential solid... 0 1 0 0 0 0
2417 Reconsidering Experiments experiments may reveal full import time perfor... 0 1 0 0 0 0
2418 Streaming Kernel PCA with $\tilde{O}(\sqrt{n})... study statistical computational aspects kernel... 0 0 0 1 0 0
2419 Universal Protocols for Information Disseminat... consider population n agents communicate decen... 1 0 0 0 0 0
2420 A note on species realizations and nondegenera... note show mutation theory species potential de... 0 0 1 0 0 0
2421 A Unified Stochastic Formulation of Dissipativ... use generalized hierarchical equation motion p... 0 1 0 0 0 0
2422 Vortex states and spin textures of rotating sp... consider groundstate properties rashba spinorb... 0 1 0 0 0 0
2423 Semi-Global Weighted Least Squares in Image Fi... solving global method weighted least squares w... 1 0 0 0 0 0
2424 Universal elliptic Gauß sums for Atkin primes ... work builds earlier results define universal e... 0 0 1 0 0 0
2425 Deep Residual Networks and Weight Initialization residual network resnet stateoftheart architec... 1 0 0 1 0 0
2426 Wavelet graphs for the direct detection of gra... second generation gravitational wave detectors... 0 1 0 0 0 0
2427 A Survey on Hypergraph Products (Erratum) surprising diversity different products hyperg... 1 0 0 0 0 0
2428 One- and two-channel Kondo model with logarith... simple scaling consideration nrg solution one ... 0 1 0 0 0 0
2429 A deep Convolutional Neural Network for topolo... paper proposes deep convolutional neural netwo... 1 0 0 1 0 0
2430 Focused Hierarchical RNNs for Conditional Sequ... recurrent neural networks rnns attention mecha... 0 0 0 1 0 0
2431 The Faraday room of the CUORE Experiment paper describes faraday room shields cuore exp... 0 1 0 0 0 0
2432 Simulations and measurements of the impact of ... describe benchmark study collective nonlinear ... 0 1 0 0 0 0
2433 Estimation of the asymptotic variance of univa... correlated random fields common way model depe... 0 0 1 1 0 0
2434 Ensembles of Multiple Models and Architectures... deep learning approaches convolutional neural ... 1 0 0 0 0 0
2435 Estimating Phase Duration for SPaT Messages spat signal phase timing message describes lan... 0 0 0 1 0 0
2436 Efficient Spatial Variation Characterization v... paper propose novel method estimate characteri... 1 0 0 0 0 0
2437 TS-MPC for Autonomous Vehicles including a dyn... work novel approach presented solve problem tr... 1 0 0 0 0 0
2438 Flexibility Analysis for Smart Grid Demand Res... flexibility key enabler smart grid required fa... 1 0 1 0 0 0
2439 Duluth at SemEval-2017 Task 6: Language Models... paper describes duluth system participated sem... 1 0 0 0 0 0
2440 Classification of grasping tasks based on EEG-... work presents innovative application wellknown... 0 0 0 0 1 0
2441 Kepler sheds new and unprecedented light on th... stellar evolution models uncertain evolved mas... 0 1 0 0 0 0
2442 Complexity of short Presburger arithmetic study complexity short sentences presburger ar... 1 0 1 0 0 0
2443 Deep neural network based speech separation op... mean square error mse preferred choice loss fu... 1 0 0 0 0 0
2444 Characterization and control of linear couplin... introduce new application measuring symplectic... 0 1 0 0 0 0
2445 Adaptive Inferential Method for Monotone Graph... consider problem undirected graphical model in... 0 0 1 1 0 0
2446 High-dose-rate prostate brachytherapy inverse ... highdoserate brachytherapy tumor treatment met... 0 1 0 0 0 0
2447 Scaling the Scattering Transform: Deep Hybrid ... use scattering network generic fixed initializ... 1 0 0 0 0 0
2448 Methodological variations in lagged regression... studied lagged linear regression used detect p... 0 0 0 1 1 0
2449 Leontief Meets Shannon - Measuring the Complex... develop complexity measure largescale economic... 0 1 0 1 0 0
2450 Exploring nucleon spin structure through neutr... net contribution strange quark spins proton sp... 0 1 0 0 0 0
2451 A unimodular Liouville hyperbolic souvlaki ---... carmesin federici georgakopoulos arxiv constru... 0 0 1 0 0 0
2452 Comparison Based Nearest Neighbor Search consider machine learning comparisonbased sett... 1 0 0 1 0 0
2453 LSTM Networks for Data-Aware Remaining Time Pr... predicting completion time business process in... 1 0 0 1 0 0
2454 Message-passing algorithm of quantum annealing... quantum annealing qa generic method solving op... 1 0 0 1 0 0
2455 RLE Plots: Visualising Unwanted Variation in H... unwanted variation highly problematic detectio... 0 0 0 1 0 0
2456 ALMA Observations of Gas-Rich Galaxies in z~1.... present alma co detections gasrich cluster gal... 0 1 0 0 0 0
2457 CardiacNET: Segmentation of Left Atrium and Pr... anatomical biophysical modeling left atrium la... 1 0 0 1 0 0
2458 Comparison of Polynomial Chaos and Gaussian Pr... data assimilation widely used improve flood fo... 0 1 0 1 0 0
2459 Thermal Sunyaev-Zel'dovich effect in the inter... presence ubiquitous magnetic fields universe s... 0 1 0 0 0 0
2460 One-dimensional model of chiral fermions with ... study model two species onedimensional linearl... 0 1 0 0 0 0
2461 A lower bound on the positive semidefinite ran... positive semidefinite rank convex body c size ... 1 0 1 0 0 0
2462 Klt varieties with trivial canonical class - H... investigate holonomy group singular khlereinst... 0 0 1 0 0 0
2463 Selective Classification for Deep Neural Networks selective classification techniques also known... 1 0 0 0 0 0
2464 Crowdsourcing Ground Truth for Medical Relatio... cognitive computing systems require human labe... 1 0 0 0 0 0
2465 Chaotic laser based physical random bit stream... demonstrate random bit streaming system uses c... 1 1 0 0 0 0
2466 Observation of Intrinsic Half-metallic Behavio... investigated electronic states spin polarizati... 0 1 0 0 0 0
2467 Development and Characterisation of a Gas Syst... quality assurance performance qualification la... 0 1 0 0 0 0
2468 Convergence of extreme value statistics in a t... search signature universal properties extreme ... 0 1 0 1 0 0
2469 A deep search for metals near redshift 7: the ... present search metal absorption line systems h... 0 1 0 0 0 0
2470 Energy-Performance Trade-offs in Mobile Data T... year number smartphone users globally reach bi... 1 0 0 0 0 0
2471 A stability result on optimal Skorokhod embedding motivated model independent pricing derivative... 0 0 1 0 0 0
2472 On Symmetric Losses for Learning from Corrupte... paper aims provide better understanding symmet... 1 0 0 1 0 0
2473 Phase matched nonlinear optics via patterning ... ease integration coupled large secondorder non... 0 1 0 0 0 0
2474 Any cyclic quadrilateral can be inscribed in a... prove cyclic quadrilateral inscribed closed co... 0 0 1 0 0 0
2475 A finite Q-bad space prove free noncyclic group f hhat fmathbb q ma... 0 0 1 0 0 0
2476 On Blocking Collisions between People, Objects... intentional unintentional contacts bound occur... 1 0 0 0 0 0
2477 Increasing Papers' Discoverability with Precis... number published findings biomedicine increase... 1 0 0 0 0 0
2478 On topological obstructions to global stabiliz... consider classical problem control inverted pe... 0 1 1 0 0 0
2479 Automated Refactoring: Can They Pass The Turin... refactoring maintenance activity aims improve ... 1 0 0 0 0 0
2480 Free fermions on a piecewise linear four-manif... second series papers construct invariant fourd... 0 0 1 0 0 0
2481 Scalable Metropolis-Hastings for Exact Bayesia... bayesian inference via standard markov chain m... 1 0 0 1 0 0
2482 Regularization of the Kernel Matrix via Covari... kernel trick concept formulated inner product ... 0 0 0 1 0 0
2483 Fixing an error in Caponnetto and de Vito (2007) seminal paper caponnetto de vito provides mini... 0 0 1 1 0 0
2484 Supervised Typing of Big Graphs using Semantic... propose supervised algorithm generating type e... 1 0 0 0 0 0
2485 Flexible Attributed Network Embedding network embedding aims find way encode network... 1 0 0 0 0 0
2486 Attention Please: Consider Mockito when Evalua... automated program repair apr attracted widespr... 1 0 0 0 0 0
2487 Communication Modalities for Supervised Teleop... study tries explain connection communication m... 1 0 0 0 0 0
2488 Learning in anonymous nonatomic games with app... introduce model anonymous games player depende... 0 0 1 0 0 0
2489 Asynchronous Accelerated Proximal Stochastic G... work study problem minimizing sum strongly con... 1 0 0 0 0 0
2490 Intermediate curvatures and highly connected m... show forming connected sum homotopy sphere jco... 0 0 1 0 0 0
2491 Structured Differential Learning for Automatic... introduce technique automatically tune paramet... 0 0 0 1 0 0
2492 A new fractional derivative of variable order ... paper introduce two new nonsingular kernel fra... 0 0 1 0 0 0
2493 Safe Semi-Supervised Learning of Sum-Product N... several domains obtaining class annotations ex... 1 0 0 1 0 0
2494 A Structured Approach to the Analysis of Remot... number studies analysis remote sensing images ... 0 0 0 1 0 0
2495 Approximations of the Restless Bandit Problem multiarmed restless bandit problem studied cas... 0 0 1 1 0 0
2496 Iteratively reweighted $\ell_1$ algorithms wit... iteratively reweighted ell algorithm popular a... 0 0 0 1 0 0
2497 Automatic generation of analysis class diagram... object oriented software development analysis ... 1 0 0 0 0 0
2498 Deep Learning in Pharmacogenomics: From Gene R... perspective provides examples current future a... 0 0 0 1 1 0
2499 Virtual Crystals and Nakajima Monomials explicit description virtualization map modifi... 0 0 1 0 0 0
2500 Memory effects, transient growth, and wave bre... mechanisms underlying cardiac fibrillation inv... 0 1 0 0 0 0
2501 An Analysis of the Value of Information when E... paper propose informationtheoretic exploration... 1 0 0 1 0 0
2502 Probabilistic Generative Adversarial Networks introduce probabilistic generative adversarial... 1 0 0 1 0 0
2503 Model comparison for Gibbs random fields using... reversible jump markov chain monte carlo rjmcm... 0 0 0 1 0 0
2504 Functorial compactification of linear spaces define compactifications vector spaces functor... 0 0 1 0 0 0
2505 Almost complex structures on connected sums of... show mfold connected sum mmathbbcmathbbpn admi... 0 0 1 0 0 0
2506 Raman Scattering by a Two-Dimensional Fermi Li... present microscopic theory raman scattering tw... 0 1 0 0 0 0
2507 Nearly Optimal Robust Subspace Tracking work study robust subspace tracking rst proble... 0 0 0 1 0 0
2508 The Authority of "Fair" in Machine Learning paper argue adoption normative definition fair... 1 0 0 0 0 0
2509 The Social Bow Tie understanding tie strength social networks fac... 0 0 0 1 0 0
2510 Response Regimes in Equivalent Mechanical Mode... paper considers nonstationary responses reduce... 0 1 0 0 0 0
2511 Opinion evolution in time-varying social influ... investigation social influence dynamics requir... 1 1 1 0 0 0
2512 k*-Nearest Neighbors: From Global to Local weighted knearest neighbors algorithm one fund... 1 0 0 1 0 0
2513 Network Slicing for Ultra-Reliable Low Latency... important novelty g role transforming industri... 1 0 0 0 0 0
2514 Markov Decision Processes with Continuous Side... consider reinforcement learning rl setting age... 1 0 0 1 0 0
2515 Nonlinear stage of Benjamin-Feir instability i... study threewave truncation recently proposed d... 0 1 0 0 0 0
2516 Computational Thinking in Patch future likely see even pervasive computation c... 1 0 0 0 0 0
2517 Skoda's Ideal Generation from Vanishing Theore... skodas result ideal generation crucial ingredi... 0 0 1 0 0 0
2518 Computing Nonvacuous Generalization Bounds for... one defining properties deep learning models c... 1 0 0 0 0 0
2519 Method for Computationally Efficient Design of... dielectric microstructures generated much inte... 0 1 0 0 0 0
2520 Computing and Using Minimal Polynomials given zerodimensional ideal polynomial ring ma... 1 0 1 0 0 0
2521 DiVM: Model Checking with LLVM and Graph Memory paper introduce concept virtual machine grapho... 1 0 0 0 0 0
2522 Uhlenbeck's decomposition in Sobolev and Morre... present selfcontained proof uhlenbecks decompo... 0 0 1 0 0 0
2523 Making Asynchronous Distributed Computations R... consider problem making distributed computatio... 1 0 0 0 0 0
2524 Justifications in Constraint Handling Rules fo... present straightforward sourcetosource transfo... 1 0 0 0 0 0
2525 Bose-Hubbard lattice as a controllable environ... investigate open dynamics atomic impurity embe... 0 1 0 0 0 0
2526 Semi-decidable equivalence relations obtained ... composition lattice join transitive closure un... 0 0 1 0 0 0
2527 ClipAudit: A Simple Risk-Limiting Post-Electio... propose simple risklimiting audit elections cl... 1 0 0 1 0 0
2528 LCA(2), Weil index, and product formula paper study category lca certain nonlocally co... 0 0 1 0 0 0
2529 A Dichotomy for Sampling Barrier-Crossing Even... study sample paths random walk first time cros... 0 0 1 1 0 0
2530 Crawling migration under chemical signalling: ... cell migration fundamental process involved ph... 0 0 0 0 1 0
2531 Towards a Deeper Understanding of Adversarial ... recent work proposed various adversarial losse... 1 0 0 1 0 0
2532 Transit Visibility Zones of the Solar System P... detection thousands extrasolar planets transit... 0 1 0 0 0 0
2533 Nearest-neighbour Markov point processes on gr... define nearestneighbour point processes graphs... 0 0 1 1 0 0
2534 A Hierarchical Bayesian Linear Regression Mode... one challenges modelbased control stochastic d... 0 0 0 1 0 0
2535 Multitask Learning and Benchmarking with Clini... health care one exciting frontiers data mining... 1 0 0 1 0 0
2536 Essentially Finite Vector Bundles on Normal Ps... let x normal connected projective variety alge... 0 0 1 0 0 0
2537 Fluid flow across a wavy channel brought in co... pressure driven flow contact interface elastic... 0 1 0 0 0 0
2538 Species tree estimation using ASTRAL: how many... species tree reconstruction genomic data incre... 1 0 1 1 0 0
2539 Two weight Commutators in the Dirichlet and Ne... paper establish characterization weighted bmo ... 0 0 1 0 0 0
2540 Schoenberg Representations and Gramian Matrice... represent matrn functions terms schoenbergs in... 0 0 1 0 0 0
2541 A generalization of the Hasse-Witt matrix of a... hassewitt matrix hypersurface mathbb pn finite... 0 0 1 0 0 0
2542 Few-Shot Learning with Graph Neural Networks propose study problem fewshot learning prism i... 1 0 0 1 0 0
2543 High-precision measurement of the proton's ato... report precise measurement atomic mass single ... 0 1 0 0 0 0
2544 Prospects of detecting HI using redshifted 21 ... distribution cold gas postreionization era pro... 0 1 0 0 0 0
2545 Unconditional bases of subspaces related to no... assume selfadjoint operator hilbert space math... 0 0 1 0 0 0
2546 Centralities of Nodes and Influences of Layers... formulate propose algorithm multirank ranking ... 1 1 0 0 0 0
2547 Twofold triple systems with cyclic 2-intersect... given combinatorial design mathcald block set ... 0 0 1 0 0 0
2548 Consequences of Unhappiness While Developing S... growing literature affect among software devel... 1 0 0 0 0 0
2549 Typesafe Abstractions for Tensor Operations propose typesafe abstraction tensors ie multid... 1 0 0 0 0 0
2550 Structurally Sparsified Backward Propagation f... exploiting sparsity enables hardware systems r... 0 0 0 1 0 0
2551 Linear density-based clustering with a discret... densitybased clustering techniques used wide r... 0 0 0 1 0 0
2552 An inexact subsampled proximal Newton-type met... propose fast proximal newtontype algorithm min... 1 0 0 1 0 0
2553 Future Energy Consumption Prediction Based on ... use grey forecast model predict future energy ... 0 0 0 1 0 0
2554 AutoPass: An Automatic Password Generator text password long dominant user authenticatio... 1 0 0 0 0 0
2555 A Practically Competitive and Provably Consist... randomized experiments critical tools decision... 1 0 0 1 0 0
2556 The cosmic shoreline: the evidence that escape... planets solar system divide neatly atmospheres... 0 1 0 0 0 0
2557 Universal kinetics for engagement of mechanose... plated onto substrates cell morphology even st... 0 0 0 0 1 0
2558 Agent-based computing from multi-agent systems... agentbased computing diverse research domain c... 1 1 0 0 0 0
2559 Large Spontaneous Hall Effects in Chiral Topol... novel topological phases correlated electron s... 0 1 0 0 0 0
2560 Mott metal-insulator transition in the Doped H... motivated current interest understanding mott ... 0 1 0 0 0 0
2561 ASDA : Analyseur Syntaxique du Dialecte Alg{é}... opinion mining sentiment analysis social media... 1 0 0 0 0 0
2562 Latent Intention Dialogue Models developing dialogue agent capable making auton... 1 0 0 1 0 0
2563 Quasiconvex elastodynamics: weak-strong unique... weakstrong uniqueness result proved measureval... 0 0 1 0 0 0
2564 Accelerated Dual Learning by Homotopic Initial... gradient descent coordinate descent well under... 1 0 0 0 0 0
2565 Inverse Reinforcement Learning from Summary Data inverse reinforcement learning irl aims explai... 1 0 0 1 0 0
2566 Algorithm for Optimization and Interpolation b... one hand consider problem finding global solut... 0 0 1 0 0 0
2567 Human experts vs. machines in taxa recognition step expert taxa recognition currently slows r... 1 0 0 1 0 0
2568 A micrometer-thick oxide film with high thermo... thermoelectric te materials achieve localised ... 0 1 0 0 0 0
2569 MIT at SemEval-2017 Task 10: Relation Extracti... million scholarly articles published constitut... 1 0 0 1 0 0
2570 Maximizing acquisition functions for Bayesian ... bayesian optimization sampleefficient approach... 0 0 0 1 0 0
2571 Angular momentum evolution of galaxies over th... present muse kmos dynamical study starforming ... 0 1 0 0 0 0
2572 Iterative Object and Part Transfer for Fine-Gr... aim finegrained recognition identify subordina... 1 0 0 0 0 0
2573 On measures of edge-uncolorability of cubic gr... many hard conjectures graph theory like tuttes... 0 0 1 0 0 0
2574 Gas around galaxy haloes - III: hydrogen absor... modern theories galaxy formation predict galax... 0 1 0 0 0 0
2575 Distributed Newton Methods for Deep Neural Net... deep learning involves difficult nonconvex opt... 0 0 0 1 0 0
2576 Personalized advice for enhancing well-being u... attention personalized mental health care thri... 1 0 0 0 0 0
2577 Being Robust (in High Dimensions) Can Be Pract... robust estimation much challenging high dimens... 1 0 0 1 0 0
2578 Properties of In-Plane Graphene/MoS2 Heterojun... graphenemos heterojunction formed joining two ... 0 1 0 0 0 0
2579 Semi-extraspecial groups with an abelian subgr... let p prime pgroup g defined semiextraspecial ... 0 0 1 0 0 0
2580 Genetic and Memetic Algorithm with Diversity E... lack diversity genetic algorithms population m... 1 0 0 0 0 0
2581 Determinants of Mobile Money Adoption in Pakistan work analyze problem adoption mobile money pak... 0 0 0 1 0 0
2582 Cherlin's conjecture for almost simple groups ... prove cherlins conjecture concerning binary pr... 0 0 1 0 0 0
2583 Universal Function Approximation by Deep Neura... article concerns expressive power depth neural... 1 0 1 1 0 0
2584 Network Essence: PageRank Completion and Centr... ji matouek many breakthrough contributions mat... 1 0 0 1 0 0
2585 A Regularized Framework for Sparse and Structu... modern neural networks often augmented attenti... 1 0 0 1 0 0
2586 Intrinsically Motivated Goal Exploration Proce... intrinsically motivated spontaneous exploratio... 1 0 0 0 0 0
2587 Sentiment Perception of Readers and Writers in... previous research traditionally analyzed emoji... 1 0 0 0 0 0
2588 On C-class equations concept cclass differential equations goes bac... 0 0 1 0 0 0
2589 Confidence Intervals for Quantiles from Histog... interval estimation quantiles treated many lit... 0 0 0 1 0 0
2590 Reach and speed of judgment propagation in the... recent years large body research demonstrated ... 1 1 0 0 0 0
2591 Texture Characterization by Using Shape Co-occ... texture characterization key problem image und... 1 0 0 0 0 0
2592 NGC 3105: A Young Cluster in the Outer Galaxy images spectra open cluster ngc obtained gmos ... 0 1 0 0 0 0
2593 Exact solution of a two-species quantum dimer ... present exact ground state solution quantum di... 0 1 0 0 0 0
2594 Strong instability of standing waves for nonli... study instability standing wave solutions nonl... 0 0 1 0 0 0
2595 Theory and Applications of Matrix-Weighted Con... paper proposes matrixweighted consensus algori... 0 0 1 0 0 0
2596 Multi-armed Bandit Problems with Strategic Arms study strategic version multiarmed bandit prob... 1 0 0 1 0 0
2597 Emerging Topics in Assistive Reading Technolog... recent focus accessibility field researchers a... 1 0 0 0 0 0
2598 Supervised learning with quantum enhanced feat... machine learning quantum computing two technol... 0 0 0 1 0 0
2599 On The Limitation of Some Fully Observable Mul... using password based authentication technique ... 1 0 0 0 0 0
2600 Predictive and Prescriptive Analytics for Loca... paper study analytical approach selecting expa... 0 0 0 1 0 0
2601 Algebraic characterization of regular fraction... paper study behavior fractions factorial desig... 0 0 1 1 0 0
2602 Biomedical Event Trigger Identification Using ... biomedical events describe complex interaction... 1 0 0 0 0 0
2603 Modern-day Universities and Regional Development nowadays quite evident knowledgebased society ... 1 0 0 0 0 0
2604 Method of Reduction of Variables for Bilinear ... bilinear matrix inequality bmi problems system... 1 0 0 0 0 0
2605 Nonlinear transport associated with spin-densi... carried transient nonlinear transport measurem... 0 1 0 0 0 0
2606 Bayesian Compression for Deep Learning compression computational efficiency deep lear... 1 0 0 1 0 0
2607 The Observability Concept in a Class of Hybrid... discrete modeling approach hybrid control syst... 1 0 1 0 0 0
2608 Towards a More Reliable Privacy-preserving Rec... paper proposes privacypreserving distributed r... 1 0 0 0 0 0
2609 A study of posture judgement on vehicles using... study methods estimate drivers posture vehicle... 1 0 0 0 0 0
2610 Smoothed nonparametric two-sample tests propose new smoothed median wilcoxons rank sum... 0 0 1 1 0 0
2611 The Complexity of Graph-Based Reductions for R... study neverworse relation nwr markov decision ... 1 0 0 0 0 0
2612 A stack-vector routing protocol for automatic ... network tunnel part path protocol encapsulated... 1 0 0 0 0 0
2613 Using of heterogeneous corpora for training of... paper summarizes development lvcsr system buil... 1 0 0 0 0 0
2614 Inferring Narrative Causality between Event Pa... understand narrative humans draw inferences un... 1 0 0 0 0 0
2615 On Hom-Gerstenhaber algebras and Hom-Lie algeb... define notion hombatalinvilkovisky algebras st... 0 0 1 0 0 0
2616 Global existence in the 1D quasilinear parabol... paper viewed complement earlier result paper m... 0 0 1 0 0 0
2617 Supercongruences between truncated ${}_3F_2$ h... establish four supercongruences truncated f hy... 0 0 1 0 0 0
2618 Indoor Localization Using Visible Light Via Fu... multiple classifiers fusion localization techn... 1 0 0 1 0 0
2619 Node Centralities and Classification Performan... embedding graph nodes vector space allow use m... 1 0 0 1 0 0
2620 Data Fusion Reconstruction of Spatially Embedd... introduce kernel lasso klasso optimization sim... 0 1 0 1 0 0
2621 Reconstruction from Periodic Nonlinearities, W... consider problem reconstructing signals images... 0 0 0 1 0 0
2622 Multirole Logic (Extended Abstract) identify multirole logic new form logic conjun... 1 0 1 0 0 0
2623 Interpreting Classifiers through Attribute Int... work present novel astrid method investigating... 1 0 0 1 0 0
2624 A Modified Levy Jump-Diffusion Model Based on ... paper propose modified levy jump diffusion mod... 1 0 0 0 0 0
2625 Testing approximate predictions of displacemen... present test quantify well approximate methods... 0 1 0 0 0 0
2626 Efficient and Secure Routing Protocol for WSN-... advances wireless sensor network wsn provided ... 1 0 0 0 0 0
2627 Jackknife variance estimation for common mean ... samples common mean possibly different ordered... 0 0 1 1 0 0
2628 ISM properties of a Massive Dusty Star-Forming... report discovery constrain physical conditions... 0 1 0 0 0 0
2629 A convex formulation of traffic dynamics on tr... article proposes numerical scheme computing ev... 0 1 1 0 0 0
2630 Computational and informatics advances for rep... reproducibility scientific research become poi... 0 0 0 0 1 0
2631 HPD-invariance of the Tate, Beilinson and Pars... prove tate beilinson parshin conjectures invar... 0 0 1 0 0 0
2632 Multi-dueling Bandits with Dependent Arms dueling bandits problem online learning framew... 1 0 0 0 0 0
2633 New constraints on the millimetre emission of ... presence dusty debris around main sequence sta... 0 1 0 0 0 0
2634 Bosonic integer quantum Hall effect as topolog... based quasionedimensional limit quantum hall s... 0 1 0 0 0 0
2635 Connected Vehicular Transportation: Data Analy... onboard operating systems becoming increasingl... 1 0 0 0 0 0
2636 Strongly ergodic equivalence relations: spectr... obtain spectral gap characterization strongly ... 0 0 1 0 0 0
2637 On-the-fly Operation Batching in Dynamic Compu... dynamic neural network toolkits pytorch dynet ... 1 0 0 1 0 0
2638 Mixtures of Skewed Matrix Variate Bilinear Fac... clustering process finding analyzing underlyin... 0 0 0 1 0 0
2639 Transfer Learning to Learn with Multitask Neur... deep learning models require extensive archite... 1 0 0 1 0 0
2640 Hierarchical Game-Theoretic Planning for Auton... actions autonomous vehicle road affect affecte... 1 0 0 0 0 0
2641 Observable dictionary learning for high-dimens... paper introduces method efficiently inferring ... 0 0 0 1 0 0
2642 Counterintuitive Reconstruction of the Polar O... understanding structure zno surface reconstruc... 0 1 0 0 0 0
2643 A Finite-Tame-Wild Trichotomy Theorem for Tens... paper consider problem determining two tensor ... 0 0 1 0 0 0
2644 Decomposing the Quantile Ratio Index with appl... quantile ratio index introduced prendergast st... 0 0 0 1 0 0
2645 Metamorphic Moving Horizon Estimation paper considers practical scenario classical e... 1 0 0 0 0 0
2646 Erosion distance for generalized persistence m... persistence diagram cohensteiner edelsbrunner ... 0 0 1 0 0 0
2647 Efficient Adjoint Computation for Wavelet and ... firstorder optimization algorithms often prefe... 0 0 1 0 0 0
2648 RCD: Rapid Close to Deadline Scheduling for Da... datacenterbased cloud computing services provi... 1 0 0 0 0 0
2649 Real representations of finite symplectic grou... prove q power every complex irreducible repres... 0 0 1 0 0 0
2650 Risk measure estimation for $β$-mixing time se... paper discuss application extreme value theory... 0 0 1 1 0 0
2651 Transfer entropy between communities in comple... help transfer entropy analyze information flow... 0 1 0 0 0 0
2652 Disentangled VAE Representations for Multi-Asp... many problems machine learning related applica... 0 0 0 1 0 0
2653 On the spectral geometry of manifolds with con... previous article derived detailed asymptotic e... 0 0 1 0 0 0
2654 Neural Task Programming: Learning to Generaliz... work propose novel robot learning framework ca... 1 0 0 0 0 0
2655 Discovery of potential collaboration networks ... scientific publishing conveys outputs academic... 1 0 0 0 0 0
2656 Towards Planning and Control of Hybrid Systems... present multiquery recovery policy hybrid syst... 1 0 0 0 0 0
2657 Clustering with t-SNE, provably tdistributed stochastic neighborhood embedding... 1 0 0 1 0 0
2658 The Observable Properties of Cool Winds from G... winds arising galaxies star clusters active ga... 0 1 0 0 0 0
2659 Noise Flooding for Detecting Audio Adversarial... neural models enjoy widespread use across vari... 1 0 0 0 0 0
2660 Representation Learning and Pairwise Ranking f... paper propose novel ranking framework collabor... 1 0 0 1 0 0
2661 On the Sublinear Regret of Distributed Primal-... paper introduces consensusbased primaldual met... 0 0 1 0 0 0
2662 Reliability study of proportional odds family ... proportional odds model gives method generatin... 0 0 1 1 0 0
2663 Global Orientifolded Quivers with Inflation describe global embeddings fractional branes o... 0 1 0 0 0 0
2664 Discretization of Springer fibers consider nilpotent element e simple complex li... 0 0 1 0 0 0
2665 On the Underapproximation of Reach Sets of Abs... consider problem proving point given set state... 1 0 0 0 0 0
2666 A Bayesian nonparametric approach to log-conca... estimation logconcave density mathbbr canonica... 0 0 1 1 0 0
2667 A Complete Characterization of the 1-Dimension... metric graphs special types metric spaces used... 0 0 1 0 0 0
2668 Critical exponent $ω$ in the Gross-Neveu-Yukaw... critcal exponent omega evaluated ddimensions g... 0 1 0 0 0 0
2669 Path Planning for Multiple Heterogeneous Unman... article presents framework develops formulatio... 1 0 1 0 0 0
2670 Dropout-based Active Learning for Regression active learning relevant challenging highdimen... 0 0 0 1 0 0
2671 Modeling Human Categorization of Natural Image... last decades psychologists developed sophistic... 1 0 0 1 0 0
2672 BARCHAN: Blob Alignment for Robust CHromatogra... comprehensive two dimensional gas chromatograp... 1 1 0 0 0 0
2673 Homogeneity Pursuit in Single Index Models bas... panel data analysis important topic statistics... 0 0 1 1 0 0
2674 Feeding vs. Falling: The growth and collapse o... order understand origin observed molecular clo... 0 1 0 0 0 0
2675 Complex waveguide based on a magneto-optic lay... theoretically investigate dispersion polarizat... 0 1 0 0 0 0
2676 Discriminants of complete intersection space c... paper develop new approach discriminant comple... 1 0 1 0 0 0
2677 On the Characteristic and Permanent Polynomial... digraph corresponding every square matrix math... 1 0 0 0 0 0
2678 A bulk-boundary correspondence for dynamical p... study loschmidt echo quenches open onedimensio... 0 1 0 0 0 0
2679 The Consciousness Prior new prior proposed representation learning com... 1 0 0 1 0 0
2680 Multi-Scale Pipeline for the Search of String-... propose multiscale edgedetection algorithm sea... 0 1 0 1 0 0
2681 A simultaneous generalization of the theorems ... inspired recent work baoulina give simultaneou... 0 0 1 0 0 0
2682 Some Time-changed fractional Poisson processes paper study fractional poisson process fpp tim... 0 0 1 0 0 0
2683 Fast algorithm of adaptive Fourier series adaptive fourier decomposition afd precisely a... 0 0 1 0 0 0
2684 Hybrid Indexes to Expedite Spatial-Visual Search due growth geotagged images recent web mobile ... 1 0 0 0 0 0
2685 Model compression for faster structural separa... electron cryotomography ect enables visualizat... 0 0 0 1 1 0
2686 Low quasiparticle coherence temperature in the... use kotliarruckenstein slaveboson formalism st... 0 1 0 0 0 0
2687 A Note on Iterated Consistency and Infinite Pr... schmerl beklemishevs work iterated reflection ... 0 0 1 0 0 0
2688 Turning Internet of Things(IoT) into Internet ... internet things iot next big evolutionary step... 1 0 0 0 0 0
2689 Cwikel estimates revisited paper propose new approach cwikel estimates eu... 0 0 1 0 0 0
2690 Smooth Pinball Neural Network for Probabilisti... uncertainty analysis form probabilistic foreca... 0 0 0 1 0 0
2691 Asynchronous Coordinate Descent under More Rea... asynchronousparallel algorithms potential vast... 0 0 1 0 0 0
2692 Zero-temperature magnetic response of small fu... groundstate magnetic response fullerene molecu... 0 1 0 0 0 0
2693 Stochastic Chemical Reaction Networks for Robu... show discrete distributions ddimensional nonne... 0 0 0 0 1 0
2694 Deep Reinforcement Learning for Event-Driven M... incorporation macroactions temporally extended... 1 0 0 0 0 0
2695 Early Salient Region Selection Does Not Drive ... current dominant visual processing paradigm hu... 0 0 0 0 1 0
2696 Bonsai: Synthesis-Based Reasoning for Type Sys... describe algorithms symbolic reasoning executa... 1 0 0 0 0 0
2697 Preference-based performance measures for Time... timedomain global similarity tdgs method trans... 1 0 0 0 0 0
2698 On the Prospects for Detecting a Net Photon Ci... dark matter interactions standard model partic... 0 1 0 0 0 0
2699 Are Bitcoin Bubbles Predictable? Combining a G... develop strong diagnostic bubbles crashes bitc... 0 0 0 0 0 1
2700 The Emission Structure of Formaldehyde MegaMasers formaldehyde megamaser emission mapped three h... 0 1 0 0 0 0
2701 Variational approach for learning Markov proce... inference prediction control complex dynamical... 0 0 0 1 0 0
2702 A unifying framework for the modelling and ana... paper presents new framework analysing forensi... 0 0 0 1 1 0
2703 A new class of ferromagnetic semiconductors wi... ferromagnetic semiconductors fmss properties f... 0 1 0 0 0 0
2704 On a Distributed Approach for Density-based Cl... efficient extraction useful knowledge data sti... 1 0 0 0 0 0
2705 Accretion of Planetary Material onto Host Stars accretion planetary material onto host stars m... 0 1 0 0 0 0
2706 High-Fidelity, Single-Shot, Quantum-Logic-Assi... use cotrapped ion mathrmsr sympathetically coo... 0 1 0 0 0 0
2707 Investigation of faint galactic carbon stars f... infraredir astronomical databases namely iras ... 0 1 0 0 0 0
2708 Quantifying Interpretability and Trust in Mach... decisions machine learning ml models become ub... 1 0 0 1 0 0
2709 The Intertropical Convergence Zone activity developed resource eu space awareness... 0 1 0 0 0 0
2710 Nonconvex Sparse Logistic Regression with Weak... work propose fit sparse logistic regression mo... 1 0 0 1 0 0
2711 Inapproximability of the independent set polyn... study complexity approximating independent set... 1 0 0 0 0 0
2712 A giant with feet of clay: on the validity of ... paper considers use machine learning ml medici... 1 0 0 1 0 0
2713 Constraining accretion signatures of exoplanet... present nearinfrared direct imaging search acc... 0 1 0 0 0 0
2714 Obstructions to planarity of contact 3-manifolds prove contact manifold admits open book decomp... 0 0 1 0 0 0
2715 Bounds on harmonic radius and limits of manifo... usual condition volume geodesic ball close euc... 0 0 1 0 0 0
2716 Fast and Scalable Bayesian Deep Learning by We... uncertainty computation deep learning essentia... 0 0 0 1 0 0
2717 Improving average ranking precision in user se... availability research datasets keystone health... 1 0 0 0 0 0
2718 Adversarial Attacks on Neural Networks for Gra... deep learning models graphs achieved strong pe... 0 0 0 1 0 0
2719 Electromagnetic energy, momentum and forces in... energymomentum tensors electromagnetic field m... 0 1 0 0 0 0
2720 Thermotronics: toward nanocircuits to manage r... control electric currents solids origin modern... 0 1 0 0 0 0
2721 Multiplication and Presence of Shielding Mater... present results first measurements timecorrela... 0 1 0 0 0 0
2722 General Refraction Problems with Phase Discont... paper provides mathematical approach study met... 0 1 1 0 0 0
2723 An Efficiently Searchable Encrypted Data Struc... ccs naveed et al presented first attacks effic... 1 0 0 0 0 0
2724 Hyperfine state entanglement of spinor BEC and... condensate spin atoms frozen unique spatial mo... 0 1 0 0 0 0
2725 Making Neural Programming Architectures Genera... empirically neural networks attempt learn prog... 1 0 0 0 0 0
2726 Bagged Empirical Null p-values: A Method to Ac... conducting large scale inference genomewide as... 0 0 0 1 0 0
2727 Identifying Vessel Branching from Fluid Stress... objects moving fluids experience patterns stre... 1 0 0 0 0 0
2728 Impact of Optimal Storage Allocation on Price ... recent studies show fast growing expansion win... 0 0 1 0 0 0
2729 An independent axiomatisation for free short-c... shortcircuit evaluation denotes semantics prop... 1 0 1 0 0 0
2730 A Note on a Communication Game describe communication game conjecture game wh... 1 0 0 0 0 0
2731 Iteration of Quadratic Polynomials Over Finite... finite field odd cardinality q show sequence i... 0 0 1 0 0 0
2732 Constraints on the Growth and Spin of the Supe... present second cadence observations ngc chimer... 0 1 0 0 0 0
2733 Sampling for Approximate Bipartite Network Pro... bipartite networks manifest stream edges repre... 1 0 1 0 0 0
2734 Navigate, Understand, Communicate: How Develop... background performance bugs lead severe issues... 1 0 0 0 0 0
2735 MEXIT: Maximal un-coupling times for stochasti... classical coupling constructions arrange copie... 0 0 1 0 0 0
2736 Learning Effective Changes for Software Projects primary motivation much software analytics dec... 1 0 0 0 0 0
2737 Aggregating multiple types of complex data in ... increasing richness volume especially types da... 0 0 0 1 0 1
2738 Deep Multi-View Spatial-Temporal Network for T... taxi demand prediction important building bloc... 0 0 0 1 0 0
2739 Interstellar communication. VII. Benchmarking ... explored optimal frequency interstellar photon... 0 1 0 0 0 0
2740 A description length approach to determining t... present asymptotic criterion determine optimal... 1 0 0 1 0 0
2741 Complementary legs and rational balls note study seifert rational homology spheres t... 0 0 1 0 0 0
2742 Gravitational Waves from Stellar Black Hole Bi... investigate impact resonant gravitational wave... 0 1 0 0 0 0
2743 Search for Exoplanets around Northern Circumpo... present detection longperiod rv variations hd ... 0 1 0 0 0 0
2744 Measuring Item Similarity in Introductory Prog... personalized learning system needs large pool ... 0 0 0 1 0 0
2745 Term Models of Horn Clauses over Rational Pave... paper contribution study universal horn fragme... 0 0 1 0 0 0
2746 Galaxy Rotation and Supermassive Black Hole Bi... supermassive black hole smbh binaries residing... 0 1 0 0 0 0
2747 A Formal Approach to Exploiting Multi-Stage At... web applications require access filesystem man... 1 0 0 0 0 0
2748 Bit Fusion: Bit-Level Dynamically Composable A... fully realizing potential acceleration deep ne... 1 0 0 0 0 0
2749 Multiple Access Wiretap Channel with Noiseless... physical layer security uplink wireless commun... 1 0 1 0 0 0
2750 Inter-Subject Analysis: Inferring Sparse Inter... develop new modeling framework intersubject an... 0 0 1 1 0 0
2751 Impact of surface functionalisation on the qua... nanoscale quantum probes nitrogenvacancy centr... 0 1 0 0 0 0
2752 Nesterov's Acceleration For Approximate Newton optimization plays key role machine learning r... 1 0 0 0 0 0
2753 Coverage Centrality Maximization in Undirected... centrality metrics among main tools social net... 1 0 0 0 0 0
2754 Color difference makes a difference: four plan... removal noise typically correlated time wavele... 0 1 0 0 0 0
2755 Recurrent Deep Embedding Networks for Genotype... understanding variations genome sequences assi... 0 0 0 0 1 0
2756 Measuring and avoiding side effects using rela... design reinforcement learning agents avoid cau... 0 0 0 1 0 0
2757 Neural State Classification for Hybrid Systems introduce state classification problem scp hyb... 0 0 0 1 0 0
2758 Optimization of Tree Ensembles tree ensemble models random forests boosted tr... 1 0 1 1 0 0
2759 Equations of state for real gases on the nucle... formalism augment classical models equation st... 0 1 0 0 0 0
2760 Born Again Neural Networks knowledge distillation kd consists transferrin... 0 0 0 1 0 0
2761 Exploit Kits: The production line of the Cyber... annual cost cybercrime global economy estimate... 1 0 0 0 0 0
2762 Helicity locking in light emitted from a plasm... surface plasmon waves carry intrinsic transver... 0 1 0 0 0 0
2763 Declarative Statistics work introduce declarative statistics suite de... 1 0 0 1 0 0
2764 Description of CRESST-II data phase cresstii detector modules operated two y... 0 1 0 0 0 0
2765 ABC of ladder operators for rationally extende... problem construction ladder operators rational... 0 1 1 0 0 0
2766 On permutation-invariance of limit theorems classical principle probability theory suffici... 0 0 1 0 0 0
2767 Superconductivity at 33 - 37 K in $ALn_2$Fe$_4... synthesized new iron oxyarsenides klnfeaso ln ... 0 1 0 0 0 0
2768 Live Visualization of GUI Application Code Cov... present paper introduces initial implementatio... 1 0 0 0 0 0
2769 3D Simulation of Electron and Ion Transmission... time projection chamber tpc chosen main tracki... 0 1 0 0 0 0
2770 Witt and Cohomological Invariants of Witt Classes classify invariants functor powers fundamental... 0 0 1 0 0 0
2771 The Cooperative Output Regulation Problem of D... paper first present adaptive distributed obser... 0 0 1 0 0 0
2772 Preferred traces on C*-algebras of self-simila... recent results laca raeburn ramagge whittaker ... 0 0 1 0 0 0
2773 Tool Breakage Detection using Deep Learning manufacture steel metals mainly cut shaped fab... 0 0 0 1 0 0
2774 Continuous Learning in Single-Incremental-Task... recently shown architectural regularization re... 0 0 0 1 0 0
2775 Diagonal Rescaling For Neural Networks define secondorder neural network stochastic g... 1 0 0 1 0 0
2776 Dynamic Bernoulli Embeddings for Language Evol... word embeddings powerful approach unsupervised... 1 0 0 1 0 0
2777 Homotopy Decompositions of Gauge Groups over R... analyse homotopy types gauge groups principal ... 0 0 1 0 0 0
2778 W-algebras associated to surfaces define integral form deformed walgebra type gl... 0 0 1 0 0 0
2779 Comparing Classical and Relativistic Kinematic... aim paper present new logicbased understanding... 0 0 1 0 0 0
2780 Anomalous Acoustic Plasmon Mode from Topologic... plasmons collective excitations electrons bulk... 0 1 0 0 0 0
2781 Klein-Gordonization: mapping superintegrable q... describe procedure naturally associating relat... 0 1 1 0 0 0
2782 Towards Gene Expression Convolutions using Gen... study challenges applying deep learning gene e... 0 0 0 1 1 0
2783 Density-Functional Theory Study of the Optoele... novel lowbandgap copolymer oligomers proposed ... 0 1 0 0 0 0
2784 Accurate ranking of influential spreaders in n... propose efficient accurate measure ranking spr... 1 1 0 0 0 0
2785 Learning Multimodal Transition Dynamics for Mo... paper study learn stochastic multimodal transi... 1 0 0 1 0 0
2786 Publication Trends in Physics Education: A Bib... publication trend physics education employing ... 1 1 0 0 0 0
2787 Unveiling Swarm Intelligence with Network Scie... selforganization natural phenomenon emerges sy... 1 0 0 0 0 0
2788 Sphere geometry and invariants finite abstract simplicial complex g defines t... 1 0 1 0 0 0
2789 Chaos and thermalization in small quantum systems chaos ergodicity cornerstones statistical phys... 0 1 0 0 0 0
2790 Index Search Algorithms for Databases and Mode... years many different indexing techniques searc... 1 0 0 0 0 0
2791 Bounding the Radius of Convergence of Analytic... contour integration crucial technique many num... 0 0 1 0 0 0
2792 An Efficient Algorithm for the Multicomponent ... goal study develop efficient numerical algorit... 0 1 0 0 0 0
2793 Goldstone-like phonon modes in a (111)-straine... goldstone modes massless particles resulting s... 0 1 0 0 0 0
2794 Estimating Heterogeneous Causal Effects in the... paper provides link causal inference machine l... 0 0 0 1 0 0
2795 SUBIC: A Supervised Bi-Clustering Approach for... traditional medicine typically applies onesize... 1 0 0 1 0 0
2796 Polarization leakage in epoch of reionization ... leakage polarized galactic diffuse emission to... 0 1 0 0 0 0
2797 Image Reconstruction using Matched Wavelet Est... paper proposes joint framework wherein lifting... 1 0 0 0 0 0
2798 Python Implementation and Construction of Fini... present working framework establish finite abe... 1 0 1 0 0 0
2799 Near-Optimal Closeness Testing of Discrete His... investigate problem testing equivalence two di... 1 0 1 1 0 0
2800 Insider-Attacks on Physical-Layer Group Secret... physicallayer group secretkey gsk generation e... 1 0 1 0 0 0
2801 Multi-modal Feedback for Affordance-driven Int... interactive reinforcement learning irl extends... 1 0 0 0 0 0
2802 Estimating the reproductive number, total outb... south central american countries prepare incre... 0 0 0 1 0 0
2803 A systematic study of the class imbalance prob... study systematically investigate impact class ... 1 0 0 1 0 0
2804 New simple lattices in products of trees and t... let gamma leq mathrmauttd times mathrmauttd gr... 0 0 1 0 0 0
2805 Fourth-order time-stepping for stiff PDEs on t... present paper algorithms solving stiff pdes un... 0 0 1 0 0 0
2806 On Formalizing Fairness in Prediction with Mac... machine learning algorithms prediction increas... 1 0 0 1 0 0
2807 The Memory Function Formalism: A Review introduction zwanzigmorigtzewlfle memory funct... 0 1 0 0 0 0
2808 RIPML: A Restricted Isometry Property based Ap... multilabel learning problem large number label... 1 0 0 1 0 0
2809 Erratum to: Medial axis and singularities correct one erroneous statement made recent pa... 0 0 1 0 0 0
2810 AP-initiated Multi-User Transmissions in IEEE ... nextgeneration ax wlans make extensive use mul... 1 0 0 0 0 0
2811 What do we know about the geometry of space? belief three dimensional space infinite flat a... 0 1 0 0 0 0
2812 Evidence of new twinning modes in magnesium qu... twinning important deformation mode hexagonal ... 0 1 0 0 0 0
2813 Probing the Interatomic Potential of Solids by... femtosecond optical pulses midinfrared frequen... 0 1 0 0 0 0
2814 Assessment of learning tomography using Mie th... optical diffraction tomography multiply scatte... 0 1 0 0 0 0
2815 Single Molecule Studies Under Constant Force U... optical tweezers enabled important insights in... 0 1 1 0 0 0
2816 Measuring the effects of Loop Quantum Cosmolog... essay investigate observational signatures loo... 0 1 0 0 0 0
2817 Convergence Analysis of Proximal Gradient with... many modern machine learning applications stru... 1 0 0 0 0 0
2818 Exploring the Interconnectedness of Cryptocurr... correlation networks used detect characteristi... 0 0 0 0 0 1
2819 Affective Neural Response Generation existing neural conversational models process ... 1 0 0 0 0 0
2820 Energy Efficient Power Allocation in Massive M... paper energy efficient power allocation downli... 1 0 0 0 0 0
2821 Composite fermion basis for M-component Bose g... composite fermion cf formalism produces wave f... 0 1 0 0 0 0
2822 An FPT Algorithm Beating 2-Approximation for $... kcut problem given edgeweighted graph g intege... 1 0 0 0 0 0
2823 Dynamics beyond dynamic jam; unfolding the Pai... paper analyses detail dynamics neighbourhood g... 0 1 0 0 0 0
2824 Existence and regularity of positive solutions... paper deals existence regularity positive solu... 0 0 1 0 0 0
2825 World Literature According to Wikipedia: Intro... among manifold takes world literature goal con... 1 0 0 0 0 0
2826 Robust Task Clustering for Deep Many-Task Lear... investigate task clustering deeplearning based... 1 0 0 1 0 0
2827 Detecting Learning vs Memorization in Deep Neu... roles played learning memorization represent i... 0 0 0 1 0 0
2828 Bias Correction For Paid Search In Media Mix M... evaluating return ad spend roas causal effect ... 0 0 0 1 0 0
2829 Neville's algorithm revisited nevilles algorithm known provide efficient num... 1 0 0 0 0 0
2830 Forecasting and Granger Modelling with Non-lin... traditional linear methods forecasting multiva... 1 0 0 1 0 0
2831 HDLTex: Hierarchical Deep Learning for Text Cl... continually increasing number documents produc... 1 0 0 0 0 0
2832 Multi-task Learning with Gradient Guided Polic... present method efficient learning control poli... 1 0 0 0 0 0
2833 Mean square in the prime geodesic theorem prove upper bounds mean square remainder prime... 0 0 1 0 0 0
2834 Approximation Fixpoint Theory and the Well-Fou... define novel extensional threevalued semantics... 1 0 0 0 0 0
2835 An Application of Deep Neural Networks in the ... spectroscopic surveys require fast efficient a... 0 1 0 0 0 0
2836 Analysis of Service-oriented Modeling Approach... microservice architecture msa novel servicebas... 1 0 0 0 0 0
2837 RoboJam: A Musical Mixture Density Network for... robojam machinelearning system generating musi... 1 0 0 0 0 0
2838 Quasi-two-dimensional Fermi surfaces with loca... report measurements de haasvan alphen effect l... 0 1 0 0 0 0
2839 Differential Forms, Linked Fields and the $u$-... associate albert form pair cyclic algebras pri... 0 0 1 0 0 0
2840 A cyclic system with delay and its characteris... nonlinear cyclic system delay overall negative... 0 0 1 0 0 0
2841 Object Detection and Motion Planning for Autom... automatic welding tubular tky joints important... 1 0 0 0 0 0
2842 Nilpotence order growth of recursion operators... prove killing rate certain degreelowering recu... 0 0 1 0 0 0
2843 Analyzing Hidden Representations in End-to-End... neural models become ubiquitous automatic spee... 1 0 0 0 0 0
2844 Bayesian uncertainty quantification in linear ... diffusion mri dmri valuable tool assessment ti... 0 1 0 1 0 0
2845 On the Fine-Grained Complexity of Empirical Ri... empirical risk minimization erm ubiquitous mac... 1 0 0 1 0 0
2846 Deep Learning for Predicting Asset Returns deep learning searches nonlinear factors predi... 0 0 0 1 0 0
2847 Analysis of Distributed ADMM Algorithm for Con... admm popular algorithm solving convex optimiza... 1 0 1 0 0 0
2848 Jet determination of smooth CR automorphisms a... prove finite jet determination finitely smooth... 0 0 1 0 0 0
2849 A Well-Tempered Landscape for Non-convex Robus... present mathematical analysis nonconvex energy... 1 0 1 1 0 0
2850 Biologically inspired protection of deep netwo... inspired biophysical principles underlying non... 1 0 0 1 0 0
2851 Intrinsic entropies of log-concave distributions entropy random variable wellknown equal expone... 1 0 0 0 0 0
2852 Iteratively Linearized Reweighted Alternating ... paper consider solving class nonconvex nonsmoo... 1 0 0 1 0 0
2853 Acoustic Features Fusion using Attentive Multi... paper present novel deep fusion architecture a... 1 0 0 0 0 0
2854 An EM Based Probabilistic Two-Dimensional CCA ... recently twodimensional canonical correlation ... 1 0 0 1 0 0
2855 Understanding Group Event Scheduling via the O... wide adoption smartphones mobile applications ... 1 0 0 0 0 0
2856 Energy Level Alignment at Hybridized Organic-m... hybridized moleculemetal interfaces ubiquitous... 0 1 0 0 0 0
2857 Radio detection of Extensive Air Showers (ECRS... detection mostly geomagnetically generated rad... 0 1 0 0 0 0
2858 Bandit Regret Scaling with the Effective Loss ... study regret guarantees nonstochastic multiarm... 1 0 0 1 0 0
2859 Changing Fashion Cultures paper presents novel concept analyzes visualiz... 1 0 0 0 0 0
2860 A strong failure of aleph_0-stability for atom... study classes atomic models att countable comp... 0 0 1 0 0 0
2861 Sub-Gaussian estimators of the mean of a rando... study problem estimating mean random vector x ... 0 0 1 1 0 0
2862 Resource Allocation for Containing Epidemics f... study problem containing epidemic spreading pr... 1 0 0 0 0 0
2863 Towards Plan Transformations for Real-World Pi... paper investigate possibility applying plan tr... 1 0 0 0 0 0
2864 Learning for New Visual Environments with Limi... computer vision applications domain adaptation... 1 0 0 0 0 0
2865 A Survey of Bandwidth and Latency Enhancement ... among mobile cloud applications mobile cloud g... 1 0 0 0 0 0
2866 Modulation of High-Energy Particles and the He... cosmic ray intensities cris recorded sixteen n... 0 1 0 0 0 0
2867 Detecting the impact of public transit on the ... many developing countries public transit plays... 1 0 0 0 0 0
2868 The Hamiltonian Dynamics of Magnetic Confineme... consider class magnetic fields defined interio... 0 0 1 0 0 0
2869 Airway segmentation from 3D chest CT volumes b... lung diseases related bronchial airway structu... 1 0 0 0 0 0
2870 Multi-robot motion-formation distributed contr... paper present design implementation robust mot... 1 0 0 0 0 0
2871 On the Impossibility of Supersized Machines recent years number prominent computer scienti... 1 1 0 0 0 0
2872 Non-geodesic variations of Hodge structure of ... number examples variations hodge structure max... 0 0 1 0 0 0
2873 Finding Differentially Covarying Needles in a ... recent results coupled temporal graphical mode... 1 0 0 1 0 0
2874 A Distributed Algorithm for Computing a Common... distributed algorithm described finding common... 1 0 1 0 0 0
2875 The maximum of the 1-measurement of a metric m... metric measure space treat set distributions l... 0 0 1 0 0 0
2876 Limits to Arbitrage in Markets with Stochastic... distributed ledger technologies rely consensus... 0 0 0 0 0 1
2877 Normalized Information Distance and the Oscill... study complexity approximations normalized inf... 1 0 1 0 0 0
2878 Exponential Moving Average Model in Parallel S... training data rapid growth largescale parallel... 1 0 0 0 0 0
2879 Is One Hyperparameter Optimizer Enough? hyperparameter tuning black art automatically ... 1 0 0 0 0 0
2880 Deep Generalized Canonical Correlation Analysis present deep generalized canonical correlation... 1 0 0 1 0 0
2881 Faithfulness of Probability Distributions and ... main question graphical models causal inferenc... 0 0 1 1 0 0
2882 On the multipliers of repelling periodic point... give lower bound multipliers repelling periodi... 0 0 1 0 0 0
2883 The BCS critical temperature in a weak homogen... show within linear approximation bcs theory we... 0 1 1 0 0 0
2884 25 Tweets to Know You: A New Model to Predict ... predicting personality essential social applic... 1 0 0 0 0 0
2885 Low Resolution Face Recognition Using a Two-Br... propose novel couple mappings method low resol... 1 0 0 0 0 0
2886 A Comparative Study of Full-Duplex Relaying Sc... various sectors likely carry set emerging appl... 1 0 0 0 0 0
2887 Some algebraic invariants of edge ideal of cir... let g circulant graph cns ssubseteq ldotsleft ... 0 0 1 0 0 0
2888 Efficient Pricing of Barrier Options on High V... barrier options one widely traded exotic optio... 0 0 0 1 0 1
2889 Massively parallel multicanonical simulations generalizedensemble monte carlo simulations mu... 0 1 0 0 0 0
2890 Gaia and VLT astrometry of faint stars: Precis... compared positions gaia first data release dr ... 0 1 0 0 0 0
2891 Parallel transport in shape analysis: a scalab... analysis manifoldvalued data requires efficien... 0 0 1 1 0 0
2892 Spectral Projector-Based Graph Fourier Transforms paper presents graph fourier transform gft sig... 1 0 0 0 0 0
2893 Quantum Mechanical Approach to Modelling Relia... dempstershafer evidence theory wildly applied ... 1 0 0 0 0 0
2894 Midgar: Detection of people through computer v... could use computer vision internet things usin... 1 0 0 0 0 0
2895 Interpreting and Explaining Deep Neural Networ... interpretability deep neural networks recently... 1 0 0 0 0 0
2896 On the Performance of a Canonical Labeling for... graph matching two correlated random graphs re... 0 0 0 1 0 0
2897 On semi-supervised learning semisupervised learning deals problem possible... 0 0 0 1 0 0
2898 Fourier dimension and spectral gaps for hyperb... obtain essential spectral gap convex cocompact... 0 0 1 0 0 0
2899 Semantic Evolutionary Concept Distances for Ef... work several semantic approaches conceptbased ... 1 0 1 0 0 0
2900 Emission line galaxies behind the planetary ne... start survey program using fors long slit spec... 0 1 0 0 0 0
2901 An example related to the slicing inequality f... nin mathbbn let sn smallest number satisfying ... 0 0 1 0 0 0
2902 Two-level schemes for the advection equation advection equation basis mathematical models c... 1 0 0 0 0 0
2903 Estimating functional time series by moving av... functional time series become integral part fu... 0 0 0 1 0 0
2904 Benford's law: a 'sleeping beauty' sleeping in... benfords law empirical observation first repor... 1 0 0 0 0 0
2905 Characterizing correlations and synchronizatio... synchronization occurs nonchaotic chaotic syst... 0 1 0 0 0 0
2906 Soft modes and strain redistribution in contin... deformation disordered solids relies swift loc... 0 1 0 0 0 0
2907 On the Optimality of Kernel-Embedding Based Go... reproducing kernel hilbert space rkhs embeddin... 0 0 1 1 0 0
2908 The influence of contrarians in the dynamics o... work consider presence contrarian agents discr... 0 1 0 0 0 0
2909 Risk-neutral valuation under differential fund... develop unified valuation theory incorporates ... 0 0 0 0 0 1
2910 Singular Spectrum and Recent Results on Hierar... use trace class scattering theory exclude poss... 0 1 1 0 0 0
2911 Weyl states and Fermi arcs in parabolic bands weyl fermions shown exist inside parabolic ban... 0 1 0 0 0 0
2912 Flexible Deep Neural Network Processing recent success deep neural networks dnns drast... 0 0 0 1 0 0
2913 Kinetic approach to relativistic dissipation despite long record intense efforts basic mech... 0 1 0 0 0 0
2914 Cross-label Suppression: A Discriminative and ... paper addresses image classification learning ... 1 0 0 1 0 0
2915 DiSAN: Directional Self-Attention Network for ... recurrent neural nets rnn convolutional neural... 1 0 0 0 0 0
2916 Eigenvalues of compactly perturbed operators v... derive new estimates number discrete eigenvalu... 0 0 1 0 0 0
2917 Theoretical Properties for Neural Networks wit... recently low displacement rank ldr matrices so... 1 0 0 1 0 0
2918 A data driven trimming procedure for robust cl... classification rules severely affected presenc... 0 0 1 1 0 0
2919 The Salesman's Improved Tours for Fundamental ... finding exact integrality gap alpha lp relaxat... 1 0 0 0 0 0
2920 Maximum Number of Modes of Gaussian Mixtures gaussian mixture models widely used statistics... 0 0 1 1 0 0
2921 Dynamic Clearing and Contagion in Financial Ne... paper consider generalized extension eisenberg... 0 0 0 0 0 1
2922 On the Semantics of Intensionality and Intensi... intensionality phenomenon occurs logic computa... 1 0 1 0 0 0
2923 A Theory of Solvability for Lossless Power Flo... twopart paper details theory solvability power... 0 0 1 0 0 0
2924 Narcissus: Deriving Correct-By-Construction De... neat result functional programming libraries p... 1 0 0 0 0 0
2925 Discrete and Continuous Green Energy on Compac... article study role green function laplacian co... 0 0 1 0 0 0
2926 High Capacity, Secure (n, n/8) Multi Secret Im... rising need secret image sharing high security... 1 0 0 0 0 0
2927 MATMPC - A MATLAB Based Toolbox for Real-time ... paper introduce matmpc open source software bu... 1 0 0 0 0 0
2928 A Copula-based Imputation Model for Missing Da... propose copula based method handle missing val... 0 0 0 1 0 0
2929 Rovibrational optical cooling of a molecular beam cooling rotation vibration molecules broadband... 0 1 0 0 0 0
2930 When Work Matters: Transforming Classical Netw... numerous pattern recognition applications form... 0 0 0 1 0 0
2931 Factoring the Cycle Aging Cost of Batteries Pa... participating electricity markets owners batte... 0 0 1 0 0 0
2932 Asynchronous Parallel Bayesian Optimisation vi... design analyse variations classical thompson s... 1 0 0 1 0 0
2933 Hydrodynamic signatures of stationary Marangon... experimentally study steady marangonidriven su... 0 1 0 0 0 0
2934 Exponential growth of homotopy groups of suspe... study asymptotic behavior homotopy groups simp... 0 0 1 0 0 0
2935 Approximation Algorithms for Rectangle Packing... rectangle packing problems given task placing ... 1 0 0 0 0 0
2936 R-boundedness Approach to linear third differe... aim work study existence periodic solutions th... 0 0 1 0 0 0
2937 Entanglement and quantum transport in integrab... understanding entanglement structure outofequi... 0 1 0 0 0 0
2938 Data-Efficient Multirobot, Multitask Transfer ... transfer learning potential reduce burden data... 1 0 0 0 0 0
2939 Exponential Bounds for the Erdős-Ginzburg-Ziv ... erdsginzburgziv constant abelian group g denot... 0 0 1 0 0 0
2940 Soft Weight-Sharing for Neural Network Compres... success deep learning numerous application dom... 0 0 0 1 0 0
2941 Neural Discourse Structure for Text Categoriza... show discourse structure defined rhetorical st... 1 0 0 0 0 0
2942 On the optimal design of grid-based binary hol... grid based binary holography gbh attractive me... 0 1 0 0 0 0
2943 Thermal physics of the inner coma: ALMA studie... present spatially spectrallyresolved observati... 0 1 0 0 0 0
2944 Alternating Iteratively Reweighted Minimizatio... nowadays availability largescale data disparat... 1 0 0 0 0 0
2945 The formation of the Milky Way halo and its dw... present homogeneous set accurate atmospheric p... 0 1 0 0 0 0
2946 Fixed-Gain Augmented-State Tracking-Filters procedure design fixedgain tracking filters us... 1 0 0 0 0 0
2947 The Detectability of Radio Auroral Emission fr... magnetically active stars possess stellar wind... 0 1 0 0 0 0
2948 Converting topological insulators into topolog... report electronic band structures concomitant ... 0 1 0 0 0 0
2949 When Do Birds of a Feather Flock Together? k-M... given set data one central goal group clusters... 0 0 1 0 0 0
2950 Collective Sedimentation of Squirmers under Gr... active particles interact hydrodynamically dis... 0 1 0 0 0 0
2951 Differentially Private Bayesian Learning on Di... many applications machine learning example hea... 1 0 0 1 0 0
2952 Metastability and avalanche dynamics in strong... experimentally study stability bosonic mottins... 0 1 0 0 0 0
2953 Optical nanoscopy via quantum control present scheme nanoscopic imaging quantum mech... 0 1 0 0 0 0
2954 Skin Lesion Classification Using Deep Multi-sc... present deep learning approach isic skin lesio... 1 0 0 0 0 0
2955 Confidence Intervals and Hypothesis Testing fo... nonlinear dynamics lesser extent fields widely... 0 1 0 1 0 0
2956 Feature overwriting as a finite mixture proces... ungrammatical sentence key cabinets table know... 1 0 0 1 0 0
2957 Photographic dataset: playing cards photographic dataset collected testing image p... 1 1 0 0 0 0
2958 Dynamic constraints on activity and connectivi... human learning complex process future behavior... 0 0 0 0 1 0
2959 A note on Weyl groups and crystallographic roo... follow dual approach coxeter systems show weyl... 0 0 1 0 0 0
2960 Smoothness-based Edge Detection using Low-SNR ... emerging advancement branch autonomous robotic... 1 0 0 1 0 0
2961 Distributed resource allocation through utilit... game theory emerged novel approach coordinatio... 1 0 0 0 0 0
2962 IDK Cascades: Fast Deep Learning by Learning n... advances deep learning led substantial increas... 1 0 0 0 0 0
2963 Learning a Unified Control Policy for Safe Fal... able fall safely necessary motor skill humanoi... 1 0 0 0 0 0
2964 Long-Range Interactions for Hydrogen: 6P-1S an... collisional shift transition constitutes impor... 0 1 0 0 0 0
2965 Generating Music Medleys via Playing Music Puz... generating music medleys finding optimal permu... 1 0 0 1 0 0
2966 Collisional Dynamics of Solitons in the Couple... investigate focusing coupled ptsymmetric nonlo... 0 1 0 0 0 0
2967 Frustrated spin-1/2 molecular magnetism in the... performed magnetic susceptibility heat capacit... 0 1 0 0 0 0
2968 Data-Driven Model Predictive Control of Autono... goal paper present endtoend datadriven framewo... 1 0 0 1 0 0
2969 Predictions of planet detections with near inf... spirou near infrared spectropolarimeter destin... 0 1 0 0 0 0
2970 Quantum models with energy-dependent potential... construct energydependent potentials schroedin... 0 0 1 0 0 0
2971 Constructions and classifications of projectiv... paper intended introduction algebraic geometry... 0 0 1 0 0 0
2972 Generalised Reichenbachian Common Cause Systems principle common cause claims improbable coinc... 1 0 0 1 0 0
2973 Discovery of the most metal-poor damped Lyman-... report discovery analysis metalpoor damped lym... 0 1 0 0 0 0
2974 A Concurrent Perspective on Smart Contracts paper explore remarkable similarities multitra... 1 0 0 0 0 0
2975 Noise Models in the Nonlinear Spectral Domain ... existing works building soliton transmission s... 1 0 1 0 0 0
2976 Shape analysis on Lie groups and homogeneous s... paper concerned approach shape analysis based ... 0 0 1 0 0 0
2977 Markov Models for Health Economic Evaluations:... health economic evaluation studies widely used... 0 0 0 1 0 0
2978 Amorphous Alloys, Degradation Performance of A... today freshwater important ever contaminated t... 0 1 0 0 0 0
2979 Towards the ab initio based theory of the phas... despite appearance numerous new materials iron... 0 1 0 0 0 0
2980 Solitons in a modified discrete nonlinear Schr... study bulk surface nonlinear modes modified on... 0 1 0 0 0 0
2981 Functional renormalization-group approach to t... possibility topological kosterlitzthoulesskt t... 0 1 0 0 0 0
2982 Reentrant Phase Coherence in Superconducting N... short coherence lengths characteristic lowdime... 0 1 0 0 0 0
2983 Micromagnetic Simulations for Coercivity Impro... work investigate potential tetragonal l ordere... 0 1 0 0 0 0
2984 Semi-parametric Dynamic Asymmetric Laplace Mod... joint value risk var expected shortfall es qua... 0 0 0 0 0 1
2985 Mobility tensor of a sphere moving on a super-... paper addresses hydrodynamic behavior sphere c... 0 1 0 0 0 0
2986 Influence of Resampling on Accuracy of Imbalan... many realworld binary classification tasks eg ... 1 0 0 1 0 0
2987 Literature Survey on Interplay of Topics, Info... researchers attempted model information diffus... 1 0 0 0 0 0
2988 Extended B-Spline Collocation Method For KdV-B... extended form classical polynomial cubic bspli... 0 0 1 0 0 0
2989 On smile properties of volatility derivatives ... develop method study implied volatility exotic... 0 0 0 0 0 1
2990 Risk-Sensitive Optimal Control of Queues consider problem designing risksensitive optim... 1 0 0 0 0 0
2991 SPECULOOS exoplanet search and its prototype o... one significant goals modern science establish... 0 1 0 0 0 0
2992 Small-dimensional representations of algebraic... g algebraic group type al algebraically closed... 0 0 1 0 0 0
2993 Detection of methylisocyanate (CH3NCO) in a so... report detection prebiotic molecule chnco sola... 0 1 0 0 0 0
2994 A prismatic classifying space qualgebra g set two binary operations satisfy ... 0 0 1 0 0 0
2995 Generalized Biplots for Multidimensional Scale... dimension reduction visualization staple data ... 0 0 0 1 0 0
2996 Semi-supervised Conditional GANs introduce new model building conditional gener... 1 0 0 1 0 0
2997 Implicit Quantile Networks for Distributional ... work build recent advances distributional rein... 0 0 0 1 0 0
2998 Looping and Clustering model for the organizat... bacterial genome organized structure called nu... 0 1 0 0 0 0
2999 Simultaneous-equation Estimation without Instr... single equation system linear equations estima... 0 0 1 1 0 0
3000 Mean field limits for nonlinear spatially exte... consider spatially extended systems interactin... 0 0 1 0 0 0
3001 Bias correction in daily maximum and minimum t... global historical climatology networkdaily dat... 0 0 0 1 0 0
3002 Mechanism of the double heterostructure TiO2/Z... understanding mechanism heterojunction importa... 0 1 0 0 0 0
3003 Maximum Number of Common Zeros of Homogeneous ... two decades ago tsfasman boguslavsky conjectur... 0 0 1 0 0 0
3004 Wave-induced vortex recoil and nonlinear refra... vortex refracts surface waves momentum flux ca... 0 1 0 0 0 0
3005 Transport of Intensity Equation Microscopy for... microtubules mts filamentous protein polymers ... 0 1 0 0 0 0
3006 First-principles prediction of the stacking fa... intrinsic stacking fault energy isfe gamma mat... 0 1 0 0 0 0
3007 Mathematical Programming formulations for the ... paper address problem electing committee among... 1 0 1 0 0 0
3008 DAGs with NO TEARS: Continuous Optimization fo... estimating structure directed acyclic graphs d... 0 0 0 1 0 0
3009 Throughput-Optimal Broadcast in Wireless Netwo... consider problem efficient packet disseminatio... 1 0 1 0 0 0
3010 The Resilience of Life to Astrophysical Events much attention given literature effects astrop... 0 1 0 0 0 0
3011 Kinky DNA in solution: Small angle scattering ... dna flexible molecule degree flexibility subje... 0 0 0 0 1 0
3012 Explaining Aviation Safety Incidents Using Dee... although aviation accidents rare safety incide... 1 0 0 1 0 0
3013 Normalized Direction-preserving Adam adaptive optimization algorithms adam rmsprop ... 1 0 0 1 0 0
3014 Learning Deep CNN Denoiser Prior for Image Res... modelbased optimization methods discriminative... 1 0 0 0 0 0
3015 The Challenge of Spin-Orbit-Tuned Ground State... effects spinorbit interactions condensed matte... 0 1 0 0 0 0
3016 Derived Picard groups of preprojective algebra... paper study twosided tilting complexes preproj... 0 0 1 0 0 0
3017 Semi-supervised Learning in Network-Structured... propose analyze method semisupervised learning... 1 0 0 1 0 0
3018 Susceptibility of Methicillin Resistant Staphy... staphylococcus aureus responsible nosocomial i... 0 0 0 0 1 0
3019 Friendships, Rivalries, and Trysts: Characteri... understanding ideas relate fundamental questio... 1 1 0 0 0 0
3020 Deep Feature Learning for Graphs paper presents general graph representation le... 1 0 0 1 0 0
3021 Pseudospectral Model Predictive Control under ... trajectory optimization controlled dynamical s... 1 0 0 0 0 0
3022 Phonon-assisted oscillatory exciton dynamics i... monolayer semiconductor transition metal dicha... 0 1 0 0 0 0
3023 Manifold Regularization for Kernelized LSTD policy evaluation value function qfunction app... 1 0 0 1 0 0
3024 Normality of the Thue--Morse sequence along Pi... prove c subsequence thuemorse sequence mathbf ... 0 0 1 0 0 0
3025 Radio Weak Lensing Shear Measurement in the Vi... paper extends method introduced rivi et al b m... 0 1 0 0 0 0
3026 Loop Representation of Wigner's Little Groups wigners little groups subgroups lorentz group ... 0 1 0 0 0 0
3027 MOA Data Reveal a New Mass, Distance, and Rela... present moa collaboration light curve data pla... 0 1 0 0 0 0
3028 Ground state degeneracy in quantum spin system... develop nogo theorem twodimensional bosonic sy... 0 1 0 0 0 0
3029 Introspection: Accelerating Neural Network Tra... neural networks function approximators achieve... 1 0 0 0 0 0
3030 Single crystal polarized neutron diffraction s... polarised neutron diffraction measurements mad... 0 1 0 0 0 0
3031 Rigidity of volume-minimizing hypersurfaces in... paper generalize main result manifolds necessa... 0 0 1 0 0 0
3032 Dolha - an Efficient and Exact Data Structure ... streaming graph graph formed sequence incoming... 1 0 0 0 0 0
3033 Semi-classical states for the nonlinear Choqua... study existence multiplicity semiclassical sta... 0 0 1 0 0 0
3034 Results from the first cryogenic NaI detector ... recently flourishing notable interest crystall... 0 1 0 0 0 0
3035 Minimal Representations of Lie Algebras With N... obtain minimal dimension matrix representation... 0 0 1 0 0 0
3036 Forecasting day-ahead electricity prices in Eu... motivated increasing integration among electri... 1 0 0 1 0 0
3037 A Longitudinal Higher-Order Diagnostic Classif... providing diagnostic feedback growth crucial f... 0 0 0 1 0 0
3038 On Fairness and Calibration machine learning community become increasingly... 1 0 0 1 0 0
3039 AADS: Augmented Autonomous Driving Simulation ... simulation systems become essential component ... 1 0 0 0 0 0
3040 Scheme-theoretic Whitney conditions and applic... investigate schemetheoretic variant whitney co... 0 0 1 0 0 0
3041 Role of 1-D finite size Heisenberg chain in in... vo samples grown different oxygen concentratio... 0 1 0 0 0 0
3042 Electron paramagnetic resonance g-tensors from... present state interaction spinorbit coupling m... 0 1 0 0 0 0
3043 A multilayer multiconfiguration time-dependent... quantum transport studied nonequilibrium ander... 0 1 0 0 0 0
3044 Robust Identification of Target Genes and Outl... correct classification breast cancer subtypes ... 0 0 0 1 0 0
3045 Semi-Lagrangian one-step methods for two class... semilagrangian methods numerical methods desig... 0 0 1 0 0 0
3046 Deep Learning for Forecasting Stock Returns in... many studies undertaken using machine learning... 0 0 0 0 0 1
3047 Efficient Nearest-Neighbor Search for Dynamica... nearestneighbor search dominates asymptotic co... 1 0 0 0 0 0
3048 Primitivity, Uniform Minimality and State Comp... minimal deterministic finite automaton dfa uni... 1 0 1 0 0 0
3049 An Empirical Evaluation of Allgatherv on Multi... applications deep learning big data analytics ... 1 0 0 0 0 0
3050 Summary of Topological Study of Chaotic CBC Mo... cryptography block ciphers fundamental element... 1 1 0 0 0 0
3051 Benchmarking five numerical simulation techniq... present numerical studies two photonic crystal... 0 1 0 0 0 0
3052 MSO+nabla is undecidable paper extension monadic secondorder logic infi... 1 0 0 0 0 0
3053 Fast Nonconvex Deconvolution of Calcium Imagin... calcium imaging data promises transform field ... 0 0 0 1 1 0
3054 Thinking Fast and Slow with Deep Learning and ... sequential decision making problems structured... 1 0 0 0 0 0
3055 Computer-aided implant design for the restorat... patientspecific cranial implants important nec... 1 0 0 0 0 0
3056 Dimension-free Information Concentration via E... information concentration probability measures... 0 0 0 1 0 0
3057 A review of Dan's reduction method for multipl... paper give account dans reduction method reduc... 0 0 1 0 0 0
3058 Improved Bayesian Compression compression neural networks nn become highly s... 0 0 0 1 0 0
3059 Transient Response Improvement for Interconnec... paper propose method designing lowdimensional ... 1 0 0 0 0 0
3060 Gradient Sparsification for Communication-Effi... modern large scale machine learning applicatio... 1 0 0 1 0 0
3061 Interactions mediated by a public good transie... bacterial communities rich social lives welles... 0 0 0 0 1 0
3062 Transfer results for Frobenius extensions study frobenius extensions freefiltered totall... 0 0 1 0 0 0
3063 Ergodicity of spherically symmetric fluid flow... consider burgers equation posed outer communic... 0 0 1 0 0 0
3064 Recency-weighted Markovian inference describe markov latent state space mlss model ... 1 0 0 1 0 0
3065 A revisit on the compactness of commutators new characterization cmorn established local m... 0 0 1 0 0 0
3066 Question Answering through Transfer Learning f... show task question answering qa significantly ... 1 0 0 0 0 0
3067 Relative phantom maps define map fcolon xto phantom map relative map... 0 0 1 0 0 0
3068 Concepts of Architecture, Structure and System current iso standards pertaining concepts syst... 1 0 0 0 0 0
3069 On mesoprimary decomposition of monoid congrue... prove two main results concerning mesoprimary ... 0 0 1 0 0 0
3070 Assessing the state of e-Readiness for Small a... emerging economies frequently show large compo... 0 0 0 0 0 1
3071 Densities of Hyperbolic Cusp Invariants find cusp densities hyperbolic knots sphere de... 0 0 1 0 0 0
3072 Data Augmentation for Robust Keyword Spotting ... accurate ondevice keyword spotting kws low fal... 0 0 0 1 0 0
3073 A Canonical-based NPN Boolean Matching Algorit... paper presents new compact canonicalbased algo... 1 0 0 0 0 0
3074 Cross ratios on boundaries of symmetric spaces... generalize natural cross ratio ideal boundary ... 0 0 1 0 0 0
3075 Heterogeneous inputs to central pattern genera... previous work studied interconnected bursting ... 0 0 0 0 1 0
3076 Link invariants derived from multiplexing of c... introduce multiplexing crossing replacing clas... 0 0 1 0 0 0
3077 Adaptive Algebraic Multiscale Solver for Compr... paper presents development adaptive algebraic ... 1 1 0 0 0 0
3078 Automatic differentiation of hybrid models Ill... investigate automatic differentiation hybrid m... 1 0 0 0 0 0
3079 Pinning down the mass of Kepler-10c: the impor... initial rv characterisation enigmatic planet k... 0 1 0 0 0 0
3080 Human-Centered Autonomous Vehicle Systems: Pri... building effective enjoyable safe autonomous v... 1 0 0 0 0 0
3081 Controlled trapping of single particle states ... periodic array atomic sites described within t... 0 1 0 0 0 0
3082 Adaptive Noise Cancellation Using Deep Cerebel... paper proposes deep cerebellar model articulat... 1 0 0 0 0 0
3083 A Relaxation-based Network Decomposition Algor... transient stability simulation largescale inte... 1 0 0 0 0 0
3084 A Quantitative Analysis of WCAG 2.0 Compliance... web portals served excellent medium facilitate... 1 0 0 0 0 0
3085 Portfolio Construction Matters role portfolio construction implementation equ... 0 0 0 0 0 1
3086 Function space analysis of deep learning repre... paper propose function space approach represen... 1 0 0 1 0 0
3087 Random group cobordisms of rank 7/4 construct model random groups rank show model ... 0 0 1 0 0 0
3088 Transport properties across the many-body loca... theoretically study transport properties onedi... 0 1 0 0 0 0
3089 Analytic solution and stationary phase approxi... lasso elastic net linear regression models imp... 0 0 1 1 0 0
3090 (Un)predictability of strong El Niño events el niosouthern oscillation enso mode interannu... 0 1 0 0 0 0
3091 Deep Learning Assisted Heuristic Tree Search f... one key challenges operations researchers solv... 1 0 0 0 0 0
3092 Efficient Benchmarking of Algorithm Configurat... optimization algorithm hyperparameters crucial... 1 0 0 1 0 0
3093 Multiplicative local linear hazard estimation ... paper develops detailed mathematical statistic... 0 0 0 1 0 0
3094 Random Perturbations of Matrix Polynomials sum largedimensional random matrix polynomial ... 0 0 1 0 0 0
3095 Monitoring Information Quality within Web Serv... composition web services promising approach en... 1 0 0 0 0 0
3096 An open-source platform to study uniaxial stre... present automatic measurement platform enables... 0 1 0 0 0 0
3097 Nonlinear probability. A theory with incompati... jf aarnes introduced concept quasimeasures com... 0 0 1 1 0 0
3098 Parametrised second-order complexity theory wi... extend framework complexity operators analysis... 1 0 0 0 0 0
3099 VEEGAN: Reducing Mode Collapse in GANs using I... deep generative models provide powerful tools ... 0 0 0 1 0 0
3100 High-Resolution Breast Cancer Screening with M... advances deep learning natural images prompted... 1 0 0 1 0 0
3101 Adaptive posterior contraction rates for the h... investigate frequentist properties bayesian pr... 0 0 1 1 0 0
3102 A Convex Optimization Approach to Dynamic Prog... convex optimizationbased method proposed numer... 1 0 0 0 0 0
3103 Investigating Enactive Learning for Autonomous... enactive approach cognition typically proposed... 1 0 0 0 0 0
3104 Computability of semicomputable manifolds in c... study computable topological spaces semicomput... 1 0 1 0 0 0
3105 Acoustic streaming and its suppression in inho... present theoretical experimental study boundar... 0 1 0 0 0 0
3106 Predicting Pulsar Scintillation from Refractiv... dynamic secondary spectra many pulsars show ev... 0 1 0 0 0 0
3107 Disruptive Behavior Disorder (DBD) Rating Scal... presented study parentteacher disruptive behav... 0 0 0 1 0 0
3108 A GPU Poisson-Fermi Solver for Ion Channel Sim... poissonfermi model extension classical poisson... 0 1 0 0 0 0
3109 Quantum Monte Carlo with variable spins: fixed... study several aspects recently introduced fixe... 0 1 0 0 0 0
3110 Robustifying Independent Component Analysis by... introduce coroica confoundingrobust independen... 0 0 0 1 1 0
3111 Diversification-Based Learning in Computing an... diversificationbased learning dbl derives coll... 1 0 0 0 0 0
3112 A Tutorial on Canonical Correlation Methods canonical correlation analysis family multivar... 1 0 0 1 0 0
3113 Towards Neural Co-Processors for the Brain: Co... field braincomputer interfaces poised advance ... 0 0 0 0 1 0
3114 Enhanced conservation properties of Vlasov cod... many phenomena collisionless plasma physics re... 0 1 0 0 0 0
3115 A note on $p^λ$-convex set in a complete Riema... paper generalized notion lambdaradial contract... 0 0 1 0 0 0
3116 Bounded cohomology and virtually free hyperbol... using probabilistic argument show second bound... 0 0 1 0 0 0
3117 Transpiling Programmable Computable Functions ... programming computable functions pcf simplifie... 1 0 0 0 0 0
3118 Scattering polarization of the $d$-states of i... analysis solar magnetic fields using observati... 0 1 0 0 0 0
3119 Persistence Codebooks for Topological Data Ana... topological data analysis persistent homology ... 0 0 0 1 0 0
3120 Multivariate Analysis for Computing Maxima in ... study problem computing textscmaxima set n ddi... 1 0 0 0 0 0
3121 Generalized multi-Galileons, covariantized new... pointed nonsingular cosmological solutions sec... 0 1 0 0 0 0
3122 Tonic activation of extrasynaptic NMDA recepto... nmda receptors nmdar typically contribute exci... 0 0 0 0 1 0
3123 Using Minimum Path Cover to Boost Dynamic Prog... aligning sequencing reads graph representation... 1 0 0 0 0 0
3124 Visual Integration of Data and Model Space in ... ensembles classifier models typically deliver ... 1 0 0 1 0 0
3125 Steady States of Rotating Stars and Galaxies rotating continuum particles attracted gravity... 0 0 1 0 0 0
3126 Critical properties of the contact process wit... studied critical properties contact process sq... 0 1 0 0 0 0
3127 A Unified Strouhal-Reynolds Number Relationshi... new strouhalreynolds number relationship stabr... 0 1 0 0 0 0
3128 On Data-Dependent Random Features for Improved... randomizedfeature approach successfully employ... 1 0 0 1 0 0
3129 Anomalous electron spectrum and its relation t... recent discovery direct link sharp peak electr... 0 1 0 0 0 0
3130 New goodness-of-fit diagnostics for conditiona... paper proposes new specification tests conditi... 0 0 1 1 0 0
3131 Tailoring Heterovalent Interface Formation wit... integrating different semiconductor materials ... 0 1 0 0 0 0
3132 Looking backward: From Euler to Riemann survey main ideas early history subjects riema... 0 0 1 0 0 0
3133 Algorithmic Performance-Accuracy Trade-off in ... paper investigate emerging application scene u... 1 0 0 0 0 0
3134 A comparison theorem for MW-motivic cohomology prove finitely generated field infinite perfec... 0 0 1 0 0 0
3135 Wiener Filtering for Passive Linear Quantum Sy... paper considers version wiener filtering probl... 1 0 0 0 0 0
3136 Robust Navigation In GNSS Degraded Environment... robust navigation urban environments received ... 1 0 0 0 0 0
3137 On reproduction of On the regularization of Wa... report several purposes first report written i... 1 0 0 1 0 0
3138 Density Estimation with Contaminated Data: Min... paper studies density estimation pointwise los... 0 0 1 1 0 0
3139 A uniform bound on the Brauer groups of certai... let u complement smooth anticanonical divisor ... 0 0 1 0 0 0
3140 Composable Deep Reinforcement Learning for Rob... modelfree deep reinforcement learning shown ex... 1 0 0 1 0 0
3141 Stimulated Raman Scattering Imposes Fundamenta... temporal cavity solitons cs optical pulses per... 0 1 0 0 0 0
3142 Investigation of Using VAE for i-Vector Speake... new system ivector speaker recognition based v... 1 0 0 1 0 0
3143 A Unifying Framework for Convergence Analysis ... many machine learning models reformulated opti... 1 0 0 0 0 0
3144 A Newman property for BLD-mappings define newman property bldmappings study conne... 0 0 1 0 0 0
3145 Learning to Use Learners' Advice paper study variant framework online learning ... 1 0 0 0 0 0
3146 Fast and Accurate Time Series Classification w... time series ts occur many scientific commercia... 1 0 0 1 0 0
3147 Deep Neural Network Architectures for Modulati... work investigate value employing deep learning... 1 0 0 1 0 0
3148 Stack Overflow Considered Harmful? The Impact ... online programming discussion platforms stack ... 1 0 0 0 0 0
3149 United Nations Digital Blue Helmets as a Start... prior works tallinn manual international law a... 1 0 0 0 0 0
3150 Motives of derived equivalent K3 surfaces observe derived equivalent k surfaces isomorph... 0 0 1 0 0 0
3151 Robust Dual View Deep Agent motivated recent advance machine learning usin... 0 0 0 1 0 0
3152 Microplasma generation by slow microwave in an... microplasma generation using microwaves electr... 0 1 0 0 0 0
3153 K-theory of group Banach algebras and Banach p... investigate banach algebras convolution operat... 0 0 1 0 0 0
3154 A Biologically Plausible Supervised Learning M... spiking neural networks snns possess energyeff... 0 0 0 0 1 0
3155 Learning from various labeling strategies for ... suicide important often misunderstood problem ... 1 0 0 0 0 0
3156 Modeling Information Flow Through Deep Neural ... paper proposes principled information theoreti... 1 0 0 1 0 0
3157 Scalable Twin Neural Networks for Classificati... twin support vector machines twsvms emerged ef... 1 0 0 0 0 0
3158 Learning Compact Recurrent Neural Networks wit... recurrent neural networks rnns powerful sequen... 1 0 0 1 0 0
3159 Deep Learning applied to Road Traffic Speed fo... paper propose deep learning architectures fnn ... 1 0 0 1 0 0
3160 Wait For It: Identifying "On-Hold" Self-Admitt... selfadmitted technical debt refers situations ... 1 0 0 0 0 0
3161 Real time observation of granular rock analogu... better understanding anticipation natural proc... 0 1 0 0 0 0
3162 Virtual link and knot invariants from non-abel... given xsbeta sbetacolon xtimes xto xtimes x se... 0 0 1 0 0 0
3163 An extensible cluster-graph taxonomy for open ... present new extensible divisible taxonomy open... 1 0 0 0 0 0
3164 CREATE: Multimodal Dataset for Unsupervised Le... create database composed hours multimodal reco... 1 0 0 0 0 0
3165 Deep learning enhanced mobile-phone microscopy mobilephones facilitated creation fieldportabl... 1 1 0 0 0 0
3166 On convergence of the sample correlation matri... paper consider estimation problem concerning m... 0 0 1 1 0 0
3167 Minimal Controllability of Conjunctive Boolean... given conjunctive boolean network cbn n statev... 1 0 1 0 0 0
3168 Consensus report on 25 years of searches for d... starting summary detection statistics recent x... 0 1 0 0 0 0
3169 D-optimal designs for complex Ornstein-Uhlenbe... complex ornsteinuhlenbeck ou processes various... 0 0 1 1 0 0
3170 On Stein's Identity and Near-Optimal Estimatio... consider estimating parametric components semi... 0 0 1 1 0 0
3171 Self-adjointness and spectral properties of Di... define dirac operators mathbbs mathbbr magneti... 0 0 1 0 0 0
3172 Latent tree models latent tree models graphical models defined tr... 0 0 1 1 0 0
3173 Program Synthesis from Visual Specification program synthesis process automatically transl... 1 0 0 0 0 0
3174 Towards a Knowledge Graph based Speech Interface applications use human speech input require sp... 1 0 0 0 0 0
3175 An asymptotic equipartition property for measu... let g sofic group let sigma sigmanngeq sofic a... 1 0 1 0 0 0
3176 Dynamic Objects Segmentation for Visual Locali... visual localization mapping crucial capability... 1 0 0 0 0 0
3177 Gradient Masking Causes CLEVER to Overestimate... key problem research adversarial examples vuln... 0 0 0 1 0 0
3178 Gaussian process regression for forest attribu... analysis airborne laser scanning als data ofte... 0 0 0 1 0 0
3179 Quantum capacitance of double-layer graphene study groundstate properties double layer grap... 0 1 0 0 0 0
3180 DeepTriangle: A Deep Learning Approach to Loss... propose novel approach loss reserving based de... 0 0 0 1 0 1
3181 Distributed Time Synchronization for Networks ... paper new distributed asynchronous algorithm p... 1 0 0 0 0 0
3182 Using High-Rising Cities to Visualize Performa... developers concerned performance drop improvem... 1 0 0 0 0 0
3183 Controller Synthesis for Discrete-time Hybrid ... present novel controller synthesis approach di... 1 0 0 0 0 0
3184 Fast Stochastic Variance Reduced Gradient Meth... recently research accelerated stochastic gradi... 1 0 1 1 0 0
3185 A vertex-weighted-Least-Squares gradient recon... gradient reconstruction key process spatial ac... 0 1 0 0 0 0
3186 The reverse mathematics of theorems of Jordan ... jordan decomposition theorem states every func... 0 0 1 0 0 0
3187 Semiflat Orbifold Projections compute semiflat positive cone ksfathetasigma ... 0 0 1 0 0 0
3188 Magnetization process of the S = 1/2 two-leg o... measured magnetization organic compound bipbno... 0 1 0 0 0 0
3189 Deep Over-sampling Framework for Classifying I... class imbalance challenging issue practical cl... 1 0 0 1 0 0
3190 Failsafe Mechanism Design of Multicopters Base... order handle undesirable failures multicopter ... 1 0 0 0 0 0
3191 Inverse Design of Single- and Multi-Rotor Hori... method inverse design horizontal axis wind tur... 0 1 0 0 0 0
3192 The Double Galaxy Cluster Abell 2465 III. X-ra... report chandra xray observations optical weakl... 0 1 0 0 0 0
3193 Superdensity Operators for Spacetime Quantum M... introduce superdensity operators tool analyzin... 0 1 0 0 0 0
3194 Monte Carlo study of magnetic nanoparticles ad... study properties magnetic nanoparticles adsorb... 0 1 0 0 0 0
3195 Inference in high-dimensional linear regressio... introduce asymptotically unbiased estimator fu... 0 0 1 1 0 0
3196 Counterfactual Learning for Machine Translatio... counterfactual learning natural scenario impro... 1 0 0 1 0 0
3197 Conversion of Mersenne Twister to double-preci... bit mersenne twister generator mt widely used ... 1 0 0 1 0 0
3198 BaHaMAS: A Bash Handler to Monitor and Adminis... numerical qcd often extremely resource demandi... 0 1 0 0 0 0
3199 Computational Study of Halide Perovskite-Deriv... electronic structure energetic stability abx h... 0 1 0 0 0 0
3200 A Bootstrap Lasso + Partial Ridge Method to Co... highdimensional sparse linear models construct... 0 0 0 1 0 0
3201 The Music Streaming Sessions Dataset core many important machine learning problems ... 1 0 0 0 0 0
3202 CUSBoost: Cluster-based Under-sampling with Bo... class imbalance classification challenging res... 1 0 0 1 0 0
3203 Finding events in temporal networks: Segmentat... paper study problem discovering timeline event... 1 0 0 0 0 0
3204 On the area of constrained polygonal linkages study configuration spaces linkages whose unde... 0 0 1 0 0 0
3205 Effects of geometrical frustration on ferromag... smallcluster exactdiagonalization calculations... 0 1 0 0 0 0
3206 Learning Hybrid Process Models From Events: Pr... process discovery techniques return process mo... 1 0 0 0 0 0
3207 El Lenguaje Natural como Lenguaje Formal formal languages theory useful study natural l... 1 0 0 0 0 0
3208 Bounds for the completely positive rank of a s... paper find upper bound cprank matrix tropical ... 0 0 1 0 0 0
3209 Gaussian process classification using posterio... paper proposes new algorithm gaussian process ... 0 0 0 1 0 0
3210 On Inconsistency Indices and Inconsistency Axi... pairwise comparisons important tool modern mul... 1 0 0 0 0 0
3211 Heteroclinic traveling fronts for a generalize... study existence monotone heteroclinic travelin... 0 0 1 0 0 0
3212 Computer Algebra for Microhydrodynamics describe method computer algebra helps laborio... 1 1 0 0 0 0
3213 Rapid micro fluorescence in situ hybridization... paper describes micro fluorescence situ hybrid... 0 0 0 0 1 0
3214 Learning the Morphology of Brain Signals Using... neural timeseries data contain wide variety pr... 0 0 0 1 0 0
3215 Machine Learning for Drug Overdose Surveillance describe two recently proposed machine learnin... 1 0 0 1 0 0
3216 A Capsule based Approach for Polyphonic Sound ... polyphonic sound event detection polyphonic se... 1 0 0 0 0 0
3217 Linear simulation of ion temperature gradient ... global gyrokinetic toroidal code gtc recently ... 0 1 0 0 0 0
3218 Advanced engineering of single-crystal gold na... nanofabrication process realizing optical nano... 0 1 0 0 0 0
3219 Stick-breaking processes, clumping, and Markov... consider connections among clumped residual al... 0 0 1 1 0 0
3220 Scaling laws of Rydberg excitons rydberg atoms attracted considerable interest ... 0 1 0 0 0 0
3221 Variable selection in multivariate linear mode... paper propose novel variable selection approac... 0 0 1 1 0 0
3222 A Novel Model of Cancer-Induced Peripheral Neu... background models cancerinduced neuropathy des... 0 0 0 0 1 0
3223 Statistical inference using SGD present novel method frequentist statistical i... 1 0 1 1 0 0
3224 Core Discovery in Hidden Graphs massive network exploration important research... 1 0 0 0 0 0
3225 Some exact Bradlow vortex solutions consider bradlow equation vortices recently fo... 0 0 1 0 0 0
3226 Saturating sets in projective planes and hyper... let piq arbitrary finite projective plane orde... 0 0 1 0 0 0
3227 Accelerated Optimization in the PDE Framework:... following seminal work nesterov accelerated op... 1 0 0 0 0 0
3228 Limitations on Variance-Reduction and Accelera... study conditions one able efficiently apply va... 1 0 1 1 0 0
3229 Stability Enhanced Large-Margin Classifier Sel... stability important aspect classification proc... 0 0 0 1 0 0
3230 Some Sphere Theorems in Linear Potential Theory paper analyze capacitary potential due charged... 0 0 1 0 0 0
3231 Non-Gaussian Component Analysis using Entropy ... nongaussian component analysis ngca problem mu... 0 0 0 1 0 0
3232 Positive Geometries and Canonical Forms recent years seen surprising connection physic... 0 0 1 0 0 0
3233 Computational Thinking in Education: Where doe... computational thinking ct described essential ... 1 1 0 0 0 0
3234 Spincaloritronic signal generation in non-dege... spincaloritronic signal generation due thermal... 0 1 0 0 0 0
3235 Optimal fidelity multi-level Monte Carlo for q... quantify uncertainties location magnitude extr... 1 0 0 1 0 0
3236 A New Take on Protecting Cyclists in Smart Cities pollution urban centres becoming major societa... 0 0 1 0 0 0
3237 The effect upon neutrinos of core-collapse sup... accretion phase corecollapse supernovae large ... 0 1 0 0 0 0
3238 Positive-Unlabeled Learning with Non-Negative ... positive p unlabeled u data binary classifier ... 1 0 0 1 0 0
3239 PSZ2LenS. Weak lensing analysis of the Planck ... possibly unbiased selection process surveys su... 0 1 0 0 0 0
3240 GP CaKe: Effective brain connectivity with cau... fundamental goal network neuroscience understa... 0 0 0 1 0 0
3241 On boundary behavior of mappings on Riemannian... boundary behavior ring mappings riemannian man... 0 0 1 0 0 0
3242 Privacy Preserving Face Retrieval in the Cloud... recently cloud storage processing widely adopt... 1 0 0 0 0 0
3243 A Markov Chain Theory Approach to Characterizi... work provides simplified proof statistical min... 1 0 0 1 0 0
3244 Averages of Unlabeled Networks: Geometric Char... becoming increasingly common see large collect... 0 0 1 1 0 0
3245 The Abelian distribution define abelian distribution study basic proper... 0 1 0 0 0 0
3246 PULSEDYN - A dynamical simulation tool for stu... introduce pulsedyn particle dynamics program c... 0 1 0 0 0 0
3247 Stabilization Control of the Differential Mobi... paper presents design control model navigate d... 1 0 0 0 0 0
3248 A Random Sample Partition Data Model for Big D... big data sets must carefully partitioned stati... 1 0 0 1 0 0
3249 A family of transformed copulas with singular ... paper present family bivariate copulas transfo... 0 0 1 1 0 0
3250 Deep Learning for micro-Electrocorticographic ... machine learning extract information neural re... 0 0 0 0 1 0
3251 Clipped Matrix Completion: A Remedy for Ceilin... consider problem recovering lowrank matrix cli... 0 0 0 1 0 0
3252 End-to-End Multi-Task Denoising for joint SDR ... supervised learning based deep neural network ... 1 0 0 1 0 0
3253 Scalable Importance Tempering and Bayesian Var... propose monte carlo algorithm sample highdimen... 0 0 0 1 0 0
3254 Distributed Convolutional Dictionary Learning ... convolutional dictionary learning cdl estimate... 1 0 0 1 0 0
3255 Performance Analysis of Robust Stable PID Cont... paper derives new formulations designing domin... 0 0 0 1 0 0
3256 On Conjugates and Adjoint Descent note present inftycategorical framework descen... 0 0 1 0 0 0
3257 Learning to Parse and Translate Improves Neura... relatively little attention incorporating ling... 1 0 0 0 0 0
3258 Boundary feedback stabilization of a flexible ... paper addresses boundary stabilization flexibl... 1 0 1 0 0 0
3259 Out-colourings of Digraphs study vertex colourings digraphs outneighbourh... 1 0 0 0 0 0
3260 An Improved Video Analysis using Context based... locality sensitive hashing lsh based algorithm... 1 0 0 0 0 0
3261 Commuting graphs on Coxeter groups, Dynkin dia... group h non empty subset gammasubseteq h commu... 0 0 1 0 0 0
3262 Exact energy stability of Bénard-Marangoni con... using energy method investigate stability pure... 0 1 0 0 0 0
3263 A sharpening of a problem on Bernstein polynom... present elementary proof conjecture proposed r... 0 0 1 0 0 0
3264 Local Estimate on Convexity Radius and decay o... paper prove following pointwise curvaturefree ... 0 0 1 0 0 0
3265 Magnetic properties of the spin-1 chain compou... report experimental results static magnetizati... 0 1 0 0 0 0
3266 Multiple core hole formation by free-electron ... investigate formation multiplecorehole states ... 0 1 0 0 0 0
3267 An Intriguing Failing of Convolutional Neural ... ideas enjoyed large impact deep learning convo... 0 0 0 1 0 0
3268 Uniformly recurrent subgroups and the ideal st... study ideal structure reduced crossed product ... 0 0 1 0 0 0
3269 TrajectoryNet: An Embedded GPS Trajectory Repr... understanding discovering knowledge gps global... 1 0 0 0 0 0
3270 Modularity Matters: Learning Invariant Relatio... focus two supervised visual reasoning tasks wh... 0 0 0 1 1 0
3271 Proofs of some Propositions of the semi-Intuit... offer proofs complete article introducing prop... 0 0 1 0 0 0
3272 Entanglement in topological systems lecture notes entanglement topological systems... 0 1 0 0 0 0
3273 Equivalence between Differential Inclusions In... paper study existence stability sense lyapunov... 0 0 1 0 0 0
3274 Effect of iron oxide loading on magnetoferriti... synthetic biological macromolecule magnetoferr... 0 1 0 0 0 0
3275 Volumetric Super-Resolution of Multispectral Data multispectral remote sensors eg quickbird ikon... 1 0 0 0 0 0
3276 Atomic Convolutional Networks for Predicting P... empirical scoring functions based either molec... 1 1 0 1 0 0
3277 Random characters under the $L$-measure, I : D... define lmeasure set dirichlet characters analo... 0 0 1 0 0 0
3278 The Effects of Superheating Treatment on Distr... present study superheating treatment applied r... 0 1 0 0 0 0
3279 Cycle-of-Learning for Autonomous Systems from ... discuss different types humanrobot interaction... 1 0 0 0 0 0
3280 Comparison of methods for early-readmission pr... background choosing performing method terms ou... 0 0 0 1 0 0
3281 How the notion of ACCESS guides the organizati... contribution show access play strong role crea... 1 0 0 0 0 0
3282 Soliton-potential interactions for nonlinear S... work mainly consider dynamics scattering narro... 0 0 1 0 0 0
3283 Incommensurately modulated twin structure of n... incommensurately modulated twin structure nyer... 0 1 0 0 0 0
3284 Jensen's force and the statistical mechanics o... cortex exhibits selfsustained highlyirregular ... 0 0 0 0 1 0
3285 Notes on relative normalizations of ruled surf... paper deals relative normalizations skew ruled... 0 0 1 0 0 0
3286 Ferroelectric control of the giant Rashba spin... gete wins renewed research interest due giant ... 0 1 0 0 0 0
3287 Topological phase of the interlayer exchange c... show theoretically phase interlayer exchange c... 0 1 0 0 0 0
3288 New constraints on time-dependent variations o... observations cmb today allow us answer detaile... 0 1 0 0 0 0
3289 ForestClaw: A parallel algorithm for patch-bas... describe parallel adaptive multiblock algorith... 1 0 0 0 0 0
3290 Distributed Triangle Counting in the Graphulo ... triangle counting key algorithm large graph an... 1 0 0 0 0 0
3291 Ensemble Classifier for Eye State Classificati... growing importance utilization measuring brain... 1 0 0 0 0 0
3292 Nutritionally recommended food for semi- to st... diet design vegetarian health challenging due ... 1 0 0 0 1 0
3293 Does data interpolation contradict statistical... show learning methods interpolating training d... 0 0 0 1 0 0
3294 Spin-Frustrated Pyrochlore Chains in the Volca... search new frustrated magnetic systems signifi... 0 1 0 0 0 0
3295 Detail-revealing Deep Video Super-resolution previous cnnbased video superresolution approa... 1 0 0 0 0 0
3296 MON: Mission-optimized Overlay Networks large organizations often users multiple sites... 1 0 0 0 0 0
3297 Generalized Results on Monoids as Memory show results theory group automata monoid auto... 1 0 0 0 0 0
3298 Radio Resource Allocation for Multicarrier-Low... multicarrierlow density spreading multiple acc... 1 0 0 0 0 0
3299 Estimating the Spectral Density of Large Impli... many important problems characterized eigenval... 0 0 0 1 0 0
3300 Robust 3D Distributed Formation Control with A... present distributed control strategy team quad... 1 0 0 0 0 0
3301 Discrete Extremes contribution widen scope extreme value analysi... 0 0 1 1 0 0
3302 Rapid Adaptation with Conditionally Shifted Ne... describe mechanism artificial neural networks ... 1 0 0 1 0 0
3303 JamBot: Music Theory Aware Chord Based Generat... propose novel approach generation polyphonic m... 1 0 0 1 0 0
3304 Inflationary Primordial Black Holes as All Dar... following new microlensing constraint primordi... 0 1 0 0 0 0
3305 Condition number and matrices well known concept condition number kappaa aa ... 0 0 1 0 0 0
3306 Computational Tools in Weighted Persistent Hom... paper study properties applications weighted h... 0 0 1 0 0 0
3307 Dirac fermions in borophene honeycomb structures group iv elements host ma... 0 1 0 0 0 0
3308 Resolving the notorious case of conical inters... motion electrons nuclei photochemical events o... 0 1 0 0 0 0
3309 Benchmarking gate-based quantum computers advent public access small gatebased quantum p... 0 1 0 0 0 0
3310 Determinant structure for tau-function of holo... previous works relationship hermites two appro... 0 1 1 0 0 0
3311 Transfer Operator Based Approach for Optimal S... paper develop linear transfer perron frobenius... 1 0 1 0 0 0
3312 CryptoDL: Deep Neural Networks over Encrypted ... machine learning algorithms based deep neural ... 1 0 0 0 0 0
3313 Data-driven modeling of collaboration networks... analyze largescale data sets collaborations tw... 1 1 0 0 0 0
3314 Tunnelling in Dante's Inferno study quantum tunnelling dantes inferno model ... 0 1 0 0 0 0
3315 Regulating Highly Automated Robot Ecologies: I... highly automated robot ecologies hare societie... 1 0 0 0 0 0
3316 Some theoretical results on tensor elliptical ... multilinear normal distribution widely used to... 0 0 1 1 0 0
3317 Applying Text Mining to Protest Stories as Voi... data driven activism attempts collect analyze ... 1 0 0 0 0 0
3318 Cost-Effective Training of Deep CNNs with Acti... deep convolutional neural networks achieved gr... 0 0 0 1 0 0
3319 Flipping growth orientation of nanographitic s... nanographitic structures ngss multitude morpho... 0 1 0 0 0 0
3320 Topological thermal Hall effect due to Weyl ma... present first theoretical evidence zero magnet... 0 1 0 0 0 0
3321 Numerical prediction of the piezoelectric tran... present simple electromechanical finite differ... 0 1 0 0 0 0
3322 A free energy landscape of the capture of CO2 ... frustrated lewis pairs flps known ability capt... 0 1 0 0 0 0
3323 Improved Point Source Detection in Crowded Fie... cataloging challenging crowded fields sources ... 0 1 0 0 0 0
3324 Local Convergence of Proximal Splitting Method... analyze local convergence proximal splitting a... 1 0 0 1 0 0
3325 On the boundary between qualitative and quanti... causal relationships among variables commonly ... 0 0 1 1 0 0
3326 How Could Polyhedral Theory Harness Deep Learn... holy grail deep learning come automatic method... 0 0 0 1 0 0
3327 Optimal top dag compression shown given ordered nodelabelled tree size n m... 1 0 0 0 0 0
3328 Synthesizing SystemC Code from Delay Hybrid CSP delay omnipresent modern control systems promp... 1 0 0 0 0 0
3329 Analysis of Annual Cyclone Frequencies over Ba... paper discusses time series trend variability ... 0 0 0 1 0 0
3330 Load Thresholds for Cuckoo Hashing with Overla... dietzfelbinger weidling dw proposed natural va... 1 0 0 0 0 0
3331 Evaluating the hot hand phenomenon using predi... consider problem modeling memory discretestate... 0 1 0 1 0 0
3332 Closed almost-Kähler 4-manifolds of constant n... show closed almost khler manifold globally con... 0 0 1 0 0 0
3333 Pretest and Stein-Type Estimations in Quantile... study consider preliminary test shrinkage esti... 0 0 1 1 0 0
3334 Outcrop fracture characterization on suppositi... conventional fracture data collection methods ... 1 1 0 0 0 0
3335 Exploiting routinely collected severe case dat... influenza remains significant burden health sy... 0 1 0 1 0 0
3336 Consistent Inter-Model Specification for Time-... paper shows recover stochastic volatility mode... 0 0 0 0 0 1
3337 Optimal Task Scheduling in Communication-Const... mobile edge computing mec expected effective s... 1 0 0 0 0 0
3338 Infinitary generalizations of Deligne's comple... given regular cardinal kappa kappakappakappa s... 0 0 1 0 0 0
3339 Progressive Growing of GANs for Improved Quali... describe new training methodology generative a... 1 0 0 1 0 0
3340 Saxion Cosmology for Thermalized Gravitino Dar... supersymmetric theories gravitinos mass suppre... 0 1 0 0 0 0
3341 One-step and Two-step Classification for Abusi... automatic abusive language detection difficult... 1 0 0 0 0 0
3342 Massive data compression for parameter-depende... show massive data compression algorithm moped ... 0 1 0 1 0 0
3343 A Novel Data-Driven Framework for Risk Charact... electronic medical records emr contain longitu... 1 0 0 1 0 0
3344 Knotted solutions for linear and nonlinear the... examine knotted solutions simple hopfion point... 0 1 0 0 0 0
3345 Implicit Media Tagging and Affect Prediction f... present method automatically evaluates emotion... 1 0 0 0 0 0
3346 Improving Legal Information Retrieval by Distr... legal professionals worldwide currently trying... 1 0 0 0 0 0
3347 Modeling Study of Laser Beam Scattering by Def... accurate modeling light scattering nanometer s... 0 1 0 0 0 0
3348 Combinatorial and Asymptotical Results on the ... joselli et al introduced neighborhood grid dat... 1 0 0 0 0 0
3349 On the structure of join tensors with applicat... investigate structure join tensors may regarde... 0 0 1 0 0 0
3350 Adversarial Variational Optimization of Non-Di... complex computer simulators increasingly used ... 1 0 0 1 0 0
3351 Learning Light Transport the Reinforced Way show equations reinforcement learning light tr... 1 0 0 0 0 0
3352 Posterior Asymptotic Normality for an Individu... consider sparse highdimensional linear regress... 0 0 1 1 0 0
3353 Subdeterminant Maximization via Nonconvex Rela... several fundamental problems arise optimizatio... 1 0 1 1 0 0
3354 On the Uplink Achievable Rate of Massive MIMO ... paper considers channel estimation uplink achi... 1 0 0 0 0 0
3355 On The Complexity of Enumeration investigate relationship several enumeration c... 1 0 0 0 0 0
3356 On $p$-degree of elliptic curves note investigate pdegree function elliptic cur... 0 0 1 0 0 0
3357 Combinatorial formulas for Kazhdan-Lusztig pol... citey yin generalized definition wgraph ideal ... 0 0 1 0 0 0
3358 Arithmetic statistics of modular symbols mazur rubin stein recently formulated series c... 0 0 1 0 0 0
3359 Approximation Techniques for Stochastic Analys... increasing demand formal methods design proces... 1 0 0 0 0 0
3360 Characterizing time-irreversibility in disorde... study effects local perturbations dynamics dis... 0 1 0 0 0 0
3361 A Lower Bound for the Number of Central Config... study indices geodesic central configurations ... 0 0 1 0 0 0
3362 Scattering dominated high-temperature phase of... controversy regarding precise nature hightempe... 0 1 0 0 0 0
3363 Motional Ground State Cooling Outside the Lamb... report raman sideband cooling single sodium at... 0 1 0 0 0 0
3364 Quantifying the uncertainties in an ensemble o... meaningful climate predictions must accompanie... 0 1 0 0 0 0
3365 A Learning-Based Framework for Two-Dimensional... situational awareness vehicular networks could... 1 0 0 1 0 0
3366 Learning from Multiple Cities: A Meta-Learning... spatialtemporal prediction fundamental problem... 1 0 0 1 0 0
3367 Universal locally univalent functions and univ... prove rungetype theorems universality results ... 0 0 1 0 0 0
3368 Towards a New Interpretation of Separable Conv... recent times use separable convolutions deep c... 1 0 0 1 0 0
3369 Numerical Simulations of Regolith Sampling Pro... present recent improvements simulation regolit... 0 1 0 0 0 0
3370 Lexical analysis of automated accounts on Twitter recent years social bots using increasingly so... 1 0 0 0 0 0
3371 The effect of the virial state of molecular cl... set smoothed particle hydrodynamics simulation... 0 1 0 0 0 0
3372 A contract-based method to specify stimulus-re... number formal methods exist capturing stimulus... 1 0 0 0 0 0
3373 Estimation of the covariance structure of heav... propose analyze new estimator covariance matri... 0 0 1 1 0 0
3374 Deep Reinforcement Learning for De-Novo Drug D... propose novel computational strategy de novo d... 1 0 0 1 0 0
3375 Batch Data Processing and Gaussian Two-Armed B... consider twoarmed bandit problem applied data ... 0 0 1 1 0 0
3376 Estimating Under Five Mortality in Space and T... accurate estimates mortality rate umr developi... 0 0 0 1 0 0
3377 Cyclotomic Construction of Strong External Dif... strong external difference family sedf general... 1 0 1 0 0 0
3378 Acoustic double negativity induced by position... using multiple scattering theory algorithm inv... 0 1 0 0 0 0
3379 Interoceptive robustness through environment-m... typically ai researchers roboticists try reali... 1 0 0 0 0 0
3380 Strichartz estimates for non-degenerate Schröd... consider schrdinger equation nondegenerate met... 0 0 1 0 0 0
3381 On the Diophantine equation $\sum_{j=1}^kjF_j^... let fn denote nth term fibonacci sequence pape... 0 0 1 0 0 0
3382 Uncertainty measurement with belief entropy on... social dilemmas regarded essence evolution gam... 1 0 0 0 0 0
3383 The diffusion equation with nonlocal data study diffusion heat equation finite dimension... 0 0 1 0 0 0
3384 Exploring Neural Transducers for End-to-End Sp... work perform empirical comparison among ctc rn... 1 0 0 0 0 0
3385 Information Theory of Data Privacy combining shannons cryptography model assumpti... 1 0 0 0 0 0
3386 A combined entropy and utility based generativ... generative models either simple clustering alg... 1 0 0 1 0 0
3387 Phase Transitions of Spectral Initialization f... study spectral initialization method serves ke... 1 0 0 1 0 0
3388 Understanding GANs: the LQG Setting generative adversarial networks gans become po... 1 0 0 1 0 0
3389 A Rosenau-type approach to the approximation o... numerical approximation solution fokkerplanck ... 0 0 1 0 0 0
3390 Analysis of Footnote Chasing and Citation Sear... interactive information retrieval researchers ... 1 0 0 0 0 0
3391 Direct Mapping Hidden Excited State Interactio... excited states polyatomic systems rather compl... 0 1 0 1 0 0
3392 You Are How You Walk: Uncooperative MoCap Gait... work offers design video surveillance system b... 1 0 0 0 0 0
3393 Clebsch-Gordan Nets: a Fully Fourier Space Sph... recent work cohen emphet al achieved stateofth... 0 0 0 1 0 0
3394 Characterization of catastrophic instabilities... catastrophic events though rare occur occur de... 0 0 0 0 0 1
3395 Discovery of Intrinsic Quantum Anomalous Hall ... quantum anomalous hall qah phase novel topolog... 0 1 0 0 0 0
3396 Temporal Convolution Networks for Real-Time Ab... automatic analysis ultrasound sequences substa... 0 0 0 1 0 0
3397 The Role of Data Analysis in the Development o... data analysis plays important role development... 1 0 0 0 0 0
3398 Quantification of the memory effect of steady-... dynamics system general depends initial state ... 0 1 0 0 0 0
3399 Geometrical optimization approach to isomeriza... study laserdriven isomerization reactions exci... 0 1 0 0 0 0
3400 Quandle rings paper theory quandle rings proposed quandles a... 0 0 1 0 0 0
3401 On the application of Laguerre's method to the... polynomial eigenvalue problem arises many appl... 0 0 1 0 0 0
3402 Limiting Behaviour of the Teichmüller Harmonic... paper study teichmller harmonic map flow intro... 0 0 1 0 0 0
3403 Invariant measures for the actions of the modu... note give nature action modular group ends inf... 0 0 1 0 0 0
3404 Cartesian Fibrations and Representability higher category theory use fibrations model pr... 0 0 1 0 0 0
3405 Signal coupling to embedded pitch adapters in ... examined effects embedded pitch adapters signa... 0 1 0 0 0 0
3406 Winds and radiation in unison: a new semi-anal... star clusters interact interstellar medium ism... 0 1 0 0 0 0
3407 Analysis-of-marginal-Tail-Means (ATM): a robus... present new method called analysisofmarginalta... 0 0 0 1 0 0
3408 Modular System for Shelves and Coasts (MOSSCO ... shelf coastal sea processes extend atmosphere ... 0 1 0 0 0 0
3409 How big was Galileo's impact? Percussion in th... giornata sesta force percussion relatively les... 0 1 0 0 0 0
3410 Radar, without tears brief introduction radar principles doppler ef... 0 1 0 0 0 0
3411 A Multi-Stage Algorithm for Acoustic Physical ... one challenges computational acoustics identif... 1 0 0 1 0 0
3412 A Warped Product Splitting Theorem Through Wea... paper strengthen splitting theorem proved prov... 0 0 1 0 0 0
3413 Learning Instance Segmentation by Interaction present approach building active agent learns ... 1 0 0 1 0 0
3414 On convergence rate of stochastic proximal poi... significant parts recent learning literature s... 1 0 0 1 0 0
3415 Learning Texture Manifolds with the Periodic S... paper introduces novel approach texture synthe... 1 0 0 1 0 0
3416 Generating Representative Executions [Extended... analyzing behaviour concurrent program made di... 1 0 0 0 0 0
3417 Extended periodic links and HOMFLYPT polynomial extended strongly periodic links introduced pr... 0 0 1 0 0 0
3418 Exploring Cross-Domain Data Dependencies for S... past decade idea smart homes conceived potenti... 1 0 0 0 0 0
3419 Poseidon: An Efficient Communication Architect... deep learning models take weeks train single g... 1 0 0 1 0 0
3420 A closed formula for illiquid corporate bonds ... deduce simple closed formula illiquid corporat... 0 0 0 0 0 1
3421 Toric Codes, Multiplicative Structure and Deco... long linear codes constructed toric varieties ... 1 0 1 0 0 0
3422 Outlier Detection by Consistent Data Selection... often challenge associated tasks like fraud sp... 1 0 0 1 0 0
3423 Basic quantizations of $D=4$ Euclidean, Lorent... construct firstly complete list five quantum d... 0 0 1 0 0 0
3424 Supervising Unsupervised Learning with Evoluti... method control results gradient descent unsupe... 0 0 0 1 0 0
3425 Inductive Representation Learning in Large Att... graphs networks ubiquitous allow us model enti... 1 0 0 1 0 0
3426 Evidence for Two Hot Jupiter Formation Paths disk migration higheccentricity migration two ... 0 1 0 0 0 0
3427 High-resolution Spectroscopy and Spectropolari... combination photometry spectroscopy spectropol... 0 1 0 0 0 0
3428 Majority and Minority Voted Redundancy for Saf... new majority minority voted redundancy mmr sch... 1 0 0 0 0 0
3429 Tight Analysis for the 3-Majority Consensus Dy... present tight analysis wellstudied randomized ... 1 0 0 0 0 0
3430 Large-scale chromosome folding versus genomic ... using stateoftheart techniques combining imagi... 0 1 0 0 0 0
3431 Superlinear scaling in the urban system of Eng... according theory urban scaling urban indicator... 0 1 0 0 0 0
3432 Extensile actomyosin? living cells move thanks assemblies actin fila... 0 1 0 0 0 0
3433 Towards Deep Learning Models for Psychological... increasing interest exploiting mobile sensing ... 1 0 0 1 0 0
3434 Direct Multitype Cardiac Indices Estimation vi... cardiac indices estimation great importance id... 1 0 0 0 0 0
3435 Noncommutative hyperbolic metrics characterize certain noncommutative domains te... 0 0 1 0 0 0
3436 Interpretable Low-Dimensional Regression via D... consider problem estimating regression functio... 0 0 0 1 0 0
3437 Basin stability for chimera states chimera states namely complex spatiotemporal p... 0 1 0 0 0 0
3438 On the Usage of Databases of Educational Mater... technologies become important part lives steps... 1 0 0 0 0 0
3439 Deep Neural Linear Bandits: Overcoming Catastr... study neurallinear bandit model solving sequen... 1 0 0 1 0 0
3440 Breaking mean-motion resonances during Type I ... present twodimensional hydrodynamical simulati... 0 1 0 0 0 0
3441 The Stretch to Stray on Time: Resonant Length ... firstpassage times random walks vast number di... 0 0 0 0 1 1
3442 Hierarchical Model for Long-term Video Prediction video prediction active topic research past ye... 1 0 0 0 0 0
3443 Classical Music Clustering Based on Acoustic F... paper cluster classical music pieces collected... 1 0 0 0 0 0
3444 Many-Body-Localization : Strong Disorder pertu... random quantum spin models strong disorder per... 0 1 0 0 0 0
3445 Semi-supervised Learning for Discrete Choice M... introduce semisupervised discrete choice model... 0 0 0 1 0 0
3446 An Analytic Criterion for Turbulent Disruption... mean motion commensurabilities multiplanet sys... 0 1 1 0 0 0
3447 Electronic structure of transferred graphene/h... van der waals heterostructures periodic potent... 0 1 0 0 0 0
3448 Automatic sequences and generalised polynomials conjecture bounded generalised polynomial func... 1 0 1 0 0 0
3449 Robust Regulation of Infinite-Dimensional Port... give general sufficient conditions controller ... 0 0 1 0 0 0
3450 Existence of travelling waves and high activat... provide mathematical analysis thermodiffusive ... 0 0 1 0 0 0
3451 The Motion of Small Bodies in Space-time consider motion small bodies general relativit... 0 1 1 0 0 0
3452 Extracting urban impervious surface from GF-1 ... impervious surface area direct consequence urb... 1 0 0 0 0 0
3453 Positive and nodal single-layered solutions to... study problem delta vlambda v v pvtext omega t... 0 0 1 0 0 0
3454 Robust, Deep and Inductive Anomaly Detection pca classical statistical technique whose simp... 1 0 0 1 0 0
3455 Understanding Organizational Approach towards ... end user privacy critical concern organization... 1 0 0 0 0 0
3456 Baryonic impact on the dark matter orbital pro... study orbital properties dark matter haloes co... 0 1 0 0 0 0
3457 Extreme Value Analysis Without the Largest Val... paper concerned analysis heavytailed data port... 0 0 1 0 0 0
3458 Controlling light in complex media beyond the ... studying internal structure complex samples li... 0 1 0 0 0 0
3459 Uniqueness and stability of Ricci flow through... verify conjecture perelman states exists canon... 0 0 1 0 0 0
3460 Reciprocal space engineering with hyperuniform... hyperuniform geometries feature correlated dis... 0 1 0 0 0 0
3461 STFT spectral loss for training a neural speec... paper proposes new loss using shorttime fourie... 1 0 0 0 0 0
3462 Spectral Properties of Continuum Fibonacci Sch... study continuum schrdinger operators real line... 0 0 1 0 0 0
3463 Species tree inference from genomic sequences ... logdet distance two aligned dna sequences intr... 0 0 0 0 1 0
3464 Structure preserving schemes for nonlinear Fok... paper focus construction numerical schemes non... 0 1 1 0 0 0
3465 A Markov decision process approach to optimizi... several different modalities eg surgery chemot... 0 1 1 0 0 0
3466 Complex Contagions with Timers great deal effort gone trying model social inf... 1 1 0 0 0 0
3467 Random Networks, Graphical Models, and Exchang... study conditional independence relationships r... 0 0 1 1 0 0
3468 Long-Term Inertial Navigation Aided by Dynamic... currentaided inertial navigation framework pro... 1 0 0 0 0 0
3469 Catching Zika Fever: Application of Crowdsourc... february world health organization declared zi... 1 0 0 0 0 0
3470 Monte Carlo determination of the low-energy co... lowenergy constants namely spin stiffness rhos... 0 1 0 0 0 0
3471 Explaining Parochialism: A Causal Account for ... political social polarization significant caus... 0 0 0 0 1 1
3472 A Secular Resonant Origin for the Loneliness o... despite decades inquiry origin giant planets r... 0 1 0 0 0 0
3473 An Incremental Slicing Method for Functional P... several applications slicing require program s... 1 0 0 0 0 0
3474 Accelerating Science with Generative Adversari... physicists large hadron collider lhc rely deta... 0 0 0 1 0 0
3475 A study of ancient Khmer ephemerides study ancient khmer ephemerides described fren... 0 1 1 0 0 0
3476 Auto Deep Compression by Reinforcement Learnin... modelbased compression effective facilitating ... 0 0 0 1 0 0
3477 Infinite Sparse Structured Factor Analysis matrix factorisation methods decompose multiva... 0 0 0 1 0 0
3478 RuntimeSearch: Ctrl+F for a Running Program developers often try find occurrences certain ... 1 0 0 0 0 0
3479 Accurate and Efficient Evaluation of Character... new method improve accuracy efficiency charact... 0 1 0 0 0 0
3480 MUFASA: The assembly of the red sequence examine growth evolution quenched galaxies muf... 0 1 0 0 0 0
3481 Symmetric calorons and the rotation map study su calorons also known periodic instanto... 0 0 1 0 0 0
3482 Deep Learning for Accelerated Reliability Anal... natural disasters catastrophic impacts functio... 1 0 0 1 0 0
3483 IMLS-SLAM: scan-to-model matching based on 3D ... simultaneous localization mapping slam problem... 1 0 0 0 0 0
3484 Cooperative Online Learning: Keeping your Neig... study asynchronous online learning setting net... 1 0 0 1 0 0
3485 FeaStNet: Feature-Steered Graph Convolutions f... convolutional neural networks cnns massively i... 1 0 0 0 0 0
3486 On a minimal counterexample to Brauer's $k(B)$... study brauers longstanding kbconjecture number... 0 0 1 0 0 0
3487 The best fit for the observed galaxy Counts-in... sloan digital sky survey sdss first dense reds... 0 1 0 0 0 0
3488 Separator Reconnection at Earth's Dayside Magn... compare global high resolution resistive magne... 0 1 0 0 0 0
3489 Semi-Supervised Overlapping Community Finding ... algorithms detecting communities complex netwo... 1 0 0 0 0 0
3490 Designing Coalition-Proof Reverse Auctions ove... paper investigates reverse auctions involve co... 1 0 0 0 0 0
3491 Probabilistic Line Searches for Stochastic Opt... deterministic optimization line searches stand... 1 0 0 1 0 0
3492 Quantum Phase transition under pressure in a h... hydrogen hdoped lafeaso prototypical ironbased... 0 1 0 0 0 0
3493 Hyperboloidal similarity coordinates and a glo... consider corotational wave maps dimensional mi... 0 0 1 0 0 0
3494 Supersymmetry in Closed Chains of Coupled Majo... consider closed chain even number majorana zer... 0 1 0 0 0 0
3495 Renormalized Hennings Invariants and 2+1-TQFTs construct nonsemisimple tqfts yielding mapping... 0 0 1 0 0 0
3496 On Improving Deep Reinforcement Learning for P... deep reinforcement learning rl recently emerge... 1 0 0 1 0 0
3497 When to Invest in Security? Empirical Evidence... games timing aim determine optimal defense str... 1 0 0 0 0 0
3498 Converting Cascade-Correlation Neural Nets int... humans adept recognizing class input instance ... 1 0 0 1 0 0
3499 Semiclassical "Divide-and-Conquer" Method for ... new semiclassical divideandconquer method pres... 0 1 0 0 0 0
3500 Yangian Symmetry and Integrability of Planar N... letter establish yangian symmetry planar n sup... 0 0 1 0 0 0
3501 DaMaSCUS: The Impact of Underground Scattering... conventional dark matter direct detection expe... 0 1 0 0 0 0
3502 Allocation strategies for high fidelity models... propose novel approach allocating resources ex... 1 0 0 0 0 0
3503 Simplicial Closure and higher-order link predi... networks provide powerful formalism modeling c... 1 0 0 1 0 0
3504 Basic concepts and tools for the Toki Pona min... minimal constructed language conlang useful ex... 1 0 0 0 0 0
3505 Spectral Methods for Nonparametric Models nonparametric models versatile albeit computat... 1 0 0 1 0 0
3506 Setting the threshold for high throughput dete... anomaly detection ad garnered ample attention ... 1 0 0 1 0 0
3507 Photonic Loschmidt echo in binary waveguide la... time reversal one intriguing yet elusive wave ... 0 1 0 0 0 0
3508 Proof Reduction of Fair Stuttering Refinement ... present series definitions theorems demonstrat... 1 0 0 0 0 0
3509 Steady Galactic Dynamos and Observational Cons... study global consequences halos spiral galaxie... 0 1 0 0 0 0
3510 Efficient Decision Trees for Multi-class Suppo... propose new methods support vector machines sv... 1 0 0 1 0 0
3511 Semiclassical measures on hyperbolic surfaces ... show limiting semiclassical measure obtained s... 0 1 1 0 0 0
3512 Assessment of algorithms for computing moist a... atmospheric moist available potential energy m... 0 1 0 0 0 0
3513 A Zero Knowledge Sumcheck and its Applications many seminal results interactive proofs ips us... 1 0 0 0 0 0
3514 Exact diagonalization and cluster mean-field s... quantum magnetic phases near magnetic saturati... 0 1 0 0 0 0
3515 Perturbed Proximal Descent to Escape Saddle Po... consider problem finding local minimizers nonc... 1 0 0 1 0 0
3516 Don't Panic! Better, Fewer, Syntax Errors for ... syntax errors generally easy fix humans parser... 1 0 0 0 0 0
3517 Predicting Tomorrow's Headline using Today's T... predicting popularity news article challenging... 1 0 0 0 0 0
3518 On a problem of Bharanedhar and Ponnusamy invo... paper give negative answer problem presented b... 0 0 1 0 0 0
3519 Projecting UK Mortality using Bayesian General... forecasts mortality provide vital information ... 0 0 0 1 0 0
3520 The Case for Meta-Cognitive Machine Learning: ... machine learning usually defined behaviourist ... 1 0 0 1 0 0
3521 Bulk viscosity model for near-equilibrium acou... acoustic wave attenuation due vibrational rota... 0 1 0 0 0 0
3522 A Lagrangian fluctuation-dissipation relation ... lagrangian fluctuationdissipation relation der... 0 1 0 0 0 0
3523 Model Selection for Explosive Models paper examines limit properties information cr... 0 0 1 1 0 0
3524 Deep Energy Estimator Networks density estimation fundamental problem statist... 0 0 0 1 0 0
3525 A Scale Free Algorithm for Stochastic Bandits ... existing strategies finitearmed stochastic ban... 0 0 0 1 0 0
3526 An Asynchronous Parallel Approach to Sparse Re... asynchronous parallel computing sparse recover... 1 0 0 0 0 0
3527 Cross-Entropy Loss and Low-Rank Features Have ... stateoftheart neural networks vulnerable adver... 1 0 0 1 0 0
3528 Parametrizing modified gravity for cosmologica... one challenges testing gravity cosmology vast ... 0 1 0 0 0 0
3529 Inductive Freeness of Ziegler's Canonical Mult... let free hyperplane arrangement ziegler showed... 0 0 1 0 0 0
3530 Toward III-V/Si co-integration by controlling ... integration iiiv silicon still hot topic open ... 0 1 0 0 0 0
3531 Proceedings XVI Jornadas sobre Programación y ... volume contains selection papers presented xvi... 1 0 0 0 0 0
3532 The proximal point algorithm in geodesic space... investigate asymptotic behavior sequences gene... 0 0 1 0 0 0
3533 Spatio-temporal canards in neural field equations canards special solutions ordinary differentia... 0 1 1 0 0 0
3534 Counterfactuals, indicative conditionals, and ... paper study selected argument forms involving ... 1 0 1 0 0 0
3535 Efficient Convolutional Network Learning using... propose dtcwt scatternet convolutional neural ... 1 0 0 1 0 0
3536 The $r$th moment of the divisor function: an e... let taun number divisors n give elementary pro... 0 0 1 0 0 0
3537 Liu-type Shrinkage Estimations in Linear Models study present preliminary test steintype posit... 0 0 1 1 0 0
3538 Data-Dependent Coresets for Compressing Neural... present efficient coresetsbased neural network... 0 0 0 1 0 0
3539 Active Galactic Nuclei: what's in a name? active galactic nuclei agn energetic astrophys... 0 1 0 0 0 0
3540 Fixed points of Legendre-Fenchel type transforms recent result characterizes fully order revers... 0 0 1 0 0 0
3541 High-Dimensional Materials and Process Optimiz... optimization composition processing obtain mat... 0 1 0 1 0 0
3542 Two Posets of Noncrossing Partitions Coming Fr... consider noncrossing set partitions nelement s... 0 0 1 0 0 0
3543 Semi-supervised model-based clustering with co... paper focus finding clusters partially categor... 1 0 0 1 0 0
3544 Local White Matter Architecture Defines Functi... large bundles myelinated axons called white ma... 0 0 0 1 1 0
3545 An upper bound on tricolored ordered sum-free ... present strengthening lemma lower bound slice ... 0 0 1 0 0 0
3546 The effect of the spatial domain in FANOVA mod... functional analysis variance fanova hilbertval... 0 0 1 1 0 0
3547 Audio to Body Dynamics present method gets input audio violin piano p... 1 0 0 0 0 0
3548 Detecting causal associations in large nonline... identifying causal relationships observational... 0 1 0 1 0 0
3549 Controlling a remotely located Robot using Han... telepresence necessity present time cant reach... 1 0 0 0 0 0
3550 Hybrid Machine Learning Approach to Popularity... industry video content providers vod iptv pred... 1 0 0 1 0 0
3551 Vaught's Two-Cardinal Theorem and Quasi-Minima... prove following continuous analogue vaughts tw... 0 0 1 0 0 0
3552 Spectral Calibration of the Fluorescence Teles... present novel method measure precisely relativ... 0 1 0 0 0 0
3553 Two properties of Müntz spaces show mntz spaces subspaces c contain asymptoti... 0 0 1 0 0 0
3554 Rational approximations to the zeta function article describes sequence rational functions ... 0 0 1 0 0 0
3555 The COS-Halos Survey: Metallicities in the Low... analyze new farultraviolet spectra quasars z c... 0 1 0 0 0 0
3556 On Quaternionic Tori and their Moduli Spaces quaternionic tori defined quotients skew field... 0 0 1 0 0 0
3557 GIER: A Danish computer from 1961 with a role ... danish computer gier played vital role develop... 0 1 0 0 0 0
3558 Deep Bayesian Active Learning for Natural Lang... several recent papers investigate active learn... 0 0 0 1 0 0
3559 Analogy and duality between random channel cod... write unified fashion using rp q random coding... 1 0 0 0 0 0
3560 Towards Bursting Filter Bubble via Contextual ... rising topic computational journalism enhance ... 0 0 0 1 0 0
3561 Nonlinear Loewy Factorizable Algebraic ODEs an... paper introduce certain nth order nonlinear lo... 0 0 1 0 0 0
3562 Grounding Symbols in Multi-Modal Instructions robots begin cohabit humans semistructured env... 1 0 0 0 0 0
3563 Morphometric analysis in gamma-ray astronomy u... pursue novel morphometric analysis detect sour... 0 1 0 0 0 0
3564 An Event-based Fast Movement Detection Algorit... work develops tracking system based eventbased... 1 0 0 0 0 0
3565 $\textsf{S}^3T$: An Efficient Score-Statistic ... present efficient score statistic called texts... 0 0 1 1 0 0
3566 Relaxing Integrity Requirements for Attack-Res... increase network connectivity also resulted se... 1 0 1 0 0 0
3567 Cross-Lingual Cross-Platform Rumor Verificatio... increasing popularity smart devices rumors mul... 1 0 0 0 0 0
3568 Convergence of the Kähler-Ricci iteration ricci iteration discrete analogue ricci flow a... 0 0 1 0 0 0
3569 Joint estimation of genetic and parent-of-orig... rna sequencing allows one study allelic imbala... 0 0 0 1 0 0
3570 Consistency Analysis for Massively Inconsisten... boundtobound data collaboration bbdc provides ... 1 0 1 0 0 0
3571 Hydra: a C++11 framework for data analysis in ... hydra headeronly templated ccompliant framewor... 1 1 0 0 0 0
3572 Analysis of dropout learning regarded as ensem... deep learning stateoftheart fields visual obje... 1 0 0 1 0 0
3573 Spatially-resolved Brillouin spectroscopy reve... mounting evidence connects biomechanical prope... 0 0 0 0 1 0
3574 Combining Symbolic Execution and Model Checkin... message passing interface mpi standard paradig... 1 0 0 0 0 0
3575 An Improved Modified Cholesky Decomposition Me... modified cholesky decomposition commonly used ... 0 0 0 1 0 0
3576 Self-exciting Point Processes: Infections and ... comment reinharts review selfexciting spatiote... 0 0 0 1 0 0
3577 Magnetism and charge density waves in RNiC$_2$... compared magnetic transport galvanomagnetic sp... 0 1 0 0 0 0
3578 Conjoined constraints on modified gravity from... paper present conjoined constraints several co... 0 1 0 0 0 0
3579 Coaxial collisions of a vortex ring and a sphe... dynamics circular thin vortex ring sphere movi... 0 1 0 0 0 0
3580 Cosmic viscosity as a remedy for tension betwe... measurements sigma large scale structure obser... 0 1 0 0 0 0
3581 A probabilistic approach to emission-line gala... invoke gaussian mixture model gmm jointly anal... 0 1 0 1 0 0
3582 Quantum repeaters with individual rare-earth i... present quantum repeater scheme based individu... 0 1 0 0 0 0
3583 Questions and dependency in intuitionistic logic recent years logic questions dependencies inve... 1 0 1 0 0 0
3584 Translations: generalizing relative expressive... strong demand precise means comparison logics ... 1 0 1 0 0 0
3585 Learning Aided Optimization for Energy Harvest... paper considers utility optimal power control ... 1 0 0 0 0 0
3586 Absence of long range order in the frustrated ... magnetic frustration low dimensionality preven... 0 1 0 0 0 0
3587 A class of multi-resolution approximations for... gaussian processes popular flexible models spa... 0 0 0 1 0 0
3588 Origin of Operating Voltage Increase in InGaN-... attempt elucidate operating voltage increase i... 0 1 0 0 0 0
3589 Emergence of Selective Invariance in Hierarchi... many theories emerged investigate variance gen... 1 0 0 0 0 0
3590 Virtual retraction and Howson's theorem in pro... show every finitely generated closed subgroup ... 0 0 1 0 0 0
3591 Convolutional Dictionary Learning: A Comparati... convolutional sparse representations form spar... 1 0 0 1 0 0
3592 Replication Ethics suppose future technology enables consciously ... 1 1 0 0 0 0
3593 PSYM-WIDE: a survey for large-separation plane... present results directimaging survey large sep... 0 1 0 0 0 0
3594 Boolean dimension and tree-width dimension key measure complexity partially ord... 1 0 0 0 0 0
3595 Drawing Planar Graphs with Few Geometric Primi... define emphvisual complexity plane graph drawi... 1 0 0 0 0 0
3596 On the nature of the candidate T-Tauri star V5... report new multicolour photometry highresoluti... 0 1 0 0 0 0
3597 3D-PRNN: Generating Shape Primitives with Recu... success various applications including robotic... 1 0 0 1 0 0
3598 Counting the number of distinct distances of e... defect valued field extensions major obstacle ... 0 0 1 0 0 0
3599 On the Robustness of the CVPR 2018 White-Box A... neural networks known vulnerable adversarial e... 0 0 0 1 0 0
3600 Statistical Inference with Local Optima study statistical properties estimator derived... 0 0 0 1 0 0
3601 Discovery of Shifting Patterns in Sequence Cla... paper investigate multivariate sequence classi... 1 0 0 1 0 0
3602 Virtual Network Migration on the GENI Wide-Are... virtual network vn contains collection virtual... 1 0 0 0 0 0
3603 Communication-efficient Algorithm for Distribu... propose communicationally computationally effi... 0 0 0 1 0 0
3604 A Bayesian Estimation for the Fractional Order... extraction natural gas earth shown governed di... 0 0 0 1 0 0
3605 Numerical simulations of magnetic billiards in... present numerical simulations magnetic billiar... 0 1 1 0 0 0
3606 On Lasso refitting strategies wellknow drawback lpenalized estimators system... 0 0 1 1 0 0
3607 Supercharacters and the discrete Fourier, cosi... using supercharacter theory identify matrices ... 0 0 1 0 0 0
3608 A connection between MAX $κ$-CUT and the inhom... study asymptotic behavior max kappacut family ... 0 0 1 0 0 0
3609 Kernel method for persistence diagrams via ker... topological data analysis emerging mathematica... 0 0 1 1 0 0
3610 Time Complexity of Constraint Satisfaction via... exponentialtime hypothesis eth states sat solv... 1 0 0 0 0 0
3611 Novel Structured Low-rank algorithm to recover... propose structured low rank matrix completion ... 1 0 0 0 0 0
3612 Vector bundles and modular forms for Fuchsian ... article lays foundations study modular forms t... 0 0 1 0 0 0
3613 Indoor UAV scheduling with Restful Task Assign... research uav scheduling obtained emerging inte... 1 0 0 0 0 0
3614 Magnetic behavior of new compounds, Gd3RuSn6 a... report temperature dependence dc magnetization... 0 1 0 0 0 0
3615 Stochastic Assume-Guarantee Contracts for Cybe... develop assumeguarantee contract framework des... 1 0 0 0 0 0
3616 Ergodic Exploration of Distributed Information paper presents active search trajectory synthe... 1 0 0 0 0 0
3617 Manipulating magnetism by ultrafast control of... recent years optical control exchange interact... 0 1 0 0 0 0
3618 Towards Visual Explanations for Convolutional ... predictive power neural networks often costs m... 1 0 0 1 0 0
3619 FBG-Based Control of a Continuum Manipulator I... tracking controlling shape continuum dexterous... 1 0 0 0 0 0
3620 Generalized variational inequalities for maxim... paper present new results existence solutions ... 0 0 1 0 0 0
3621 Chord Label Personalization through Deep Learn... increasing accuracy automatic chord estimation... 1 0 0 0 0 0
3622 Classification of Questions and Learning Outco... blooms taxonomy bt used classify objectives le... 1 0 0 0 0 0
3623 Symmetric Rank Covariances: a Generalised Fram... need test whether two random vectors independe... 0 0 1 1 0 0
3624 Linear magnetoresistance in the charge density... report measurements magnetoresistance charge d... 0 1 0 0 0 0
3625 Two classes of number fields with a non-princi... paper introduces two classes totally real quar... 0 0 1 0 0 0
3626 Diamond-colored distributive lattices, move-mi... present elementary foundational results concer... 0 0 1 0 0 0
3627 Hidden Truncation Hyperbolic Distributions, Fi... hidden truncation hyperbolic hth distribution ... 0 0 0 1 0 0
3628 No evidence for a significant AGN contribution... reinvestigate claimed sample xray detected act... 0 1 0 0 0 0
3629 Finding Crash-Consistency Bugs with Bounded Bl... present new approach testing filesystem crash ... 1 0 0 0 0 0
3630 Periodic solutions to the Cahn-Hilliard equati... paper construct entire solutions cahnhilliard ... 0 0 1 0 0 0
3631 On the kinetic equation in Zakharov's wave tur... wave turbulence equation effective kinetic equ... 0 1 1 0 0 0
3632 Regularizing Model Complexity and Label Struct... multilabel text classification popular machine... 1 0 0 1 0 0
3633 Network Design with Probabilistic Capacities consider network design problem random arc cap... 0 0 1 0 0 0
3634 Nanopteron solutions of diatomic Fermi-Pasta-U... consider infinite chain masses connected neare... 0 0 1 0 0 0
3635 Steering Orbital Optimization out of Local Min... general procedure underlying hartreefock kohns... 0 1 0 0 0 0
3636 Mapping stellar content to dark matter halos -... recent studies suggest quenching properties ga... 0 1 0 0 0 0
3637 Blue Supergiant X-ray Binaries in the Nearby D... young starburst galaxies xray population expec... 0 1 0 0 0 0
3638 ConsiDroid: A Concolic-based Tool for Detectin... paper present concolic execution technique det... 1 0 0 0 0 0
3639 Mesh Model (MeMo): A Systematic Approach to Ag... innovation entrepreneurship special role play ... 1 0 0 0 0 0
3640 Alternative derivation of exact law for compre... exact law fully developed homogeneous compress... 0 1 0 0 0 0
3641 CMS-HF Calorimeter Upgrade for Run II cmshf calorimeters undergoing major upgrade la... 0 1 0 0 0 0
3642 Is Flat Fielding Safe for Precision CCD Astron... ambitious goals precision cosmology widefield ... 0 1 0 0 0 0
3643 Gas removal in the Ursa Minor galaxy: linking ... present results noncosmological threedimension... 0 1 0 0 0 0
3644 Identifiability and Estimation of Structural V... causal inference multivariate time series chal... 0 0 0 1 0 0
3645 Towards Practical Differential Privacy for SQL... differential privacy promises enable general d... 1 0 0 0 0 0
3646 Adapting Engineering Education to Industrie 4.... industrie originally future vision described h... 1 0 0 0 0 0
3647 A Survey on QoE-oriented Wireless Resources Sc... future wireless systems expected provide wide ... 1 0 0 0 0 0
3648 Wandering domains for diffeomorphisms of the k... show ck diffeomorphism ktorus semiconjugate mi... 0 0 1 0 0 0
3649 Orthogonal Statistical Learning provide excess risk guarantees statistical lea... 1 0 1 1 0 0
3650 Disentangling group and link persistence in Dy... study inference model dynamic networks communi... 1 1 0 1 0 0
3651 A Reactive and Efficient Walking Pattern Gener... available possibilities prevent biped robot fa... 1 0 0 0 0 0
3652 Frequentist Consistency of Variational Bayes key challenge modern bayesian statistics perfo... 1 0 1 1 0 0
3653 Quantum variance on quaternion algebras, II method determining quantum variance asymptotic... 0 0 1 0 0 0
3654 An intracardiac electrogram model to bridge vi... virtual heart models proposed enhance safety i... 1 1 0 0 0 0
3655 A note on conditional versus joint uncondition... consistency bootstrap resampling scheme classi... 0 0 1 1 0 0
3656 Dynamic scaling analysis of the long-range RKK... dynamic scaling analyses linear nonlinear ac s... 0 1 0 0 0 0
3657 A Bayesian hierarchical model for related dens... bayesian hierarchical models used share inform... 0 0 0 1 0 0
3658 Groups of fast homeomorphisms of the interval ... adapt pingpong lemma historically used study f... 0 0 1 0 0 0
3659 The CodRep Machine Learning on Source Code Com... codrep machine learning competition source cod... 1 0 0 0 0 0
3660 Flag representations of mixed volumes and mixe... mixed volumes vkdots kd convex bodies kdots kd... 0 0 1 0 0 0
3661 Learning Hard Alignments with Variational Infe... recently significant interest hard attention m... 1 0 0 1 0 0
3662 A New Sparse and Robust Adaptive Lasso Estimat... many problems signal processing require findin... 0 0 1 1 0 0
3663 Systematic Quantum Mechanical Region Determina... hybrid quantum mechanicalmolecular mechanical ... 0 1 0 0 0 0
3664 Comparison of electricity market designs for s... study develop theoretical model strategic equi... 0 1 0 0 0 0
3665 Look Mum, no VM Exits! (Almost) multicore cpus standard component many modern ... 1 0 0 0 0 0
3666 Harnessing Structures in Big Data via Guarante... lowrank modeling plays pivotal role signal pro... 0 0 0 1 0 0
3667 Automatic Segmentation of the Left Ventricle i... accurate delineation left ventricle lv importa... 1 1 0 0 0 0
3668 Maximal Jacobian-based Saliency Map Attack jacobianbased saliency map attack family adver... 0 0 0 1 0 0
3669 Least-Squares Temporal Difference Learning for... reinforcement learning rl successfully used so... 1 0 0 1 0 0
3670 VERITAS long term monitoring of Gamma-Ray emis... bl lacertae prototype blazar subclass known bl... 0 1 0 0 0 0
3671 Spin Susceptibility of the Topological Superco... experiment theory indicate upt topological sup... 0 1 0 0 0 0
3672 Nano-jet Related to Bessel Beams and to Super-... appearance nanojet microsphere optical experim... 0 1 0 0 0 0
3673 Factorization systems on (stable) derivators define triangulated factorization systems tria... 0 0 1 0 0 0
3674 Dynamic Provable Data Possession Protocols wit... cloud storage services become accessible used ... 1 0 0 0 0 0
3675 Robustness of persistent currents in two-dimen... consider twodimensional dirac quantum ring sys... 0 1 0 0 0 0
3676 On the arithmetically Cohen-Macaulay property ... study arithmetically cohenmacaulay acm propert... 0 0 1 0 0 0
3677 Fitting 3D Shapes from Partial and Noisy Point... point clouds obtained photogrammetry noisy inc... 1 0 0 0 1 0
3678 Unique Information and Secret Key Decompositions unique information ui information measure quan... 1 0 0 0 0 0
3679 Decomposition Algorithm for Distributionally R... study distributionally robust optimization dro... 0 0 1 0 0 0
3680 PD-ML-Lite: Private Distributed Machine Learni... privacy major issue learning distributed data ... 1 0 0 1 0 0
3681 ISS Property with Respect to Boundary Disturba... paper deals establishment inputtostate stabili... 1 0 0 0 0 0
3682 English-Japanese Neural Machine Translation wi... neural machine translation nmt recently become... 1 0 0 0 0 0
3683 Consistency Guarantees for Permutation-Based C... bayesian networks directed acyclic graph dag m... 0 0 1 1 0 0
3684 TriviaQA: A Large Scale Distantly Supervised C... present triviaqa challenging reading comprehen... 1 0 0 0 0 0
3685 Optimizing Node Discovery on Networks: Problem... many people dream become famous youtube video ... 1 0 0 0 0 0
3686 Some properties of h-MN-convexity and Jensen's... work introduce class hrmmnconvex functions gen... 0 0 1 0 0 0
3687 Impact of Traditional Sparse Optimizations on ... achieving high performance sparse applications... 1 0 0 0 0 0
3688 Finding Bottlenecks: Predicting Student Attrit... pressure increase graduation rates reduce time... 1 0 0 1 0 0
3689 Chemical evolution of 244Pu in the solar vicin... meteoritic abundances rprocess elements analyz... 0 1 0 0 0 0
3690 SAVITR: A System for Real-time Location Extrac... present savitr system leverages information po... 1 0 0 0 0 0
3691 Fractional Driven Damped Oscillator resonances associated fractional damped oscill... 0 1 0 0 0 0
3692 Bootstrap confidence sets for spectral project... let xldotsxn iid sample mathbbrp zero mean cov... 0 0 1 1 0 0
3693 Locally recoverable codes from algebraic curve... locally recoverable code code finite alphabet ... 1 0 1 0 0 0
3694 Specification properties on uniform spaces following text introduce specification propert... 0 0 1 0 0 0
3695 Tidal tails around the outer halo globular clu... report discovery tidal tails around two outer ... 0 1 0 0 0 0
3696 Learning by Playing - Solving Sparse Reward Ta... propose scheduled auxiliary control sacx new l... 1 0 0 1 0 0
3697 An Infinite Hidden Markov Model With Similarit... describe generalization hierarchical dirichlet... 1 0 0 1 0 0
3698 Methods for Estimation of Convex Sets framework shape constrained estimation review ... 0 0 1 1 0 0
3699 Dynamics of Charged Bulk Viscous Collapsing Cy... paper explored effects dissipation dynamics ch... 0 1 0 0 0 0
3700 An Invitation to Polynomiography via Exponenti... subject polynomiography deals algorithmic visu... 1 0 1 0 0 0
3701 Towards Comfortable Cycling: A Practical Appro... brainer using bicycles commute sustainable for... 1 0 0 0 0 0
3702 Comparison moduli spaces of Riemann surfaces define kind moduli space nested surfaces mappi... 0 0 1 0 0 0
3703 Training a Neural Network in a Low-Resource Se... manually labeled corpora expensive create ofte... 0 0 0 1 0 0
3704 Prior-aware Dual Decomposition: Document-speci... spectral topic modeling algorithms operate mat... 1 0 0 0 0 0
3705 Spectra of Earth-like Planets Through Geologic... future observations terrestrial exoplanet atmo... 0 1 0 0 0 0
3706 Empathy in Bimatrix Games although definition empathetic preferences exa... 1 0 0 0 0 0
3707 Free transport for convex potentials construct noncommutative analogs transport map... 0 0 1 0 0 0
3708 The Trace Criterion for Kernel Bandwidth Selec... support vector data description svdd popular a... 1 0 0 0 0 0
3709 Chemical exfoliation of MoS2 leads to semicond... trigonal phase existing small patches chemical... 0 1 0 0 0 0
3710 A note on the approximate admissibility of reg... study problem estimating unknown vector theta ... 0 0 1 1 0 0
3711 Simple labeled graph $C^*$-algebras are associ... labeled graph calgebra mean calgebra associate... 0 0 1 0 0 0
3712 Extracting Epistatic Interactions in Type 2 Di... diabetes leading worldwide public health conce... 0 0 0 1 0 0
3713 A Bootstrap Method for Error Estimation in Ran... recent years randomized methods numerical line... 1 0 0 1 0 0
3714 Results of measurements of the flux of albedo ... results investigations nearhorizontal muons ra... 0 1 0 0 0 0
3715 Nanoscale superconducting memory based on the ... demand lowdissipation nanoscale memory devices... 0 1 0 0 0 0
3716 The Autonomic Architecture of the Licas System licas lightweight internetbased communication ... 1 0 0 0 0 0
3717 Some Characterizations on the Normalized Lomme... paper introduce new technique determining nece... 0 0 1 0 0 0
3718 Applied Evaluative Informetrics: Part 1 manuscript preprint version part general intro... 1 0 0 0 0 0
3719 General multilevel Monte Carlo methods for pri... describe general multilevel monte carlo method... 0 0 0 0 0 1
3720 Medical applications of diamond magnetometry: ... sensing magnetic fields important applications... 0 1 0 0 0 0
3721 On the origin of the hydraulic jump in a thin ... century believed hydraulic jumps created due g... 0 1 0 0 0 0
3722 Discovery of Complex Anomalous Patterns of Sex... sexual violence product organized crime social... 0 0 0 1 0 0
3723 Using Social Network Information in Bayesian T... investigate problem truth discovery based opin... 1 0 0 1 0 0
3724 IVOA Recommendation: HiPS - Hierarchical Progr... document presents hips hierarchical scheme des... 0 1 0 0 0 0
3725 Mammography Assessment using Multi-Scale Deep ... applying deep learning methods mammography ass... 0 0 0 1 0 0
3726 Studies to Understand and Optimize the Perform... order optimize performance crv reflection stud... 0 1 0 0 0 0
3727 Linear Parameter Varying Representation of a c... linear parametervarying lpv models form powerf... 1 0 0 0 0 0
3728 Kinetic and radiative power from optically thi... perform set general relativistic radiative mag... 0 1 0 0 0 0
3729 First-Principles Many-Body Investigation of Co... correlated oxide heterostructures pose challen... 0 1 0 0 0 0
3730 Faster Boosting with Smaller Memory two stateoftheart implementations boosted tree... 1 0 0 1 0 0
3731 Deep Structured Learning for Facial Action Uni... consider task automated estimation facial expr... 1 0 0 0 0 0
3732 Placing the spotted T Tauri star LkCa 4 on an ... ages masses young stars often estimated compar... 0 1 0 0 0 0
3733 Coexistence of pressure-induced structural pha... report study structural phase transitions indu... 0 1 0 0 0 0
3734 On the Complexity of the Weighted Fused Lasso solution path fused lasso ndimensional input p... 0 0 0 1 0 0
3735 Prediction of Stable Ground-State Lithium Poly... hydrogenrich compounds important understanding... 0 1 0 0 0 0
3736 Analytical methods for vacuum simulations in h... future circular collider fcc currently design ... 0 1 0 0 0 0
3737 Global solutions to reaction-diffusion equatio... let xitx denote spacetime white noise consider... 0 0 1 0 0 0
3738 On the semigroup rank of a group arbitrary group g shown either semigroup rank ... 0 0 1 0 0 0
3739 A time series distance measure for efficient c... starting dataset inputoutput time series gener... 1 0 0 1 0 0
3740 Parametric Analysis of Cherenkov Light LDF fro... paper propose kneelike approximation lateral d... 0 1 0 0 0 0
3741 On the primary spacing and microsegregation of... study alloy phasefield model used simulate sol... 0 1 0 0 0 0
3742 An Alternative Approach to Functional Linear P... previously proposed partial quantile regressio... 0 0 1 1 0 0
3743 Parallel mining of time-faded heavy hitters present pfdcmss novel messagepassing based par... 1 0 0 0 0 0
3744 On a Minkowski-like inequality for asymptotica... minkowski inequality classical inequality diff... 0 0 1 0 0 0
3745 Instantaneous Arbitrage and the CAPM paper studies concept instantaneous arbitrage ... 0 0 0 0 0 1
3746 On the Complexity of Approximating Wasserstein... study complexity approximating wassertein bary... 1 0 0 0 0 0
3747 Witnessing Adversarial Training in Reproducing... modern implicit generative models generative a... 1 0 0 1 0 0
3748 Heterogeneous Transfer Learning: An Unsupervis... transfer learning leverages knowledge one doma... 0 0 0 1 0 0
3749 Diffusion transformations, Black-Scholes equat... develop new class path transformations onedime... 0 0 1 0 0 0
3750 Generation of concept-representative symbols visual representation concepts ideas use simpl... 1 0 0 0 0 0
3751 Quantitative results using variants of Schmidt... schmidts game generally used deduce qualitativ... 0 0 1 0 0 0
3752 Sublogarithmic Distributed Algorithms for Lová... locally checkable labeling lcl problems includ... 1 0 0 0 0 0
3753 Continuous User Authentication via Unlabeled P... paper propose novel continuous authentication ... 1 0 0 0 0 0
3754 Testing isomorphism of lattices over CM-orders cmorder reduced order equipped involution mimi... 1 0 1 0 0 0
3755 How strong are correlations in strongly recurr... crosscorrelations activity neural networks com... 0 0 0 0 1 0
3756 JSON: data model, query languages and schema s... despite fact json currently one popular format... 1 0 0 0 0 0
3757 A six-factor asset pricing model present study introduce human capital componen... 0 0 0 0 0 1
3758 Director Field Analysis (DFA): Exploring Local... diffusion tensor imaging dti high angular reso... 1 1 0 0 0 0
3759 A Multi-Objective Deep Reinforcement Learning ... paper presents new multiobjective deep reinfor... 0 0 0 1 0 0
3760 Advantages of versatile neural-network decodin... finding optimal correction errors generic stab... 0 0 0 1 0 0
3761 A retrieval-based dialogue system utilizing ut... finding semantically rich computerunderstandab... 1 0 0 0 0 0
3762 Show, Attend and Interact: Perceivable Human-R... safe natural effective humanrobot social inter... 1 0 0 1 0 0
3763 Sparse Gaussian Processes for Continuous-Time ... continuoustime trajectory representations powe... 1 0 0 0 0 0
3764 Testing homogeneity of proportions from sparse... paper consider testing homogeneity proportions... 0 0 1 1 0 0
3765 Henkin measures for the Drury-Arveson space exhibit borel probability measures unit sphere... 0 0 1 0 0 0
3766 Robust Subspace Learning: Robust PCA, Robust S... pca one widely used dimension reduction techni... 0 0 0 1 0 0
3767 Discriminative Bimodal Networks for Visual Loc... associating image regions text queries recentl... 1 0 0 1 0 0
3768 The failure of rational dilation on the symmet... open closed textitsymmetrized polydisc textits... 0 0 1 0 0 0
3769 Particle-without-Particle: a practical pseudos... partial differential equations distributional ... 0 0 0 0 1 1
3770 X-Cube Fracton Model on Generic Lattices: Phas... fracton order new kind quantum order character... 0 1 0 0 0 0
3771 Genetic Algorithm for Epidemic Mitigation by R... minseiscluster optimization problem aims minim... 1 0 1 0 0 0
3772 Angpow: a software for the fast computation of... statistical distribution galaxies powerful pro... 0 1 0 0 0 0
3773 Robust and Flexible Estimation of Stochastic M... causal mediation analysis improve understandin... 0 0 0 1 0 0
3774 Radial anisotropy in omega Cen limiting the ro... finding intermediatemass black hole imbh globu... 0 1 0 0 0 0
3775 The Feeling of Success: Does Touch Sensing Hel... successful grasp requires careful balancing co... 1 0 0 1 0 0
3776 On the essential spectrum of elliptic differen... let mathcala calgebra bounded uniformly contin... 0 0 1 0 0 0
3777 Shrinking Horizon Model Predictive Control wit... present shrinking horizon model predictive con... 1 0 1 0 0 0
3778 Novel processes and metrics for a scientific e... scientific evaluation determinant scientists i... 1 0 0 0 0 0
3779 Topological quantization of energy transport i... topological effects typically discussed contex... 0 1 0 0 0 0
3780 Environmental impact assessment for climate ch... high degree consensus exists climate sciences ... 0 1 0 0 0 0
3781 Nested Convex Bodies are Chaseable convex body chasing problem given initial poin... 1 0 0 0 0 0
3782 Analytic properties of approximate lattices introduce notion cocycleinduction strong unifo... 0 0 1 0 0 0
3783 Auxiliary Variables in TLA+ auxiliary variables often needed verifying imp... 1 0 0 0 0 0
3784 A Homological model for the coloured Jones pol... paper present homological model coloured jones... 0 0 1 0 0 0
3785 Extremes of threshold-dependent Gaussian proce... contribution concerned asymptotic behaviour ut... 0 0 1 1 0 0
3786 The null hypothesis of common jumps in case of... paper proposes novel tests absence jumps univa... 0 0 1 0 0 0
3787 Property Safety Stock Policy for Correlated Co... deriving optimal safety stock quantity meet cu... 0 0 1 1 0 0
3788 Carleman estimates for the time-fractional adv... article prove carleman estimates generalized t... 0 0 1 0 0 0
3789 Generating and Aligning from Data Geometries w... unsupervised domain mapping attracted substant... 1 0 0 1 0 0
3790 Wolf-Rayet spin at low metallicity and its imp... spin wolfrayet wr stars low metallicity z rele... 0 1 0 0 0 0
3791 What Drives the International Development Agen... surprisingly little known agenda setting inter... 1 0 0 0 0 0
3792 Randomizing growing networks with a time-respe... complex networks often used represent systems ... 1 1 0 0 0 0
3793 High-dimensional posterior consistency for hie... choice tuning parameter bayesian variable sele... 0 0 1 1 0 0
3794 A metric of mutual energy and unlikely interse... introduce metric mutual energy adelic measures... 0 0 1 0 0 0
3795 Volvox barberi flocks, forming near-optimal, t... volvox barberi multicellular green alga formin... 0 0 0 0 1 0
3796 Learning to Identify Ambiguous and Misleading ... accuracy one basic principles journalism howev... 1 0 0 0 0 0
3797 Evidence of Complex Contagion of Information i... recently become possible study dynamics inform... 1 1 0 0 0 0
3798 Birecurrent sets set called recurrent minimal automaton strongl... 1 0 1 0 0 0
3799 Mobile Robotic Fabrication at 1:1 scale: the I... paper presents concept situ fabricator mobile ... 1 0 0 0 0 0
3800 The path to high-energy electron-positron coll... describe road led construction exploitation el... 0 1 0 0 0 0
3801 Lazarsfeld-Mukai Reflexive Sheaves and their S... consider ample globally generated line bundle ... 0 0 1 0 0 0
3802 Dimensionality reduction for acoustic vehicle ... propose method recognizing moving vehicles usi... 1 0 0 1 0 0
3803 Efficient Estimation of Linear Functionals of ... study principal component analysis pca mean ze... 0 0 1 1 0 0
3804 A stroll in the jungle of error bounds aim paper give short overview error bounds pro... 0 0 1 0 0 0
3805 Variational obstacle avoidance problem on Riem... introduce variational obstacle avoidance probl... 1 0 1 0 0 0
3806 An Extension of Heron's Formula paper introduces extension herons formula appr... 0 0 1 0 0 0
3807 Learning Less-Overlapping Representations representation learning rl make learned repres... 1 0 0 1 0 0
3808 LDPC Code Design for Distributed Storage: Bala... distributed storage systems suffer significant... 1 0 0 0 0 0
3809 Structural, magnetic, and electronic propertie... report optimization process synthesize epitaxi... 0 1 0 0 0 0
3810 GPU-Based High-Performance Imaging for Mingant... dedicated solar radio interferometer mingantu ... 0 1 0 0 0 0
3811 Deep Voice 3: Scaling Text-to-Speech with Conv... present deep voice fullyconvolutional attentio... 1 0 0 0 0 0
3812 Ubenwa: Cry-based Diagnosis of Birth Asphyxia every year million newborns die within first m... 1 0 0 1 0 0
3813 Fluid-Structure Interaction with the Entropic ... propose novel fluidstructure interaction fsi s... 0 1 0 0 0 0
3814 Two provably consistent divide and conquer clu... article advance divideandconquer strategies so... 0 0 1 1 0 0
3815 Feature-based visual odometry prior for real-t... robust fast motion estimation mapping key prer... 1 0 0 0 0 0
3816 Effective Description of Higher-Order Scalar-T... existing theories dark energy andor modified g... 0 1 0 0 0 0
3817 Compressive Sensing Approaches for Autonomous ... video analytics requires operating large amoun... 1 0 0 1 0 0
3818 Making Neural QA as Simple as Possible but not... recent development largescale question answeri... 1 0 0 0 0 0
3819 Finite-dimensional Gaussian approximation with... introducing inequality constraints gaussian pr... 1 0 0 1 0 0
3820 A Generalization of Quasi-twisted Codes: Multi... cyclic codes various generalizations quasitwis... 1 0 1 0 0 0
3821 On the Successive Cancellation Decoding of Pol... method efficiently successive cancellation sc ... 1 0 1 0 0 0
3822 OpenML: An R Package to Connect to the Machine... openml online machine learning platform resear... 1 0 0 1 0 0
3823 Discovering Latent Patterns of Urban Cultural ... cultural activity inherent aspect urban life s... 1 0 0 1 0 0
3824 Direct mapping of the temperature and velocity... accurate measurements physical structure proto... 0 1 0 0 0 0
3825 Learning Rates for Kernel-Based Expectile Regr... conditional expectiles becoming increasingly i... 0 0 0 1 0 0
3826 Critical role of electronic correlations in de... choice solid system makes adopting crystal str... 0 1 0 0 0 0
3827 A Machine Learning Alternative to P-values paper presents alternative approach pvalues re... 1 0 0 1 0 0
3828 Image Registration Techniques: A Survey image registration process aligning two images... 1 0 0 0 0 0
3829 Learning Whenever Learning is Possible: Univer... work initiates general study learning generali... 1 0 1 1 0 0
3830 Obstructions for three-coloring and list three... graph hfree induced subgraph isomorphic h char... 1 0 0 0 0 0
3831 Hybrid quantum-classical modeling of quantum d... design electrically driven quantum dot devices... 0 1 0 0 0 0
3832 Efficient exploration with Double Uncertain Va... paper studies directed exploration reinforceme... 1 0 0 1 0 0
3833 Auxiliary Variables for Multi-Dirichlet Priors bayesian models mix multiple dirichlet prior p... 0 0 0 1 0 0
3834 Improving and Assessing Planet Sensitivity of ... present new matched filter algorithm direct de... 0 1 0 0 0 0
3835 Numerical non-LTE 3D radiative transfer using ... nonlte radiative transfer problems computation... 0 1 0 0 0 0
3836 Test Case Prioritization Techniques for Model-... recently several test case prioritization tcp ... 1 0 0 0 0 0
3837 Magnetic order and interactions in ferrimagnet... magnetism mnsite investigated using thermodyna... 0 1 0 0 0 0
3838 On the Solution of Linear Programming Problems... big data phenomenon spawned largescale linear ... 1 0 1 0 0 0
3839 Highly accurate acoustic scattering: Isogeomet... work concerned unique combination high order l... 1 0 0 0 0 0
3840 Deep Domain Adaptation Based Video Smoke Detec... paper deep domain adaptation based method vide... 1 0 0 0 0 0
3841 NaCl crystal from salt solution with far below... ambient conditions directly observed nacl crys... 0 1 0 0 0 0
3842 Plasmonic properties of refractory titanium ni... development plasmonic metamaterial devices req... 0 1 0 0 0 0
3843 The localization transition in SU(3) gauge theory study andersonlike localization transition spe... 0 1 0 0 0 0
3844 Conformation Clustering of Long MD Protein Dyn... recent developments specialized computer hardw... 0 0 0 0 1 0
3845 Optimal Low-Rank Dynamic Mode Decomposition dynamic mode decomposition dmd emerged powerfu... 0 0 0 1 0 0
3846 Improving Community Detection by Mining Social... social relationships divided different classes... 1 0 0 0 0 0
3847 The set of quantum correlations is not closed construct linear system nonlocal game played p... 0 0 1 0 0 0
3848 Correction to the article: Floer homology and ... note corrects mistakes splicing formulas paper... 0 0 1 0 0 0
3849 Tree tribes and lower bounds for switching lemmas show tight upper lower bounds switching lemmas... 1 0 0 0 0 0
3850 Gyrokinetic ion and drift kinetic electron mod... kinetic effects electrons important long wavel... 0 1 0 0 0 0
3851 Transferring Agent Behaviors from Videos via M... major bottleneck developing general reinforcem... 1 0 0 1 0 0
3852 Learning to Segment and Represent Motion Primi... developing intelligent vehicle perform humanli... 1 0 0 0 0 0
3853 NeuralPower: Predict and Deploy Energy-Efficie... much energy consumed inference made convolutio... 1 0 0 1 0 0
3854 The Minor Fall, the Major Lift: Inferring Emot... investigate association musical chords lyrics ... 1 0 0 0 0 0
3855 Effective computation of $\mathrm{SO}(3)$ and ... propose general algorithm compute symmetry cla... 0 0 1 0 0 0
3856 Subextensions for co-induced modules using cohomological methods prove criterion em... 0 0 1 0 0 0
3857 Specht Polytopes and Specht Matroids generators classical specht module satisfy int... 0 0 1 0 0 0
3858 Existence theorems for the Cauchy problem of 2... paper investigate cauchy problem nonhomogeneou... 0 0 1 0 0 0
3859 Mass Conservative and Energy Stable Finite Dif... paper describe two fully mass conservative ene... 0 0 1 0 0 0
3860 Density-equalizing maps for simply-connected o... paper concerned problem creating flattening ma... 1 0 1 0 0 0
3861 Measuring the radius and mass of Planet Nine batygin brown suggested existence new solar sy... 0 1 0 0 0 0
3862 Efficient and principled score estimation with... propose fast method statistical guarantees lea... 1 0 0 1 0 0
3863 Small presentations of model categories and Vo... prove existence results small presentations mo... 0 0 1 0 0 0
3864 Automatic Trimap Generation for Image Matting image matting longstanding problem computation... 1 0 0 0 0 0
3865 X-ray spectral properties of seven heavily obs... present combined chandra swiftbat spectral ana... 0 1 0 0 0 0
3866 Towards the LISA Backlink: Experiment design f... lisa proposed spacebased laser interferometer ... 0 1 0 0 0 0
3867 Real-valued (Medical) Time Series Generation w... generative adversarial networks gans shown rem... 1 0 0 1 0 0
3868 Embedded eigenvalues of generalized Schrödinge... provide examples operators tdv decaying potent... 0 0 1 0 0 0
3869 Multichannel Robot Speech Recognition Database... real human robot interaction hri scenarios spe... 1 0 0 0 0 0
3870 The Algorithmic Inflection of Russian and Gene... present deterministic algorithm russian inflec... 1 0 0 0 0 0
3871 Automatic Analysis of EEGs Using Big Data and ... objective clinical decision support tool autom... 1 0 0 1 0 0
3872 Implementing a Concept Network Model concept mean different things instantiated dif... 0 0 0 0 1 0
3873 Two simple observations on representations of ... hanzer matic proved genuine unitary principal ... 0 0 1 0 0 0
3874 Spinors in Spacetime Algebra and Euclidean 4-S... article explores geometric algebra minkowski s... 0 0 1 0 0 0
3875 Near-sphere lattices with constant nonlocal me... concerned unbounded sets mathbbrn whose bounda... 0 0 1 0 0 0
3876 Stability, convergence, and limit cycles in so... mathematical models physiological processes ai... 1 0 0 0 0 0
3877 Poisson multi-Bernoulli mixture filter: direct... provide derivation poisson multibernoulli mixt... 1 0 0 1 0 0
3878 Surface magnetism in a chiral d-wave supercond... surface properties examined chiral dwave super... 0 1 0 0 0 0
3879 Penetrating a Social Network: The Follow-back ... modern threats emerged prevalence social netwo... 1 0 0 1 0 0
3880 Universality of density waves in p-doped La2Cu... contribution ions antiferromagnetism laxaexcuo... 0 1 0 0 0 0
3881 The perceived assortativity of social networks... networks describe range social biological tech... 1 0 0 1 0 0
3882 Generalized Sheet Transition Conditions (GSTCs... used multiplescale homogenization method deriv... 0 1 0 0 0 0
3883 $k^{τ,ε}$-anonymity: Towards Privacy-Preservin... mobile network operators track subscribers via... 1 0 0 0 0 0
3884 The Taipan Galaxy Survey: Scientific Goals and... taipan multiobject spectroscopic galaxy survey... 0 1 0 0 0 0
3885 The Externalities of Exploration and How Data ... online learning algorithms widely used power s... 0 0 0 1 0 0
3886 Life-span of blowup solutions to semilinear wa... paper concerned blowup phenomena initial value... 0 0 1 0 0 0
3887 Invariant submanifolds of (LCS)n-Manifolds wit... object present paper study invariant submanifo... 0 0 1 0 0 0
3888 Iterated filtering methods for Markov process ... dynamic epidemic models proven valuable public... 0 0 1 1 0 0
3889 An Algebraic-Combinatorial Proof Technique for... paper considers problem designing maximum dist... 1 0 0 0 0 0
3890 The Word Problem of $\mathbb{Z}^n$ Is a Multip... emphword problem group g langle sigma rangle d... 1 0 1 0 0 0
3891 Rigorous proof of the Boltzmann-Gibbs distribu... models econophysics ie emerging field statisti... 0 0 1 0 0 0
3892 Stochastic population dynamics in spatially ex... spatially extended population dynamics models ... 0 1 0 0 0 0
3893 Learning Policies for Markov Decision Processe... consider problem learning policy markov decisi... 1 0 1 1 0 0
3894 Expecting the Unexpected: Training Detectors f... autonomous vehicles become everyday reality hi... 1 0 0 0 0 0
3895 The sequence of open and closed prefixes of a ... finite word closed contains factor occurs pref... 1 0 1 0 0 0
3896 Capital Regulation under Price Impacts and Dyn... construct continuous time model pricemediated ... 0 0 0 0 0 1
3897 On seaweed subalgebras and meander graphs in t... dergachev kirillov introduced subalgebras seaw... 0 0 1 0 0 0
3898 Singular Riemannian flows and characteristic n... let evendimensional oriented closed manifold s... 0 0 1 0 0 0
3899 Transformation Models in High-Dimensions transformation models important tool applied s... 0 0 1 1 0 0
3900 Rank Two Non-Commutative Laurent Phenomenon an... study polynomial generalizations kontsevich au... 0 0 1 0 0 0
3901 Faster Coordinate Descent via Adaptive Importa... coordinate descent methods employ random parti... 1 0 1 1 0 0
3902 On the role of synaptic stochasticity in train... stochasticity limited precision synaptic weigh... 1 1 0 1 0 0
3903 Secants, bitangents, and their congruences congruence surface grassmannian mathrmgrmathbb... 0 0 1 0 0 0
3904 Convergence of Stochastic Approximation Monte ... investigate behavior deviation estimator densi... 0 1 0 0 0 0
3905 On the approximation by convolution type doubl... paper prove pointwise convergence rate pointwi... 0 0 1 0 0 0
3906 Characterization of polynomials whose large po... give criterion characterizes homogeneous real ... 0 0 1 0 0 0
3907 The Moon Illusion explained by the Projective ... moon often appears larger near perceptual hori... 0 0 0 0 1 0
3908 Bloch line dynamics within moving domain walls... study fielddriven magnetic domain wall dynamic... 0 1 0 0 0 0
3909 Approaching the UCT problem via crossed produc... show uct problem separable nuclear mathrm calg... 0 0 1 0 0 0
3910 Some Remarks about the Complexity of Epidemics... recent outbreaks ebola hn infectious diseases ... 0 1 0 0 0 0
3911 Entanglement Entropy in Excited States of the ... investigate entanglement properties infinite c... 0 1 0 0 0 0
3912 Poisson-Fermi Formulation of Nonlocal Electros... present nonlocal electrostatic formulation non... 0 1 0 0 0 0
3913 Learning to Transfer transfer learning borrows knowledge source dom... 1 0 0 1 0 0
3914 Strong Metric Subregularity of Mappings in Var... although property strong metric subregularity ... 0 0 1 0 0 0
3915 Systematic Identification of LAEs for Visible ... present silverrush program strategy clustering... 0 1 0 0 0 0
3916 Experimental study of mini-magnetosphere magnetosphere ion kinetic scales minimagnetosp... 0 1 0 0 0 0
3917 Matrix KP: tropical limit and Yang-Baxter maps study soliton solutions matrix kadomtsevpetvia... 0 1 0 0 0 0
3918 Poster Abstract: LPWA-MAC - a Low Power Wide A... lowpower widearea networks lpwans successfully... 1 0 0 0 0 0
3919 Asymptotic Enumeration of Compacted Binary Trees compacted tree graph created binary tree repea... 1 0 0 0 0 0
3920 The STAR MAPS-based PiXeL detector pixel detector pxl heavy flavor tracker hft st... 0 1 0 0 0 0
3921 Complete intersection monomial curves and the ... let cbf n complete intersection monomial curve... 0 0 1 0 0 0
3922 Stable and unstable vortex knots in a trapped ... dynamics quantum vortex torus knot cal tpq sim... 0 1 0 0 0 0
3923 Design of Configurable Sequential Circuits in ... quantumdot cellular automata qca likely candid... 1 0 0 0 0 0
3924 ADINE: An Adaptive Momentum Method for Stochas... two major momentumbased techniques achieved tr... 1 0 0 1 0 0
3925 Symplectic rational $G$-surfaces and equivaria... give characterizations finite group g acting s... 0 0 1 0 0 0
3926 Biderivations of the twisted Heisenberg-Viraso... paper biderivations without skewsymmetric cond... 0 0 1 0 0 0
3927 A Data Science Approach to Understanding Resid... residents flint learned lead contaminated wate... 1 0 0 1 0 0
3928 Proximally Guided Stochastic Subgradient Metho... paper introduce stochastic projected subgradie... 1 0 1 0 0 0
3929 Solvable Integration Problems and Optimal Samp... compute integral function expectation random v... 0 0 0 1 0 0
3930 Label Stability in Multiple Instance Learning address problem emphinstance label stability m... 1 0 0 1 0 0
3931 New indicators for assessing the quality of in... computational procedures foresee structure apt... 0 0 0 0 1 0
3932 A finite element method for elliptic problems ... paper propose finite element method solving el... 0 0 1 0 0 0
3933 Sum-Product Graphical Models paper introduces new probabilistic architectur... 1 0 0 1 0 0
3934 Dependence of the Martian radiation environmen... energetic particle environment martian surface... 0 1 0 0 0 0
3935 Transactional Partitioning: A New Abstraction ... growth variety volume oltp online transaction ... 1 0 0 0 0 0
3936 Analyzing the Digital Traces of Political Mani... recently social media seen promote democratic ... 1 0 0 0 0 0
3937 Event-Radar: Real-time Local Event Detection S... local event detection use posting messages geo... 1 0 0 0 0 0
3938 Computing metric hulls in graphs prove given closure function smallest preimage... 1 0 0 0 0 0
3939 Evolutionary games on cycles with strong selec... evolutionary games graphs describe strategic i... 0 1 0 0 0 0
3940 Epsilon-shapes: characterizing, detecting and ... focus analysis planar shapes solid objects thi... 1 0 0 0 0 0
3941 Central Moment Discrepancy (CMD) for Domain-In... learning domaininvariant representations conte... 0 0 0 1 0 0
3942 Understanding Geometry of Encoder-Decoder CNNs encoderdecoder networks using convolutional ne... 1 0 0 1 0 0
3943 AutoShuffleNet: Learning Permutation Matrices ... shufflenet stateoftheart light weight convolut... 1 0 0 1 0 0
3944 ACDC: Altering Control Dependence Chains for A... failure observed primary concern developer ide... 1 0 0 0 0 0
3945 Proceedings Eighth Workshop on Intersection Ty... volume contains final revised selection papers... 1 0 0 0 0 0
3946 Microlensing of Extremely Magnified Stars near... recent observations lensed galaxies cosmologic... 0 1 0 0 0 0
3947 NFFT meets Krylov methods: Fast matrix-vector ... graph laplacian standard tool data science mac... 0 0 0 1 0 0
3948 Convergence rate of a simulated annealing algo... paper propose modified version simulated annea... 0 0 1 1 0 0
3949 Trans-allelic model for prediction of peptide:... major histocompatibility complex class two mhc... 0 0 0 1 0 0
3950 Improved Speech Reconstruction from Silent Video speechreading task inferring phonetic informat... 1 0 0 0 0 0
3951 Cluster-based Haldane state in edge-shared tet... fedotovite kcuoso candidate new quantum spin s... 0 1 0 0 0 0
3952 Super-Isolated Elliptic Curves and Abelian Sur... call simple abelian variety mathbbfp superisol... 1 0 1 0 0 0
3953 Long Short-Term Memory (LSTM) networks with je... multivariate techniques based engineered featu... 1 0 0 1 0 0
3954 Tangent measures of elliptic harmonic measure ... tangent measure blowup methods powerful tools ... 0 0 1 0 0 0
3955 Aroma: Code Recommendation via Structural Code... programmers often write code similarity existi... 1 0 0 0 0 0
3956 On Hoffman's conjectural identity paper shall prove equality zetanzetanzetan con... 0 0 1 0 0 0
3957 Parametric gain and wavelength conversion via ... demonstrate subpicosecond wavelength conversio... 0 1 0 0 0 0
3958 Doubly Accelerated Stochastic Variance Reduced... paper develop new accelerated stochastic gradi... 1 0 1 1 0 0
3959 Automatically Leveraging MapReduce Frameworks ... mapreduce popular programming paradigm develop... 1 0 0 0 0 0
3960 Estimate Sequences for Stochastic Composite Op... paper propose unified view gradientbased algor... 1 0 0 1 0 0
3961 Results of the first NaI scintillating calorim... almost three decades taup conference seen rema... 0 1 0 0 0 0
3962 Deep SNP: An End-to-end Deep Neural Network wi... diagnosis risk stratification cancer many dise... 0 0 0 0 1 0
3963 $(L,M)$-fuzzy convex structures paper notion lmfuzzy convex structures introdu... 0 0 1 0 0 0
3964 Passive Compliance Control of Aerial Manipulators paper presents passive compliance control aeri... 1 0 0 0 0 0
3965 The phase retrieval problem for solutions of t... paper consider phase retrieval problem herglot... 0 0 1 0 0 0
3966 Counting intersecting and pairs of cross-inter... family subsets ldotsn called intersecting two ... 1 0 1 0 0 0
3967 Zero-field Skyrmions with a High Topological N... magnetic skyrmions swirling spin textures topo... 0 1 0 0 0 0
3968 DoShiCo Challenge: Domain Shift in Control Pre... training deep neural network policies endtoend... 1 0 0 0 0 0
3969 Knowledge Discovery from Layered Neural Networ... interpretability become important issue machin... 0 0 0 1 0 0
3970 Optimal Stopping for Interval Estimation in Be... propose optimal sequential methodology obtaini... 0 0 0 1 0 0
3971 Derivation of a Non-autonomous Linear Boltzman... linear boltzmann equation nonautonomous collis... 0 0 1 0 0 0
3972 On Blockwise Symmetric Matchgate Signatures an... ngeq qgeq prove sc equality function n n varia... 1 0 0 0 0 0
3973 Deconfined quantum critical points: symmetries... deconfined quantum critical point qcp separati... 0 1 0 0 0 0
3974 Ensemble Methods as a Defense to Adversarial P... deep learning become state art approach many m... 0 0 0 1 0 0
3975 The unrolled quantum group inside Lusztig's qu... letter prove unrolled small quantum group appe... 0 0 1 0 0 0
3976 Forward Collision Vehicular Radar with IEEE 80... increasing safety automation transportation sy... 1 0 0 0 0 0
3977 Link Before You Share: Managing Privacy Polici... advent numerous online content providers utili... 1 0 0 0 0 0
3978 Holistic Interstitial Lung Disease Detection u... accurately predicting detecting interstitial l... 1 0 0 0 0 0
3979 Convergence Results for Neural Networks via El... study whether depth two neural network learn a... 1 1 0 0 0 0
3980 The norm residue symbol for higher local fields since development higher local class field the... 0 0 1 0 0 0
3981 Optimizing tree decompositions in MSO classic algorithm bodlaender kloks j algorithm... 1 0 0 0 0 0
3982 Nonparametric relative error estimation of the... let tii sequence independent identically distr... 0 0 1 1 0 0
3983 Intelligent Home Energy Management System for ... paper presents intelligent home energy managem... 0 0 1 0 0 0
3984 Interpretable Structure-Evolving LSTM paper develops general framework learning inte... 1 0 0 0 0 0
3985 On Optimization over Tail Distributions investigate use optimization compute bounds ex... 0 0 0 1 0 0
3986 Isotropic covariance functions on graphs and t... develop parametric classes covariance function... 0 0 1 1 0 0
3987 Towards Probabilistic Formal Modeling of Robot... cell injection technique domain biological cel... 1 0 0 0 0 0
3988 Representations of language in a model of visu... present visually grounded model speech percept... 1 0 0 0 0 0
3989 Long-Term Video Interpolation with Bidirection... paper considers challenging task longterm vide... 1 0 0 0 0 0
3990 Evolutionary dynamics of cooperation in neutra... cooperation difficult proposition face darwini... 1 0 0 0 0 0
3991 Large global-in-time solutions to a nonlocal m... consider parabolicelliptic model chemotaxis fr... 0 0 1 0 0 0
3992 Microservices: Granularity vs. Performance microservice architectures potential increase ... 1 0 0 0 0 0
3993 The strictly-correlated electron functional fo... stronginteraction limit hohenbergkohn function... 0 1 0 0 0 0
3994 A stable numerical strategy for Reynolds-Rayle... coupling reynolds rayleighplesset equations us... 0 1 0 0 0 0
3995 Accelerated Sparse Subspace Clustering stateoftheart algorithms sparse subspace clust... 1 0 0 1 0 0
3996 Prediction of helium vapor quality in steady s... steady state superconducting tokamak sst insti... 0 1 0 0 0 0
3997 Synthesis of Highly Anisotropic Semiconducting... pseudoone dimensional pseudod materials newcla... 0 1 0 0 0 0
3998 Criticality as It Could Be: organizational inv... paper outlines methodological approach designi... 1 1 0 0 0 0
3999 Projection Free Rank-Drop Steps frankwolfe fw algorithm widely used solving nu... 0 0 0 1 0 0
4000 Doubly autoparallel structure on the probabili... probability simplex consider standard informat... 0 0 1 0 0 0
4001 Probing Hidden Spin Order with Interpretable M... search unconventional magnetic nonmagnetic sta... 0 0 0 1 0 0
4002 Maximum a Posteriori Joint State Path and Para... wide variety phenomena engineering scientific ... 0 0 1 1 0 0
4003 Spreading of an infectious disease between dif... endogenous adaptation agents may adjust local ... 0 0 0 0 0 1
4004 Observation and calculation of the quasi-bound... although existence quasibound rotational level... 0 1 0 0 0 0
4005 A case study of hurdle and generalized additiv... dark ages universe end formation first generat... 0 0 0 1 0 0
4006 Out-of-focus: Learning Depth from Image Bokeh ... project propose novel approach estimating dept... 1 0 0 0 0 0
4007 Iterative Machine Teaching paper consider problem machine teaching invers... 1 0 0 1 0 0
4008 GibbsNet: Iterative Adversarial Inference for ... directed latent variable models formulate join... 1 0 0 1 0 0
4009 Characterization of 1-Tough Graphs using Factors graph g let oddg omegag denote number odd comp... 0 0 1 0 0 0
4010 Optimization by gradient boosting gradient boosting stateoftheart prediction tec... 1 0 1 1 0 0
4011 RDV: Register, Deposit, Vote: Secure and Decen... decentralized payment system secure transactio... 1 0 0 0 0 0
4012 The Rees algebra of a two-Borel ideal is Koszul let n two monomials degree let smallest borel ... 0 0 1 0 0 0
4013 A forward--backward random process for the spe... give new expression law eigenvalues discrete a... 0 0 1 0 0 0
4014 From Curves to Tropical Jacobians and Back given curve defined algebraically closed field... 0 0 1 0 0 0
4015 Importance sampling the union of rare events w... consider importance sampling estimate probabil... 1 0 0 1 0 0
4016 Estimating the sensitivity of centrality measu... network studies rely observed network differs ... 1 1 0 0 0 0
4017 Matrix product moments in normal variables let cal x xxprime random matrix associated cen... 0 0 1 1 0 0
4018 Asymptotics and Optimal Bandwidth Selection fo... bandwidth selection crucial kernel estimation ... 0 0 1 1 0 0
4019 Population-specific design of de-immunized pro... immunogenicity major problem development bioth... 1 0 0 0 0 0
4020 Linearized Binary Regression probit regression first proposed bliss study m... 0 0 0 1 0 0
4021 Arithmetic properties of polynomials paper first prove diophantine system fzfxfyfuf... 0 0 1 0 0 0
4022 A Graph Analytics Framework for Ranking Author... lot scientific works published different areas... 1 0 0 0 0 0
4023 Inner Cohomology of the General Linear Group main theorem incorrectly stated 0 0 1 0 0 0
4024 Particle-hole symmetry and composite fermions ... study fractional quantum hall states filling f... 0 1 0 0 0 0
4025 Large-type Artin groups are systolic prove artin groups class containing largetype ... 0 0 1 0 0 0
4026 Gradient Sensing via Cell Communication chemotactic dynamics cells organisms specializ... 0 0 0 0 1 0
4027 Nichols Algebras and Quantum Principal Bundles general procedure constructing yetterdrinfeld ... 0 0 1 0 0 0
4028 Inference of signals with unknown correlation ... present method reconstruct autocorrelated sign... 0 1 0 1 0 0
4029 An optimization approach for dynamical Tucker ... optimizationbased approach tucker tensor appro... 0 1 0 0 0 0
4030 Optical and structural study of the pressure-i... optical absorption cdwo reported high pressure... 0 1 0 0 0 0
4031 Learning Context-Sensitive Convolutional Filte... convolutional neural networks cnns recently em... 1 0 0 1 0 0
4032 On right $S$-Noetherian rings and $S$-Noetheri... paper study right snoetherian rings modules ex... 0 0 1 0 0 0
4033 Reconfiguration of Brain Network between Resti... oddball paradigm widely applied investigation ... 0 0 0 0 1 0
4034 Approximate Ranking from Pairwise Comparisons common problem machine learning rank set n ite... 0 0 0 1 0 0
4035 Optimised information gathering in smartphone ... human activities hunting emailing performed fr... 1 1 0 0 0 0
4036 On Recoverable and Two-Stage Robust Selection ... paper problem selecting p n available items di... 1 0 1 0 0 0
4037 Sparsity/Undersampling Tradeoffs in Anisotropi... study anisotropic undersampling schemes like u... 1 0 0 0 0 0
4038 Multi-way sparsest cut problem on trees with a... given graph sparsest cut problem asks subset v... 1 0 0 0 0 0
4039 Gallucci's axiom revisited paper propose welljustified synthetic approach... 0 0 1 0 0 0
4040 Effect of the non-thermal Sunyaev-Zel'dovich E... recent stacking analysis planck hfi data galax... 0 1 0 0 0 0
4041 ModelFactory: A Matlab/Octave based toolbox to... background modelbased analysis movements help ... 1 0 0 0 1 0
4042 Dimensionality reduction with missing values i... study propose new statical approach highdimens... 1 0 0 1 0 0
4043 An effective formalism for testing extensions ... recent direct observation gravitational waves ... 0 1 0 0 0 0
4044 On the Wiener-Hopf method for surface plasmons... formally invoking wienerhopf method explicitly... 0 0 1 0 0 0
4045 Sim2Real View Invariant Visual Servoing by Rec... humans remarkably proficient controlling limbs... 1 0 0 0 0 0
4046 The homotopy Lie algebra of symplectomorphism ... consider point blowup manifold times sigma opl... 0 0 1 0 0 0
4047 Pressure Drop and Flow development in the Entr... present investigation development axial veloci... 0 1 0 0 0 0
4048 Household poverty classification in data-scarc... describe method identify poor households datas... 0 0 0 1 0 0
4049 Linguistic Matrix Theory recent research computational linguistics deve... 1 0 0 0 0 0
4050 Dissecting Ponzi schemes on Ethereum: identifi... ponzi schemes financial frauds promise high pr... 1 0 0 0 0 0
4051 On orthogonality and learning recurrent networ... well known challenging train deep neural netwo... 1 0 0 0 0 0
4052 Chunk-Based Bi-Scale Decoder for Neural Machin... typical neural machine translationnmt decoder ... 1 0 0 0 0 0
4053 IL-Net: Using Expert Knowledge to Guide the De... deep neural networks dnn excel extracting patt... 0 0 0 1 0 0
4054 Fast Spectral Clustering Using Autoencoders an... paper introduce algorithm performing spectral ... 1 0 0 1 0 0
4055 Sufficient Markov Decision Processes with Alte... advances mobile computing technologies made po... 0 0 1 1 0 0
4056 Gate-controlled magnonic-assisted switching of... interfacing ferromagnet polarized ferroelectri... 0 1 0 0 0 0
4057 Three-Dimensional Electronic Structure of type... combining bulk sensitive softxray angularresol... 0 1 0 0 0 0
4058 Decentralized Online Learning with Kernels consider multiagent stochastic optimization pr... 1 0 1 1 0 0
4059 Enumeration of complementary-dual cyclic $\mat... let mathbbfq denote finite field order q n pos... 0 0 1 0 0 0
4060 MUTAN: Multimodal Tucker Fusion for Visual Que... bilinear models provide appealing framework mi... 1 0 0 0 0 0
4061 Nucleosynthesis Predictions and High-Precision... two new highprecision measurements deuterium a... 0 1 0 0 0 0
4062 Nearly-Linear Time Spectral Graph Reduction fo... paper proposes scalable algorithmic framework ... 1 0 0 0 0 0
4063 Text Indexing and Searching in Sublinear Time introduce first index built time text length n... 1 0 0 0 0 0
4064 Temperature dependence of the bulk Rashba spli... study temperature dependence rashbasplit bands... 0 1 0 0 0 0
4065 Viscosity solutions and the minimal surface sy... give definition viscosity solution minimal sur... 0 0 1 0 0 0
4066 Ray-tracing semiclassical low frequency acoust... recently introduced acoustic raytracing semicl... 0 1 0 0 0 0
4067 Towards Understanding the Evolution of the WWW... world wide web conference wellestablished matu... 1 0 0 0 0 0
4068 Hierarchical State Abstractions for Decision-M... semitutorial paper first review informationthe... 1 0 0 1 0 0
4069 The generalized Milne problem in gas-dusty atm... consider generalized milne problem nonconserva... 0 1 0 0 0 0
4070 h-multigrid agglomeration based solution strat... work exploit agglomeration based hmultigrid pr... 0 1 0 0 0 0
4071 The content correlation of multiple streaming ... study detect clusters graph defined stream edg... 1 0 0 0 0 0
4072 Fundamental solutions for second order parabol... construct fundamental solutions secondorder pa... 0 0 1 0 0 0
4073 CMB in the river frame and gauge invariance at... gauge invariance sachswolfe formula describing... 0 1 0 0 0 0
4074 Active matrix completion with uncertainty quan... noisy matrix completion problem aims recover l... 0 0 0 1 0 0
4075 Majoration du nombre de valeurs friables d'un ... q polynomial integer coefficients x geq prove ... 0 0 1 0 0 0
4076 General analytical solution for the electromag... implementing modal method electromagnetic grat... 0 1 1 0 0 0
4077 Synthetic geometry of differential equations: ... give abstract formulation formal theory partia... 0 0 1 0 0 0
4078 Precision Prediction for the Cosmological Dens... distribution matter universe first order logno... 0 1 0 0 0 0
4079 Hamiltonian analogs of combustion engines: a s... workhorse theories throughout physics derive e... 0 1 0 0 0 0
4080 Towards Arbitrary Noise Augmentation - Deep Le... accurate noise modelling important training de... 0 0 0 1 0 0
4081 Unbiased Simulation for Optimizing Stochastic ... paper introduce unbiased gradient simulation a... 0 0 0 1 0 0
4082 Temporal Grounding Graphs for Language Underst... robots ability understand ground natural langu... 1 0 0 0 0 0
4083 Nonconvex generalizations of ADMM for nonlinea... growing demand efficient distributed optimizat... 1 0 1 0 0 0
4084 Interpretable LSTMs For Whole-Brain Neuroimagi... analysis neuroimaging data poses several stron... 0 0 0 0 1 0
4085 Effect of Isopropanol on Gold Assisted Chemica... wet etching essential complex step semiconduct... 0 1 0 0 0 0
4086 Integrating Runtime Values with Source Code to... inherently abstract nature source code makes p... 1 0 0 0 0 0
4087 Nearest Embedded and Embedding Self-Nested Trees selfnested trees present systematic form redun... 1 0 0 0 0 0
4088 Computing the Lusztig--Vogan Bijection let g connected complex reductive algebraic gr... 0 0 1 0 0 0
4089 Divide and Conquer: Variable Set Separation in... paper propose improvement flowpipeconstruction... 1 0 0 0 0 0
4090 The bottom of the spectrum of time-changed pro... give necessary sufficient condition maximum pr... 0 0 1 0 0 0
4091 Autocorrelation and Lower Bound on the 2-Adic ... modern stream cipher many algorithms zuc lte e... 1 0 0 0 0 0
4092 Integration of Machine Learning Techniques to ... telecommunications industry highly competitive... 1 0 0 1 0 0
4093 A Convex Cycle-based Degradation Model for Bat... vital aspect energy storage planning operation... 1 0 1 0 0 0
4094 Demonstration of cascaded modulator-chicane mi... present results experiment showing first succe... 0 1 0 0 0 0
4095 Grothendieck rigidity of 3-manifold groups show fundamental groups compact orientable irr... 0 0 1 0 0 0
4096 Sobczyk's simplicial calculus does not have a ... pseudoscalars garret sobczyks paper emphsimpli... 0 0 1 0 0 0
4097 Hierarchy of Information Scrambling, Thermaliz... determine information scrambling rate lambdal ... 0 1 0 0 0 0
4098 Neural Collaborative Autoencoder recent years deep neural networks yielded stat... 1 0 0 1 0 0
4099 Reexamination of Tolman's law and the Gibbs ad... influence surface curvature surface tension sm... 0 1 0 0 0 0
4100 Dual Supervised Learning many supervised learning tasks emerged dual fo... 1 0 0 1 0 0
4101 Pentavalent symmetric graphs of order four tim... graph said symmetric automorphism group transi... 0 0 1 0 0 0
4102 Applying the Polyhedral Model to Tile Time Loo... run time many scientific computation applicati... 1 0 0 0 0 0
4103 Deictic Image Maps: An Abstraction For Learnin... applications deep reinforcement learning robot... 1 0 0 0 0 0
4104 Charged Vector Particles Tunneling From 5D Bla... paper investigate hawking radiation process se... 0 1 0 0 0 0
4105 Implementing implicit OpenMP data sharing on GPUs openmp shared memory programming model support... 1 0 0 0 0 0
4106 Real-Time Impulse Noise Removal from MR Images... recent years image processing techniques used ... 1 1 0 0 0 0
4107 Pitfalls of Graph Neural Network Evaluation semisupervised node classification graphs fund... 1 0 0 0 0 0
4108 Randomized CP Tensor Decomposition candecompparafac cp tensor decomposition popul... 1 0 0 1 0 0
4109 App Store 2.0: From Crowd Information to Actio... given increasing competition mobile app ecosys... 1 0 0 0 0 0
4110 An Information Matrix Approach for State Secrecy paper studies problem remote state estimation ... 1 0 0 0 0 0
4111 Adversarial Attacks on Node Embeddings goal network representation learning learn low... 1 0 0 0 0 0
4112 Time-reversed magnetically controlled perturba... manipulating focusing light deep inside biolog... 0 1 0 0 0 0
4113 Dimensionality-strain phase diagram of stronti... competition spinorbit coupling bandwidth w ele... 0 1 0 0 0 0
4114 Herschel survey and modelling of externally-il... protoplanetary disks undergo substantial massl... 0 1 0 0 0 0
4115 Observation of Spatio-temporal Instability of ... study spatiotemporal instability generated uni... 0 1 0 0 0 0
4116 Spectral curves for the rogue waves find spectral curves corresponding known ratio... 0 1 1 0 0 0
4117 Volume functional of compact manifolds with a ... prove critical metric volume functional fourdi... 0 0 1 0 0 0
4118 Deep Multitask Learning for Semantic Dependenc... present deep neural architecture parses senten... 1 0 0 0 0 0
4119 Chentsov's theorem for exponential families chentsovs theorem characterizes fisher informa... 1 0 1 1 0 0
4120 Dark trions and biexcitons in WS2 and WSe2 mad... direct band gap character large spinorbit spli... 0 1 0 0 0 0
4121 SGDLibrary: A MATLAB library for stochastic gr... consider problem finding minimizer function f ... 1 0 0 1 0 0
4122 Structured Uncertainty Prediction Networks paper first work propose network predict struc... 0 0 0 1 0 0
4123 Shannon's entropy and its Generalizations towa... starting pioneering works shannon weiner pleth... 0 0 0 1 0 0
4124 Understanding MIDI: A Painless Tutorial on Mid... short overview demystifying midi audio format ... 1 0 0 0 0 0
4125 Optimization, fast and slow: optimally switchi... develop first bayesian optimization algorithm ... 0 0 0 1 0 0
4126 Optimization of exposure time division for wid... optical observations wide fields view encounte... 0 1 0 0 0 0
4127 Multi-Entity Dependence Learning with Rich Con... multientity dependence learning medl explores ... 1 0 0 1 0 0
4128 A recognition algorithm for simple-triangle gr... simpletriangle graph intersection graph triang... 1 0 0 0 0 0
4129 A normalized gradient flow method with attract... paper generalize normalized gradient flow meth... 0 1 0 0 0 0
4130 Truncation in Hahn Fields is Undecidable and Wild show nontrivial hahn field truncation primitiv... 0 0 1 0 0 0
4131 Direct measurement of laser aberration and ahe... laser communication advances compared radio fr... 0 1 0 0 0 0
4132 DNN-Buddies: A Deep Neural Network-Based Estim... paper introduces first deep neural networkbase... 1 0 0 1 0 0
4133 Attack Analysis for Distributed Control System... although adverse effects attacks acknowledged ... 1 0 0 0 0 0
4134 A conservative scheme for electromagnetic simu... conservative scheme formulated verified gyroki... 0 1 0 0 0 0
4135 Corrupt Bandits for Preserving Local Privacy study variant stochastic multiarmed bandit mab... 1 0 0 1 0 0
4136 Deep Reinforcement Learning based Optimal Cont... energy consumption hot water production major ... 0 0 0 1 0 0
4137 A Model-Based Fuzzy Control Approach to Achiev... selfadaptive system sas capable adjusting beha... 1 0 0 0 0 0
4138 See the Near Future: A Short-Term Predictive M... intelligent transportation system targets coor... 1 0 0 1 0 0
4139 Single-Crystal N-polar GaN p-n Diodes by Plasm... npolar gan pn diodes realized singlecrystal np... 0 1 0 0 0 0
4140 Particle Identification with the TOP and ARICH... particle identification belle ii experiment pr... 0 1 0 0 0 0
4141 Face Detection and Face Recognition In the Wil... paper presents easy efficient face detection f... 1 0 0 0 0 0
4142 End-to-end Learning of Deterministic Decision ... conventional decision trees number favorable p... 1 0 0 1 0 0
4143 Conceptualization of Object Compositions Using... topological shape analysis proposed utilized l... 1 0 0 0 0 0
4144 Long-term Blood Pressure Prediction with Deep ... existing methods arterial blood pressure bp es... 1 0 0 1 0 0
4145 Risks for life on habitable planets from super... explore ramifications arising superflares evol... 0 1 0 0 0 0
4146 Thermodynamics of Spin-1/2 Kagomé Heisenberg A... quantum fluctuations frustration trigger quant... 0 1 0 0 0 0
4147 Fast Rigid 3D Registration Solution: A Simple ... novel solution obtained solve rigid registrati... 1 0 0 0 0 0
4148 Massive MIMO 5G Cellular Networks: mm-wave vs.... enhanced mobile broadband embb one key usecase... 1 0 0 0 0 0
4149 Independent Set Size Approximation in Graph St... study problem estimating size independent sets... 1 0 0 0 0 0
4150 Two-Person Zero-Sum Games with Unbounded Payof... paper provides sufficient conditions existence... 0 0 1 0 0 0
4151 Scale relativistic formulation of non-differen... article second series two presenting scale rel... 0 1 0 0 0 0
4152 Compact arrangement for femtosecond laser indu... present simple apparatus femtosecond laser ind... 0 1 0 0 0 0
4153 Hierarchical Summarization of Metric Changes study changes metrics defined cartesian produc... 1 0 0 0 0 0
4154 Manifold learning with bi-stochastic kernels paper answer following question infinitesimal ... 0 0 1 1 0 0
4155 The importance of the weak: Interaction modifi... modification geometry interactions twodimensio... 0 1 0 0 0 0
4156 How To Extract Fashion Trends From Social Medi... proliferation social media fashion inspired ce... 0 0 0 1 0 0
4157 Multi-Task Learning Using Neighborhood Kernels paper introduces new effective algorithm learn... 1 0 0 1 0 0
4158 Optimized Bucket Wheel Design for Asteroid Exc... current spacecraft need launch required fuel t... 1 1 0 0 0 0
4159 Fraction of the X-ray selected AGNs with optic... compared numerous xray dominant active galacti... 0 1 0 0 0 0
4160 A local search 2.917-approximation algorithm f... study em maximum duopreservation string mappin... 1 0 0 0 0 0
4161 Towards Automatic Learning of Heuristics for M... current trends nextgeneration exascale systems... 1 0 0 0 0 0
4162 Using Graphs of Classifiers to Impose Declarat... propose general approach modeling semisupervis... 1 0 0 1 0 0
4163 Fabrication of a centimeter-long cavity on a n... report fabrication cm long cavity directly nan... 0 1 0 0 0 0
4164 Optimized Deformed Laplacian for Spectrum-base... spectral clustering one popular yet still inco... 1 0 0 1 0 0
4165 High dimensional deformed rectangular matrices... consider recovery low rank times n matrix nois... 0 0 1 1 0 0
4166 Validation of the 3-under-2 principle of cell ... aim work propose first coarsegrained model bac... 0 1 0 0 0 0
4167 Self-bound quantum droplets in atomic mixtures selfbound quantum droplets newly discovered ph... 0 1 0 0 0 0
4168 Control of Gene Regulatory Networks with Noisy... paper concerned problem stochastic control gen... 0 0 0 1 0 0
4169 On Memory System Design for Stochastic Computing growing uncertainty design parameters therefor... 1 0 0 0 0 0
4170 Strongly convex stochastic online optimization... paper propose new approach obtain mixing least... 0 0 1 0 0 0
4171 Unsupervised Domain Adaptation for Face Recogn... despite rapid advances face recognition remain... 1 0 0 0 0 0
4172 Unifying DAGs and UGs introduce new class graphical models generaliz... 1 0 0 1 0 0
4173 Program Completionin the Input Language of GRINGO argue turning logic program set completed defi... 1 0 0 0 0 0
4174 Numerical modelling of surface water wave inte... present manuscript consider practical problem ... 1 1 0 0 0 0
4175 Dynamic Curriculum Learning for Imbalanced Dat... human attribute analysis challenging task fiel... 1 0 0 0 0 0
4176 Causal Discovery in the Presence of Measuremen... measurement error observed values variables gr... 1 0 0 1 0 0
4177 Elliptic fibrations on covers of the elliptic ... consider k surfaces arise double covers ellipt... 0 0 1 0 0 0
4178 A wide field-of-view crossed Dragone optical s... sidefed crossed dragone telescope provides wid... 0 1 0 0 0 0
4179 Searching for Biophysically Realistic Paramete... individual neurons nervous systems exploit var... 1 0 0 0 0 0
4180 Matrix elements of irreducible representations... part study spherical functions compact symmetr... 0 0 1 0 0 0
4181 On the variance of internode distance under th... consider problem estimating species trees unro... 0 0 0 0 1 0
4182 DOPING: Generative Data Augmentation for Unsup... recently introduction generative adversarial n... 0 0 0 1 0 0
4183 Online Human Gesture Recognition using Recurre... gestures natural communication modality humans... 1 0 0 0 0 0
4184 Conditional Variance Penalties and Domain Shif... training deep network image classification one... 1 0 0 1 0 0
4185 The First Optical Spectra of Wolf Rayet Stars ... deep narrowband hst imaging iconic spiral gala... 0 1 0 0 0 0
4186 Machine Learning Topological Invariants with N... letter supervisedly train neural networks dist... 1 1 0 0 0 0
4187 Topics and Label Propagation: Best of Both Wor... propose label propagation based algorithm weak... 1 0 0 0 0 0
4188 Parallel Markov Chain Monte Carlo for the Indi... indian buffet process based models elegant way... 0 0 0 1 0 0
4189 The Robot Routing Problem for Collecting Aggre... propose new model formalizing reward collectio... 1 0 1 0 0 0
4190 Estimating occupation time functionals study estimation integral type functionals int... 0 0 1 1 0 0
4191 Bootstrapping a Lexicon for Emotional Arousal ... emotional arousal increases activation perform... 1 0 0 0 0 0
4192 Early Solar System irradiation quantified by l... xray emission young stellar objects ysos order... 0 1 0 0 0 0
4193 Two classes of nonlocal Evolution Equations re... consider reactiondiffusion equations kortewegd... 0 0 1 0 0 0
4194 Analyzing IO Amplification in Linux File Systems present first systematic analysis read write s... 1 0 0 0 0 0
4195 Feature analysis of multidisciplinary scientif... features collaboration patterns often consider... 1 1 0 0 0 0
4196 Inflationary magneto-(non)genesis, increasing ... study generation magnetic fields inflation mak... 0 1 0 0 0 0
4197 HornDroid: Practical and Sound Static Analysis... present horndroid new tool static analysis inf... 1 0 0 0 0 0
4198 Assessing the reliability polynomial based on ... paper study robustness network topologies use ... 0 0 1 1 0 0
4199 Interval Exchange Transformations and Low-Disc... mas vee proved independently almost every inte... 0 0 1 0 0 0
4200 Metric-Optimized Example Weights realworld machine learning applications often ... 0 0 0 1 0 0
4201 Interior Eigensolver for Sparse Hermitian Defi... paper proposes efficient method computing sele... 1 0 1 0 0 0
4202 A Polya-Vinogradov-type inequality on $\mathbb... establish polyavinogradovtype bound finite per... 0 0 1 0 0 0
4203 Distinction of representations via Bruhat-Tits... introductory pedagogical treatmeant article p ... 0 0 1 0 0 0
4204 Face Super-Resolution Through Wasserstein GANs generative adversarial networks gans received ... 1 0 0 1 0 0
4205 Network-based protein structural classification experimental determination protein function re... 0 0 0 1 1 0
4206 Deep Learning for Environmentally Robust Speec... eliminating negative effect nonstationary envi... 1 0 0 0 0 0
4207 The function field Sathé-Selberg formula in ar... use function field analogue method selberg der... 0 0 1 0 0 0
4208 Polynomial Relations Between Matrices of Graphs derive correspondence eigenvalues adjacency ma... 0 0 1 0 0 0
4209 Random active path model of deep neural networ... deep learning become powerful popular tool var... 1 0 0 1 0 0
4210 Super Generalized Central Limit Theorem: Limit... nature societies powerlaw present ubiquitously... 0 0 1 1 0 0
4211 On the Adjacency Spectra of Hypertrees extend results zhang et al show lambda eigenva... 0 0 1 0 0 0
4212 Coherent structures and spectral energy transf... plasma turbulence scales order ion inertial le... 0 1 0 0 0 0
4213 Bayesian Sparsification of Recurrent Neural Ne... recurrent neural networks show stateoftheart r... 1 0 0 1 0 0
4214 Malaria Likelihood Prediction By Effectively S... build deep reinforcement learning rl agent pre... 1 0 0 1 0 0
4215 Curious Minds Wonder Alike: Studying Multimoda... curiosity strong desire learn know something s... 1 0 0 0 0 0
4216 Communication Complexity of Discrete Fair Divi... initiate study communication complexity fair d... 1 0 0 0 0 0
4217 A proof of the Muir-Suffridge conjecture for c... prove improve muirsuffridge conjecture holomor... 0 0 1 0 0 0
4218 Continuous Functional Calculus for Quaternioni... article give approach define continuous functi... 0 0 1 0 0 0
4219 Evolution of structure, magnetism and electron... interplay spinorbit coupling soc electron corr... 0 1 0 0 0 0
4220 Cieliebak's Invariance Theorem and contact str... present strong version abouzaids noescape lemm... 0 0 1 0 0 0
4221 Learning Graph Weighted Models on Pictures graph weighted models gwms recently proposed n... 0 0 0 1 0 0
4222 Solutions for biharmonic equations with steep ... paper concerned existence least energy solutio... 0 0 1 0 0 0
4223 General three and four person two color Hat Game n distinguishable players randomly fitted whit... 1 0 0 0 0 0
4224 Pencilled regular parallelisms field mathbb k bijection regular spreads proje... 0 0 1 0 0 0
4225 The loss surface of deep and wide neural networks optimization problem behind deep neural networ... 1 0 0 1 0 0
4226 Gap Acceptance During Lane Changes by Large-Tr... paper presents analysis rearward gap acceptanc... 1 0 0 0 0 0
4227 Diversity-Sensitive Conditional Generative Adv... propose simple yet highly effective method add... 1 0 0 1 0 0
4228 Predicting Expressive Speaking Style From Text... global style tokens gsts recentlyproposed meth... 1 0 0 1 0 0
4229 Independence of Sources in Social Networks online social networks studied links users soc... 1 0 0 0 0 0
4230 Classical and quantum systems: transport due t... review possible mechanisms energy transfer bas... 0 1 0 0 0 0
4231 An a Priori Exponential Tail Bound for k-Folds... consider priori generalization bounds develope... 1 0 0 1 0 0
4232 Relaxed Wasserstein with Applications to GANs propose novel class statistical divergences ca... 1 0 0 1 0 0
4233 Extremal functions for the Moser--Trudinger in... study existence nonexistence maximizers variat... 0 0 1 0 0 0
4234 Dex: Incremental Learning for Complex Environm... paper introduces dex reinforcement learning en... 1 0 0 1 0 0
4235 The first order partial differential equations... paper discuss first order partial differential... 0 0 1 0 0 0
4236 The Genus-One Global Mirror Theorem for the Qu... prove genusone restriction allgenus landauginz... 0 0 1 0 0 0
4237 Self-Calibration of Mobile Manipulator Kinemat... present novel approach mobile manipulator self... 1 0 0 0 0 0
4238 Towards Open Data for the Citation Content Ana... paper presents first results citeccyr project ... 1 0 0 0 0 0
4239 Real Time Collision Detection and Identificati... majority everyday tasks involve interacting un... 1 0 0 0 0 0
4240 Time-dynamic inference for non-Markov transiti... article weak convergence general nonmarkov sta... 0 0 1 1 0 0
4241 Multitask Learning with CTC and Segmental CRF ... segmental conditional random fields scrfs conn... 1 0 0 0 0 0
4242 Electronic structure and non-linear optical pr... use ecofriendly materials environment addresse... 0 1 0 0 0 0
4243 Connectivity Learning in Multi-Branch Networks much work design convolutional networks last f... 1 0 0 0 0 0
4244 A multiple timescales approach to bridging spi... rigorous bridge spikinglevel macroscopic quant... 0 0 0 0 1 0
4245 Two-Stream RNN/CNN for Action Recognition in 3... recognition actions video sequences many appli... 1 0 0 0 0 0
4246 DNA translocation through alpha-haemolysin nan... digital information encoded buildingblock sequ... 1 1 0 0 0 0
4247 Contextuality from missing and versioned data traditionally categorical data analysis eg gen... 1 0 0 1 0 0
4248 Reveal the Mantle and K-40 Components of Geone... article present idea using liquid scintillator... 0 1 0 0 0 0
4249 Improving Stock Movement Prediction with Adver... paper contributes new machine learning solutio... 0 0 0 0 0 1
4250 Weighted estimates for positive operators and ... characterize strong type weak type inequalitie... 0 0 1 0 0 0
4251 Sentiment Identification in Code-Mixed Social ... sentiment analysis natural language processing... 1 0 0 0 0 0
4252 SVSGAN: Singing Voice Separation via Generativ... separating two sources audio mixture important... 1 0 0 0 0 0
4253 Microscopic theory of refractive index applied... article first derive wavevector frequencydepen... 0 1 0 0 0 0
4254 Semidefinite Relaxation-Based Optimization of ... optimization procedure multitransmitter miso w... 1 0 1 0 0 0
4255 Counterfactual Reasoning with Disjunctive Know... consider problem estimating counterfactual qua... 0 0 0 1 0 0
4256 Post-edit Analysis of Collective Biography Gen... text generation increasingly common often requ... 1 0 0 0 0 0
4257 The SysML/KAOS Domain Modeling Approach means building safe critical systems consists ... 1 0 0 0 0 0
4258 Neighborhood selection with application to soc... topic paper modeling analyzing dependence stoc... 0 0 1 1 0 0
4259 Spinless hourglass nodal-line semimetals nodalline semimetals one topological semimetal... 0 1 0 0 0 0
4260 Average-radius list-recovery of random linear ... analyze listdecodability related notions rando... 1 0 0 0 0 0
4261 Insights on representational similarity in neu... comparing different neural network representat... 0 0 0 1 0 0
4262 Complex Hadamard matrices with noncommutative ... axiomatize study matrices type hin mna unitary... 0 0 1 0 0 0
4263 Subregular Complexity and Deep Learning paper argues judicial use formal language theo... 1 0 0 0 0 0
4264 Observation of oscillatory relaxation in the S... topological crystalline insulators recently pr... 0 1 0 0 0 0
4265 Chaotic Dynamics of Inner Ear Hair Cells experimental records active bundle motility us... 0 1 0 0 0 0
4266 From Dirac semimetals to topological phases in... weyl dirac semimetals three dimensions robust ... 0 1 0 0 0 0
4267 CHIME FRB: An application of FFT beamforming f... developed fft beamforming techniques chime rad... 0 1 0 0 0 0
4268 MRI-PET Registration with Automated Algorithm ... magnetic resonance imaging mri positron emissi... 1 0 0 0 0 0
4269 Generalization of Special Functions and its Ap... goal paper extend classical multiplicative fra... 0 0 1 0 0 0
4270 Incident Light Frequency-based Image Defogging... considering problem color distortion caused de... 1 0 0 0 0 0
4271 Tangent points of d-lower content regular sets... present generalisation c bishop p jones result... 0 0 1 0 0 0
4272 Quasi-Oracle Estimation of Heterogeneous Treat... flexible estimation heterogeneous treatment ef... 0 0 1 1 0 0
4273 Adaptive clustering procedure for continuous g... hierarchical searches continuous gravitational... 0 1 1 0 0 0
4274 The heat trace for the drifting Laplacian and ... study heat trace drifting laplacian well schrd... 0 0 1 0 0 0
4275 Generative Adversarial Networks for Black-Box ... online systems based machine learning offered ... 1 0 0 1 0 0
4276 Coloring ($P_6$, diamond, $K_4$)-free graphs show every p diamond kfree graph colorable mor... 1 0 0 0 0 0
4277 Habitable Climate Scenarios for Proxima Centau... nearby exoplanet proxima centauri b prime futu... 0 1 0 0 0 0
4278 Level bounds for exceptional quantum subgroups... longstanding belief modular tensor categories ... 0 0 1 0 0 0
4279 Convolution Forgetting Curve Model for Repeate... mathematic forgetting curve models fit well fo... 1 0 0 0 1 0
4280 Efficient computation of multidimensional thet... important step efficient computation multidime... 0 1 1 0 0 0
4281 The careless use of language in quantum inform... imperative aspect modern science scientific in... 0 1 0 0 0 0
4282 Origin of meteoritic stardust unveiled by a re... stardust grains recovered meteorites provide h... 0 1 0 0 0 0
4283 Some Connections Between Cycles and Permutatio... present new proof fundamental result concernin... 0 0 1 0 0 0
4284 Generalizing the first-difference correlated r... animal telemetry data often analysed discrete ... 0 0 0 0 1 0
4285 Low spin wave damping in the insulating chiral... chiral magnets topologically nontrivial spin o... 0 1 0 0 0 0
4286 Adversarial PoseNet: A Structure-aware Convolu... human pose estimation monocular images joint o... 1 0 0 0 0 0
4287 Deep Learning from Shallow Dives: Sonar Image ... among underwater perceptual sensors imaging so... 1 0 0 0 0 0
4288 Large-scale Feature Selection of Risk Genetic ... genomewide association studies gwas achieved g... 1 0 0 1 0 0
4289 Strong Functional Representation Lemma and App... paper shows random variables x possible repres... 1 0 1 0 0 0
4290 Emergence of Structured Behaviors from Curiosi... infants experts playing amazing ability genera... 0 0 0 1 0 0
4291 Predicting shim gaps in aircraft assembly with... modern aircraft may require order thousands cu... 0 0 0 1 0 0
4292 Multivariate central limit theorems for Radema... quantitative multivariate central limit theore... 0 0 1 0 0 0
4293 Modification of Social Dominance in Social Net... according degrootfriedkin model social network... 1 0 0 0 0 0
4294 On Abrikosov Lattice Solutions of the Ginzburg... prove existence abrikosov vortex lattice solut... 0 0 1 0 0 0
4295 $0.7-2.5~μ$m spectra of Hilda asteroids hilda asteroids primitive bodies resonance jup... 0 1 0 0 0 0
4296 Ground-state properties of unitary bosons: fro... properties cold bose gases unitarity extensive... 0 1 0 0 0 0
4297 Lower bounds on the Noether number best known method give lower bound noether num... 0 0 1 0 0 0
4298 A Survey on the Adoption of Cloud Computing in... education key factor ensuring economic growth ... 1 0 0 0 0 0
4299 Deep Neural Networks as Gaussian Processes long known singlelayer fullyconnected neural n... 1 0 0 1 0 0
4300 The Brown-Peterson spectrum is not $E_{2(p^2+2... recently lawson shown primary brownpeterson sp... 0 0 1 0 0 0
4301 Beliefs in Markov Trees - From Local Computati... paper devoted expressiveness hypergraphs uncer... 1 0 0 0 0 0
4302 A model for random fire induced tree-grass coe... treegrass coexistence savanna ecosystems depen... 0 0 0 0 1 0
4303 A depth-based method for functional time serie... approach presented making predictions function... 0 0 0 1 0 0
4304 Dihedral Molecular Configurations Interacting ... paper investigate periodic vibrations group pa... 0 0 1 0 0 0
4305 Understanding news story chains using informat... content analysis news stories whether manual a... 1 0 0 0 0 0
4306 Fair Kernel Learning new social economic activities massively explo... 0 0 0 1 0 0
4307 Underwater Surveying via Bearing only Cooperat... bearing cooperative localization used successf... 1 0 0 0 0 0
4308 Sterile Neutrinos and B-L Symmetry revisit relation neutrino masses spontaneous b... 0 1 0 0 0 0
4309 Effects of parametric uncertainties in cascade... paper concerned generation gaussian invariant ... 1 0 1 0 0 0
4310 A computer-based recursion algorithm for autom... paper proposes computerbased recursion algorit... 1 0 0 0 0 0
4311 Abelian Tensor Models on the Lattice consider chain abelian klebanovtarnopolsky fer... 0 1 0 0 0 0
4312 Distance-based Confidence Score for Neural Net... reliable measurement confidence classifiers pr... 1 0 0 1 0 0
4313 Benford analysis of quantum critical phenomena... benfords law empirical edict stating lower dig... 0 1 0 0 0 0
4314 A Divergence Bound for Hybrids of MCMC and Var... two popular classes methods approximate infere... 1 0 0 1 0 0
4315 Making Sense of Bell's Theorem and Quantum Non... bells theorem fascinated physicists philosophe... 0 1 0 0 0 0
4316 On Some properties of dyadic operators paper objects investigation dyadic operators i... 0 0 1 0 0 0
4317 Rationalizability and Epistemic Priority Order... beginning dynamic game players may exogenous t... 1 0 0 0 0 0
4318 Communications for Wearable Devices wearable devices transforming computing humanc... 1 0 0 0 0 0
4319 Nonlocal Nonlinear Schrödinger Equations and T... study standard nonlocal nonlinear schrdinger n... 0 1 0 0 0 0
4320 Robustness via Retrying: Closed-Loop Robotic M... prediction appealing objective selfsupervised ... 1 0 0 0 0 0
4321 S-Isomap++: Multi Manifold Learning from Strea... manifold learning based methods widely used no... 1 0 0 1 0 0
4322 Extreme radio-wave scattering associated with ... use data extreme radio scintillation demonstra... 0 1 0 0 0 0
4323 Tracking network dynamics: a survey of distanc... longitudinal biomedical studies social network... 1 0 0 1 0 0
4324 Enhancing Multi-Class Classification of Random... neural networks decision trees popular machine... 0 0 0 1 0 0
4325 Graded components of local cohomology modules let regular ring containing field characterist... 0 0 1 0 0 0
4326 Drug Selection via Joint Push and Learning to ... selecting right drugs right patients primary g... 0 0 0 1 0 0
4327 Two-dimensional electron gas at the interface ... temperature dependence electrical resistivity ... 0 1 0 0 0 0
4328 Linear Discriminant Generative Adversarial Net... develop novel method training gans unsupervise... 1 0 0 1 0 0
4329 Machine learning for classification and quanti... monoclonal antibodies constitute one important... 1 0 0 0 0 0
4330 Sequential noise-induced escapes for oscillato... well known addition noise multistable system i... 0 1 0 0 0 0
4331 Confluence of Conditional Term Rewrite Systems... conditional term rewriting intuitive yet compl... 1 0 0 0 0 0
4332 Observation of Skyrmions at Room Temperature i... magnetic skyrmions topological spin structures... 0 1 0 0 0 0
4333 Bayesian Nonparametric Spectral Estimation spectral estimation se aims identify energy si... 0 0 0 1 0 0
4334 Imprecise dynamic walking with time-projection... present new walking footplacement controller b... 1 0 0 0 0 0
4335 Interplay of dilution and magnetic field in th... study magnetic field effects diluted spinice m... 0 1 0 0 0 0
4336 RNN-based Early Cyber-Attack Detection for the... rnnbased forecasting approach used early detec... 1 0 0 0 0 0
4337 Modelling of limitations of bulk heterojunctio... polymer solar cells considered promising candi... 0 1 0 0 0 0
4338 Detecting singular weak-dissipation limit for ... flutter machine introduced investigation singu... 0 1 0 0 0 0
4339 A Hand Combining Two Simple Grippers to Pick u... paper proposes novel robotic hand design assem... 1 0 0 0 0 0
4340 A Time Hierarchy Theorem for the LOCAL Model celebrated time hierarchy theorem turing machi... 1 0 0 0 0 0
4341 Second sound in systems of one-dimensional fer... study sound galilean invariant systems onedime... 0 1 0 0 0 0
4342 The equational theory of the natural join and ... natural join inner union operations combine re... 1 0 1 0 0 0
4343 Doping-induced spin-orbit splitting in Bi-dope... predictions based densityfunctional calculatio... 0 1 0 0 0 0
4344 A robotic vision system to measure tree traits autonomous measurement tree traits branching s... 1 0 0 0 0 0
4345 Resolution enhancement in in-line holography b... mechanical vibrations components optical syste... 0 1 0 0 0 0
4346 Embodied Question Answering present new ai task embodied question answerin... 1 0 0 0 0 0
4347 Toward Unsupervised Text Content Manipulation controlled generation text high practical use ... 1 0 0 0 0 0
4348 Unsupervised learning of object landmarks by f... learning automatically structure object catego... 1 0 0 1 0 0
4349 Data-Efficient Design Exploration through Surr... design optimization techniques often used begi... 0 0 0 1 0 0
4350 Stochastic seismic waveform inversion using ge... present application deep generative models con... 0 0 0 1 0 0
4351 A Capillary Surface with No Radial Limits kirk lancaster david siegel investigated exist... 0 0 1 0 0 0
4352 Brain Computer Interface for Gesture Control o... brain computer interface bci provides promisin... 1 0 0 0 0 0
4353 Multi-agent Gaussian Process Motion Planning v... paper deals motion planning multiple agents re... 1 0 0 0 0 0
4354 Faster Algorithms for Mean-Payoff Parity Games graph games provide foundation modeling synthe... 1 0 0 0 0 0
4355 Similarity Function Tracking using Pairwise Co... recent work distance metric learning focused l... 1 0 0 1 0 0
4356 Deep Boosted Regression for MR to CT Synthesis attenuation correction essential requirement p... 0 0 0 1 0 0
4357 Discretisation of regularity structures introduce general framework allowing apply the... 0 0 1 0 0 0
4358 Optimization of Wireless Power Transfer System... paper presents rigorous optimization technique... 1 0 1 0 0 0
4359 Sharpening Jensen's Inequality paper proposes new sharpened version jensens i... 0 0 1 1 0 0
4360 Knotted solutions, from electromagnetism to fl... knotted solutions electromagnetism fluid dynam... 0 1 0 0 0 0
4361 On the intersection graph of ideals of $\mathb... let integer let imathbbzm set nonzero proper i... 0 0 1 0 0 0
4362 Optimization of Executable Formal Interpreters... recent publications presented novel formal sym... 1 0 0 0 0 0
4363 Healthcare Robotics robots potential game changer healthcare impro... 1 0 0 0 0 0
4364 Personalized Thread Recommendation for MOOC Di... social learning ie students learning social in... 1 0 0 1 0 0
4365 CREATE: Cohort Retrieval Enhanced by Analysis ... background widespread adoption electronic heal... 1 0 0 0 0 0
4366 The same strain of Piscine orthoreovirus (PRV-... piscine orthoreovirus strain prv causative age... 0 0 0 0 1 0
4367 Charge transfer and metallicity in LaNiO$_3$/L... motivated recent experiments use u extension g... 0 1 0 0 0 0
4368 On Learning the $cμ$ Rule in Single and Parall... consider learningbased variants c mu rule sche... 1 0 0 0 0 0
4369 Report: Performance comparison between C2075 a... report cosmological correlation functions used... 1 1 0 0 0 0
4370 Crafting Adversarial Examples For Speech Paral... computational paralinguistic analysis increasi... 1 0 0 1 0 0
4371 On the Analysis of Bacterial Cooperation with ... exchange small molecular signals within microb... 0 0 0 0 1 0
4372 The Ebb and Flow of Controversial Debates on S... explore polarization around controversial topi... 1 1 0 0 0 0
4373 Training of Deep Neural Networks based on Dist... vanishing gradient problem major obstacle succ... 1 0 0 1 0 0
4374 Generalized Concomitant Multi-Task Lasso for s... high dimension customary consider lassotype es... 0 0 1 1 0 0
4375 A deep learning-based method for prostate segm... propose novel automatic method accurate segmen... 1 0 0 1 0 0
4376 A note on signature of Lefschetz fibrations wi... using theorems eliashberg mcduff etnyre et pro... 0 0 1 0 0 0
4377 Wild Bootstrapping Rank-Based Procedures: Mult... splitplot repeated measures designs frequently... 0 0 1 1 0 0
4378 Graphical Sequent Calculi for Modal Logics syntax modal graphs defined terms continuous c... 1 0 0 0 0 0
4379 Engineering a flux-dependent mobility edge in ... great interest realizing quantum simulators ch... 0 1 0 0 0 0
4380 On the tensor semigroup of affine kac-moody li... paper interested decomposition tensor product ... 0 0 1 0 0 0
4381 Electronic and Thermodynamic Properties of the... development new greenhouse gas scavengers acti... 0 1 0 0 0 0
4382 Monaural Singing Voice Separation with Skip-Fi... singing voice separation based deep learning r... 1 0 0 0 0 0
4383 Confidence Bands for Coefficients in High Dime... study highdimensional linear models errorinvar... 0 0 1 1 0 0
4384 On the Power of Truncated SVD for General High... show given estimate widehata close general hig... 0 0 1 1 0 0
4385 Don't Look Back: Robustifying Place Categoriza... human drives car along road first time later r... 1 0 0 0 0 0
4386 Ultra-broadband On-chip Twisted Light Emitter onchip twisted light emitters essential compon... 0 1 0 0 0 0
4387 Linear Additive Markov Processes introduce lamp linear additive markov process ... 1 0 0 1 0 0
4388 Radial and circular synchronization clusters i... consider extended starlike networks hub node c... 1 1 0 0 0 0
4389 On the Fourth Power Moment of Fourier Coeffici... let fourier coefficients holomorphic cusp form... 0 0 1 0 0 0
4390 Provable benefits of representation learning general consensus learning representations use... 1 0 0 1 0 0
4391 TherML: Thermodynamics of Machine Learning work offer framework reasoning wide class exis... 0 0 0 1 0 0
4392 Forecasting Across Time Series Databases using... advent big data nowadays many applications dat... 1 0 0 1 0 0
4393 Application of Self-Play Reinforcement Learnin... introduce new virtual environment simulating c... 0 0 0 1 0 0
4394 Fashion-MNIST: a Novel Image Dataset for Bench... present fashionmnist new dataset comprising x ... 1 0 0 1 0 0
4395 Experimental Evaluation of Book Drawing Algori... kpage book drawing graph gve consists linear o... 1 0 0 0 0 0
4396 Probing magnetism in the vortex phase of PuCoG... measured xray magnetic circular dichroism xmcd... 0 1 0 0 0 0
4397 Joint secrecy over the K-Transmitter Multiple ... paper studies problem secure communication ktr... 1 0 0 0 0 0
4398 Nonlinear Flexoelectricity in Non-centrosymmet... analytically derive elastic dielectric piezoel... 0 1 0 0 0 0
4399 Well-posedness of nonlinear transport equation... concerned multidimensional nonlinear stochasti... 0 0 1 0 0 0
4400 Massively parallel lattice-Boltzmann codes on ... paper describes massively parallel code stateo... 1 0 0 0 0 0
4401 A Large Dimensional Study of Regularized Discr... article carries large dimensional analysis sta... 0 0 0 1 0 0
4402 Non-Spherical Szekeres models in the language ... study differences equivalences nonperturbative... 0 1 0 0 0 0
4403 Smart materials and structures for energy harv... vibrational energy harvesters capture mechanic... 0 1 0 0 0 0
4404 DropIn: Making Reservoir Computing Neural Netw... paper presents novel principled approach train... 1 0 0 1 0 0
4405 A Single-Channel Architecture for Algebraic In... area efficient rowparallel architecture propos... 1 0 0 0 0 0
4406 More lessons from the six box toy experiment following paper fundamental aspects probabilis... 0 1 1 0 0 0
4407 A Biomechanical Study on the Use of Curved Dri... osteonecrosis occurs due loss blood supply bon... 0 0 0 0 1 0
4408 Output feedback exponential stabilization for ... study output feedback exponential stabilizatio... 0 0 1 0 0 0
4409 Bio-inspired Tensegrity Soft Modular Robots paper introduce design principle develop novel... 1 0 0 0 0 0
4410 How proper are Bayesian models in the astronom... wellknown bayes theorem assumes posterior dist... 0 1 0 0 0 0
4411 Diffusive Tidal Evolution for Migrating hot Ju... consider jovian planet highly eccentric orbit ... 0 1 0 0 0 0
4412 Von Neumann dimension, Hodge index theorem and... note contains reformulation hodge index theore... 0 0 1 0 0 0
4413 Relativistic asymmetries in the galaxy cross-c... study asymmetry twopoint crosscorrelation func... 0 1 0 0 0 0
4414 Hybrid CTC-Attention based End-to-End Speech R... paper present endtoend automatic speech recogn... 1 0 0 0 0 0
4415 Harmonic analysis and distribution-free infere... fourier analysis representation circular distr... 0 0 0 1 0 0
4416 Free-form modelling of galaxy clusters: a Baye... new method presented modelling physical proper... 0 1 0 0 0 0
4417 Multi-focus Attention Network for Efficient De... deep reinforcement learning drl shown incredib... 1 0 0 1 0 0
4418 Weak lensing power spectrum reconstruction by ... propose analytical method blind separation abs... 0 1 0 0 0 0
4419 Optimal Output Consensus of High-Order Multi-A... paper study optimal output consensus problem m... 1 0 1 0 0 0
4420 Equilibrium selection via Optimal transport propose new dynamics equilibrium selection fin... 0 0 1 0 0 0
4421 Predicting Parkinson's Disease using Latent In... paper presents new method medical diagnosis ne... 1 0 0 1 0 0
4422 Representation Theorems for Solvable Sesquilin... new results added paper qclosed solvable sesqu... 0 0 1 0 0 0
4423 Using Continuous Power Modulation for Exchangi... letter provides simple efficient technique all... 1 0 0 0 0 0
4424 Spectral Efficient and Energy Aware Clustering... current envisaged increase cellular traffic po... 1 0 0 0 0 0
4425 Lattice Rescoring Strategies for Long Short Te... recurrent neural network rnn language models l... 1 0 0 1 0 0
4426 Vanishing of Littlewood-Richardson polynomials... j deloerat mcallister k mulmuleyh narayananm s... 1 0 1 0 0 0
4427 Multi-task memory networks for category-specif... aspectbased sentiment analysis existing method... 1 0 0 0 0 0
4428 Discussion on Computationally Efficient Multiv... begin discussion summarizing methodology propo... 0 0 1 1 0 0
4429 Elucidation of the helical spin structure of FeAs present results resonant xray scattering measu... 0 1 0 0 0 0
4430 A Brain-Inspired Trust Management Model to Ass... rapid popularity internet things iot cloud com... 0 0 0 0 1 0
4431 The topography of the environment alters the o... environments scarce resources adopting right s... 0 1 0 0 0 0
4432 A Neural Network Approach for Mixing Language ... performance neural network nnbased language mo... 1 0 0 0 0 0
4433 Iron Intercalated Covalent-Organic Frameworks:... covalentorganic frameworks cofs intriguing pla... 0 1 0 0 0 0
4434 DCFNet: Deep Neural Network with Decomposed Co... filters convolutional neural network cnn conta... 0 0 0 1 0 0
4435 Symmetries, Invariants and Generating Function... gravitationally collapsed objects known biased... 0 1 0 0 0 0
4436 Reversible Sequences of Cardinals, Reversible ... relational structure mathbb x said reversible ... 0 0 1 0 0 0
4437 A Longitudinal Study of Google Play difficulty large scale monitoring app markets ... 1 0 0 0 0 0
4438 Nonparametric Variational Auto-encoders for Hi... recently developed variational autoencoders va... 1 0 0 1 0 0
4439 Corpus-compressed Streaming and the Spotify Pr... work describe problem refer textbfspotify prob... 1 0 0 0 0 0
4440 An intrinsic parallel transport in Wasserstein... smooth compact connected riemannian manifold l... 0 0 1 0 0 0
4441 Factor Analysis for Spectral Estimation power spectrum estimation important tool many ... 0 0 1 1 0 0
4442 Effects of Images with Different Levels of Fam... evaluating human brain potentials watching dif... 0 0 0 1 0 0
4443 Image synthesis with graph cuts: a fast model ... geophysical inversion ideally produce geologic... 0 1 0 0 0 0
4444 Graded super duality for general linear Lie su... provide new proof super duality equivalence in... 0 0 1 0 0 0
4445 On a Formal Model of Safe and Scalable Self-dr... recent years car makers tech companies racing ... 1 0 0 1 0 0
4446 A Low-power Reversible Alkali Atom Source electricallycontrollable solidstate reversible... 0 1 0 0 0 0
4447 GoT-WAVE: Temporal network alignment using gra... global pairwise network alignment gpna aims fi... 1 0 0 1 0 0
4448 Randomness-induced quantum spin liquid on hone... present quantu spin liquid state spin honeycom... 0 1 0 0 0 0
4449 Symmetric structure for the endomorphism algeb... show singular dominant integral weight lambda ... 0 0 1 0 0 0
4450 Cantor series and rational numbers article devoted investigation representation r... 0 0 1 0 0 0
4451 PAFit: an R Package for the Non-Parametric Est... many realworld systems profitably described co... 1 1 0 1 0 0
4452 Kähler metrics via Lorentzian Geometry in dime... given semiriemannian manifold mg two distingui... 0 0 1 0 0 0
4453 z-Classes and Rational Conjugacy Classes in Al... paper compute number zclasses conjugacy classe... 0 0 1 0 0 0
4454 Sleep Stage Classification Based on Multi-leve... paper proposes practical approach automatic sl... 1 0 0 1 0 0
4455 Martin David Kruskal: a biographical memoir martin david kruskal one versatile theoretical... 0 1 0 0 0 0
4456 Unified theory for finite Markov chains provide unified framework compute stationary d... 0 0 1 0 0 0
4457 A Simulator for Hedonic Games hedonic games meant model coalitions people fo... 1 0 0 0 0 0
4458 Estimating Large Precision Matrices via Modifi... introduce kbanded cholesky prior estimating hi... 0 0 1 1 0 0
4459 High order conformal symplectic and ergodic sc... paper consider stochastic langevin equation ad... 0 0 1 0 0 0
4460 Crowd ideation of supervised learning problems crowdsourcing important avenue collecting mach... 0 0 0 1 0 0
4461 Joins in the strong Weihrauch degrees weihrauch degrees strong weihrauch degrees par... 1 0 1 0 0 0
4462 Advanced LSTM: A Study about Better Time Depen... long shortterm memory lstm normally used recur... 1 0 0 1 0 0
4463 A combinatorial model for the free loop fibration introduce abstract notion closed necklical set... 0 0 1 0 0 0
4464 On the number of circular orders on a group give classification complete algebraic descrip... 0 0 1 0 0 0
4465 Preparation and Measurement in Quantum Memory ... quantum cognition delivered number models sema... 0 0 0 0 1 0
4466 Detailed proof of Nazarov's inequality purpose note provide detailed proof nazarovs i... 0 0 1 1 0 0
4467 TRPL+K: Thick-Restart Preconditioned Lanczos+K... lanczos method one standard approaches computi... 1 0 0 0 0 0
4468 Behavior of l-bits near the many-body localiza... eigenstates fully manybody localized fmbl syst... 0 1 0 0 0 0
4469 ROPE: high-dimensional network modeling with r... network modeling become increasingly popular a... 0 0 0 1 0 0
4470 Developing Robot Driver Etiquette Based on Nat... automated vehicles change society improved saf... 1 0 0 0 0 0
4471 e-Fair: Aggregation in e-Commerce for Exploiti... recent years many new interesting models succe... 1 0 0 0 0 0
4472 Stable spike clusters for the precursor Gierer... consider gierermeinhardt system small inhibito... 0 0 1 0 0 0
4473 Solvability of curves on surfaces article study subloci solvable curves mathcalm... 0 0 1 0 0 0
4474 Scaling Limits for Super--replication with Tra... prove limit theorems superreplication cost eur... 0 0 0 0 0 1
4475 Kernel-based Inference of Functions over Graphs study networks witnessed explosive growth past... 1 0 0 1 0 0
4476 Noncommutative products of Euclidean spaces present natural families coordinate algebras n... 0 0 1 0 0 0
4477 X-ray and Optical Study of the Gamma-ray Sourc... observed field fermi source fgl j optical xray... 0 1 0 0 0 0
4478 Adversarial Variational Inference and Learning... markov random fields mrfs find applications va... 1 0 0 1 0 0
4479 Geometric k-nearest neighbor estimation of ent... nonparametric estimation mutual information us... 0 0 1 1 0 0
4480 Resonant Electron Impact Excitation of 3d leve... present laboratory spectra pd transitions fe f... 0 1 0 0 0 0
4481 Automated Top View Registration of Broadcast F... paper propose novel method register football b... 1 0 0 0 0 0
4482 Reservoir Computing for Detection of Steady St... fabrication devices industrial plants often in... 1 0 0 0 0 0
4483 Fast swaption pricing in Gaussian term structu... propose fast accurate numerical method pricing... 0 0 0 0 0 1
4484 Temporal-related Convolutional-Restricted-Bolt... article extend conventional framework convolut... 1 0 0 1 0 0
4485 Predicting how and when hidden neurons skew me... major obstacle understanding neural coding com... 0 1 0 0 0 0
4486 Humanoid Robots as Agents of Human Consciousne... loving ai project involves developing software... 1 0 0 0 0 0
4487 Reinforcing Adversarial Robustness using Model... paper study leveraging confidence information ... 1 0 0 1 0 0
4488 Stateless Puzzles for Real Time Online Fraud P... profitability fraud online systems app markets... 1 0 0 0 0 0
4489 Multi-Period Flexibility Forecast for Low Volt... nearfuture electric distribution grids operati... 1 0 0 0 0 0
4490 Assessing the Economics of Customer-Sited Mult... paper presents approach assess economics custo... 0 0 1 0 0 0
4491 A Hamiltonian approach for the Thermodynamics ... work study thermodynamics ddimensional schwarz... 0 1 1 0 0 0
4492 Dzyaloshinskii Moriya interaction across antif... antiferromagnet afm ferromagnet fm interfaces ... 0 1 0 0 0 0
4493 Pore cross-talk in colloidal filtration blockage pores particles found many processes ... 0 1 0 0 0 0
4494 Temporal Markov Processes for Transport in Por... monte carlo mc simulations transport random po... 1 1 0 0 0 0
4495 Defect Properties of Na and K in Cu2ZnSnS4 fro... ingrowth postdeposition treatment cuznsns czts... 0 1 0 0 0 0
4496 Explicit minimisation of a convex quadratic un... novel approach introduced widely occurring pro... 0 0 1 1 0 0
4497 Morphisms of open games define notion morphisms open games exploiting ... 1 0 0 0 0 0
4498 U(1)$\times$SU(2) Gauge Invariance Made Simple... semirelativistic densityfunctional theory incl... 0 1 0 0 0 0
4499 L^2-Betti numbers of rigid C*-tensor categorie... compute lbetti numbers free ctensor categories... 0 0 1 0 0 0
4500 Hierarchical internal representation of spectr... recently increasing interest research interpre... 1 0 0 1 0 0
4501 Global weak solutions in a three-dimensional K... coupled quasilinear kellersegelnavierstokes sy... 0 0 1 0 0 0
4502 On Consistency of Compressive Spectral Clustering spectral clustering one popular methods commun... 1 0 0 1 0 0
4503 Large-scale validation of an automatic EEG aro... textbfobjective assess validity automatic eeg ... 0 0 0 0 1 0
4504 Story of the Developments in Statistical Physi... review developments statistical physics fractu... 0 1 0 0 0 0
4505 LocalNysation: A bottom up approach to efficie... consider localized approach wellestablished se... 0 0 1 1 0 0
4506 Evolutionary Acyclic Graph Partitioning directed graphs widely used model data flow ex... 1 0 0 0 0 0
4507 Mechanisms of near-surface structural evolutio... weardriven structural evolution nanocrystallin... 0 1 0 0 0 0
4508 Generalized Hölder's inequality on Morrey spaces aim paper present necessary sufficient conditi... 0 0 1 0 0 0
4509 Endomorphism Algebras of Abelian varieties wit... mostly survey article use information galois p... 0 0 1 0 0 0
4510 Ranks of rational points of the Jacobian varie... paper obtain bounds mordellweil ranks cyclotom... 0 0 1 0 0 0
4511 A Generalized Function defined by the Euler fi... shown region euler integral first kind diverge... 0 0 1 0 0 0
4512 Optical emission of graphene and electron-hole... report first experimental observation graphene... 0 1 0 0 0 0
4513 Occlusion-Aware Risk Assessment for Autonomous... navigating safely urban environments remains c... 1 0 0 0 0 0
4514 Quantum oscillations and Dirac-Landau levels i... magnetic field applied metals semimetals quant... 0 1 0 0 0 0
4515 Parallel Implementation of Efficient Search Sc... emergence development cancer consequence accum... 1 0 0 1 0 0
4516 A note on the paper "Contraction mappings in $... paper correct inaccuracy appears proof theorem... 0 0 1 0 0 0
4517 Floquet Analysis of Kuznetsov--Ma breathers: A... present work aim taking step towards spectral ... 0 1 0 0 0 0
4518 Playing Music in Just Intonation - A Dynamical... investigate dynamically adapting tuning scheme... 0 1 0 0 0 0
4519 Photon propagation through linearly active dimers provide analytic propagator nonhermitian dimer... 0 1 0 0 0 0
4520 End-to-End Learning of Geometry and Context fo... propose novel deep learning architecture regre... 1 0 0 0 0 0
4521 BLADYG: A Graph Processing Framework for Large... recently distributed processing large dynamic ... 1 0 0 0 0 0
4522 Variational Inference via Transformations on D... variational inference methods often focus prob... 1 0 0 1 0 0
4523 VLSI Computational Architectures for the Arith... discrete cosine transform dct widelyused impor... 1 0 0 0 0 0
4524 Simulated Tornado Optimization propose swarmbased optimization algorithm insp... 1 0 1 0 0 0
4525 On a backward problem for multidimensional Gin... paper consider backward time problem ginzburgl... 0 0 1 0 0 0
4526 Electronic and atomic kinetics in solids irrad... brief review discuss transient processes solid... 0 1 0 0 0 0
4527 Network analysis of the COSMOS galaxy field galaxy data provided cosmos survey degree fiel... 0 1 0 0 0 0
4528 A Functional Taxonomy of Music Generation Systems digital advances transformed face automatic mu... 1 0 0 0 0 0
4529 Covariant representations for singular actions... singular actions calgebras automorphic group a... 0 0 1 0 0 0
4530 Control Synthesis for Permutation-Symmetric Hi... general purpose correctbyconstruction synthesi... 1 0 1 0 0 0
4531 Commutativity and Commutative Pairs of Some Di... study explicit differential equations represen... 1 0 0 0 0 0
4532 Astrophysical signatures of leptonium positrons annihilate every second centre galax... 0 1 0 0 0 0
4533 Enhancing Stratified Graph Sampling Algorithms... sampling technique become one recent research ... 1 0 0 0 0 0
4534 Testing for Balance in Social Networks friendship antipathy exist concert one another... 1 0 0 0 0 0
4535 Empirical Recurrence Rates for Seismic Signals... review recurrence intervals function ground mo... 0 1 0 0 0 0
4536 Landau Damping of Beam Instabilities by Electr... modern future particle accelerators employ inc... 0 1 0 0 0 0
4537 On Algebraic Characterization of SSC of the Ja... paper algebraic combinatorial characterization... 0 0 1 0 0 0
4538 Accelerated Gossip via Stochastic Heavy Ball M... paper show stochastic heavy ball method shb po... 1 0 0 0 0 0
4539 Attention-Based Models for Text-Dependent Spea... attentionbased models recently shown great per... 1 0 0 1 0 0
4540 Escaping the Curse of Dimensionality in Simila... similarity metric learning provides principled... 1 0 0 1 0 0
4541 Automata-Guided Hierarchical Reinforcement Lea... skills learned deep reinforcement learning oft... 1 0 0 0 0 0
4542 Emergent transport in a many-body open system ... analyze open manybody system strongly coupled ... 0 1 0 0 0 0
4543 Experimental Investigation of Optimum Beam Siz... paper effect transmitter beam size performance... 1 1 0 0 0 0
4544 The role of surface water in the geometry of M... mars surface bears imprint valley networks for... 0 1 0 0 0 0
4545 An All-in-One Network for Dehazing and Beyond paper proposes image dehazing model built conv... 1 0 0 0 0 0
4546 GdPtPb: A non collinear antiferromagnet with d... spirit searching gdbased frustrated rare earth... 0 1 0 0 0 0
4547 Belitskii's canonical forms of linear dynamica... note indecomposable canonical forms linear sys... 0 0 1 0 0 0
4548 The Geometry of Nodal Sets and Outlier Detection let mg compact manifold let delta phik lambdak... 0 0 1 1 0 0
4549 Multimodal Clustering for Community Detection multimodal clustering unsupervised technique m... 1 0 0 1 0 0
4550 Identification of a space varying coefficient ... paper solve problem identification coefficient... 1 0 1 0 0 0
4551 Efficient four-wave mixing at the nanofocus of... nonlinear optics especially frequency mixing u... 0 1 0 0 0 0
4552 Weakly nonergodic dynamics in the Gross--Pitae... microcanonical grosspitaevskii aka semiclassic... 0 1 0 0 0 0
4553 Does agricultural subsidies foster Italian sou... last decades public policies become central pi... 0 0 0 1 0 0
4554 Proton fire hose instabilities in the expandin... using twodimensional hybrid expanding box simu... 0 1 0 0 0 0
4555 Minimax Optimal Rates of Estimation in Functio... establish minimax optimal rates convergence no... 0 0 1 1 0 0
4556 Phase Retrieval via Randomized Kaczmarz: Theor... consider problem phase retrieval ie solving sy... 1 0 1 1 0 0
4557 Beyond perturbation 1: de Rham spaces shown one uses notion infinity nilpotent eleme... 0 0 1 0 0 0
4558 Semantic Web Prefetching Using Semantic Relate... internet become way life fast growing digital ... 1 0 0 0 0 0
4559 Learning Certifiably Optimal Rule Lists for Ca... present design implementation custom discrete ... 0 0 0 1 0 0
4560 Cold-Start Reinforcement Learning with Softmax... policygradient approaches reinforcement learni... 1 0 0 0 0 0
4561 Implicit Cooperative Positioning in Vehicular ... absolute positioning vehicles based global nav... 1 0 0 1 0 0
4562 A Generalized Accelerated Composite Gradient M... demonstrate augmented estimate sequence framew... 0 0 1 0 0 0
4563 Piezoresponse of ferroelectric films in ferroi... interplay electrochemical surface charges bulk... 0 1 0 0 0 0
4564 Penalty Alternating Direction Methods for Mixe... feasibility pumps highly effective primal heur... 0 0 1 0 0 0
4565 Lorentz covariant and gauge invariant descript... starting covariant expressions gauge independe... 0 1 0 0 0 0
4566 Dirichlet's theorem and Jacobsthal's function relatively prime refer set integers congruent ... 0 0 1 0 0 0
4567 Asymptotic control theory for a closed string develop asymptotical control theory one simple... 0 0 1 0 0 0
4568 Large Scale Replication Projects in Contempora... replication complicated psychological research... 0 0 0 1 0 0
4569 Intrinsic pinning by naturally occurring corre... study angular dependence dissipation supercond... 0 1 0 0 0 0
4570 Models for the Displacement Calculus displacement calculus mathbfd conservative ext... 1 0 0 0 0 0
4571 Labeled homology of higher-dimensional automata construct labeling homomorphisms cubical homol... 1 0 1 0 0 0
4572 Magnetic Actuation and Feedback Cooling of a C... demonstrate integration mesoscopic ferromagnet... 0 1 0 0 0 0
4573 A Maximum Matching Algorithm for Basis Selecti... present solution scale spectral algorithms lea... 1 0 0 1 0 0
4574 Bäcklund Transformations for the Boussinesq Eq... bcklund transformation bt good boussinesq equa... 0 1 1 0 0 0
4575 Towards Evolutional Compression compressing convolutional neural networks cnns... 1 0 0 1 0 0
4576 Spin inversion in fluorinated graphene n-p jun... consider dilute fluorinated graphene nanoribbo... 0 1 0 0 0 0
4577 Brunn-Minkowski inequalities in product metric... given one metric measure space x satisfying li... 0 0 1 0 0 0
4578 Deep Learning with Low Precision by Half-wave ... problem quantizing activations deep neural net... 1 0 0 0 0 0
4579 Degenerate cyclotomic Hecke algebras and highe... associate monoidal category mathcalhlambda dom... 0 0 1 0 0 0
4580 Intense automorphisms of finite groups let g group automorphism g called intense send... 0 0 1 0 0 0
4581 The spectra of harmonic layer potential operat... study adjoint double layer potential associate... 0 0 1 0 0 0
4582 Experimental Determination of the Structural C... structural coefficient restitution describes k... 0 1 0 0 0 0
4583 Onset of a modulational instability in trapped... explore phase diagram finitesized dysprosium d... 0 1 0 0 0 0
4584 Visual Detection of Structural Changes in Time... topological data analysis emerging area explor... 1 0 0 0 0 0
4585 Controller Synthesis for Discrete-Time Polynom... paper design nonlinear state feedback controll... 1 0 0 0 0 0
4586 Lose The Views: Limited Angle CT Reconstructio... computed tomography ct reconstruction fundamen... 0 0 0 1 0 0
4587 A three-dimensional symmetry result for a phas... consider bounded solutions nonlocal allencahn ... 0 0 1 0 0 0
4588 The growth of bismuth on Bi$_2$Se$_3$ and the ... bi films thicknesses several bilayers bls grow... 0 1 0 0 0 0
4589 Introduction to Tensor Decompositions and thei... tensors multidimensional arrays numerical valu... 1 0 0 1 0 0
4590 Sampling-based vs. Design-based Uncertainty in... consider researcher estimating parameters regr... 0 0 1 1 0 0
4591 Scalable Joint Models for Reliable Uncertainty... missing data noisy observations pose significa... 1 0 0 1 0 0
4592 Concurrent Coding: A Reason to Think Different... concurrent coding unconventional encoding tech... 1 0 0 0 0 0
4593 Traveling dark-bright solitons in a reduced sp... present work explore potential spinorbit coupl... 0 1 0 0 0 0
4594 On methods to determine bounds on the Q-factor... paper revisit extend interesting case bounds q... 0 1 1 0 0 0
4595 Nano-optical imaging of monolayer MoSe2 using ... band gap tuning twodimensional transitional me... 0 1 0 0 0 0
4596 Electron paramagnetic resonance and photochrom... defect diamond formed vacancy surrounded three... 0 1 0 0 0 0
4597 On central leaves of Hodge-type Shimura variet... kisin pappas constructed integral models hodge... 0 0 1 0 0 0
4598 The sequential loss of allelic diversity paper gives new flavor peter jagers coauthors ... 0 0 0 0 1 0
4599 Online classification of imagined speech using... braincomputer interfaces bcis based functional... 0 0 0 0 1 0
4600 A Parsimonious Dynamical Model for Structural ... human brain capable diverse feats intelligence... 0 0 0 0 1 0
4601 Estimation of mean residual life yang considered empirical estimate mean residu... 0 0 1 1 0 0
4602 Trace-free characters and abelian knot contact... calculate ghost characters torus knot using sh... 0 0 1 0 0 0
4603 Surface Plasmon Excitation of Second Harmonic ... aim clarify role absorption plays nonlinear op... 0 1 0 0 0 0
4604 Fault diagnosability of data center networks data center networks dnk proposed many desirab... 1 0 0 0 0 0
4605 The Effects of Protostellar Disk Turbulence on... turbulence leading candidate angular momentum ... 0 1 0 0 0 0
4606 A General Framework of Multi-Armed Bandit Proc... paper proposes general framework multiarmed ba... 0 0 0 1 0 0
4607 Autonomous Urban Localization and Navigation w... urban environments offer challenging scenario ... 1 0 0 0 0 0
4608 Iterative Refinement for $\ell_p$-norm Regression give improved algorithms ellpregression proble... 1 0 0 1 0 0
4609 Minimal free resolution of the associated grad... article give explicit minimal free resolution ... 0 0 1 0 0 0
4610 Knowledge distillation using unlabeled mismatc... current approaches knowledge distillation kd e... 1 0 0 1 0 0
4611 Forbidden triads and Creative Success in Jazz:... article argues importance forbidden triads ope... 0 1 0 1 0 0
4612 Structural analysis of rubble-pile asteroids a... solar system small bodies come wide variety sh... 0 1 0 0 0 0
4613 The Imani Periodic Functions: Genesis and Prel... leahhamiltonian hxyyx introduced functional eq... 0 0 1 0 0 0
4614 Towards fully automated protein structure eluc... nuclear magnetic resonance nmr spectroscopy on... 0 0 0 1 0 0
4615 On families of fibred knots with equal Seifert... every genus ggeq construct infinite family str... 0 0 1 0 0 0
4616 Robust Computation in 2D Absolute EIT (a-EIT) ... objective absolute images important applicatio... 1 0 0 0 0 0
4617 A Comparison of Spatial-based Targeted Disease... epidemic outbreaks important healthcare challe... 1 1 0 0 0 0
4618 Attosecond Streaking in the Water Window: A Ne... report first streaking measurement waterwindow... 0 1 0 0 0 0
4619 The intrinsic Baldwin effect in broad Balmer l... investigate intrinsic baldwin effect beff broa... 0 1 0 0 0 0
4620 A Novel Formal Agent-based Simulation Modeling... hivaids spread depends upon complex patterns i... 1 1 0 0 0 0
4621 Interplay of Fluorescence and Phosphorescence ... biluminescent organic emitters show simultaneo... 0 1 0 0 0 0
4622 Ion-impact-induced multifragmentation of liqui... instability liquid droplet traversed energetic... 0 1 0 0 0 0
4623 Planning Hybrid Driving-Stepping Locomotion on... navigating search rescue environments challeng... 1 0 0 0 0 0
4624 Blackbody Radiation in Classical Physics: A Hi... point current textbooks modern physics century... 0 1 0 0 0 0
4625 The Lyman Continuum escape fraction of faint g... reionization universe one important topics pre... 0 1 0 0 0 0
4626 The effect of stellar and AGN feedback on the ... study effect different feedback prescriptions ... 0 1 0 0 0 0
4627 Asteroid 2017 FZ2 et al.: signs of recent mass... first direct detection asteroidal yorp effect ... 0 1 0 0 0 0
4628 On Increasing Self-Confidence in Non-Bayesian ... study convergence loglinear nonbayesian social... 1 0 0 0 0 0
4629 Exploring a search for long-duration transient... soft gamma repeaters anomalous xray pulsars th... 0 1 0 0 0 0
4630 Optomechanical characterization of silicon nit... report optical mechanical characterization arr... 0 1 0 0 0 0
4631 Coupling between a charge density wave and mag... prototypical magnetic memory shape alloy nimng... 0 1 0 0 0 0
4632 Best-Effort FPGA Programming: A Few Steps Can ... fpgabased heterogeneous architectures provide ... 1 0 0 0 0 0
4633 Towards the study of least squares estimators ... penalized least squares estimation popular tec... 0 0 1 1 0 0
4634 A Multi-traffic Inter-cell Interference Coordi... paper proposes novel semidistributed practical... 1 0 0 0 0 0
4635 Distributional Adversarial Networks propose framework adversarial training relies ... 1 0 0 0 0 0
4636 First order magneto-structural transition and ... first order magnetostructural transition ttsim... 0 1 0 0 0 0
4637 Parametric Gaussian Process Regression for Big... work introduces concept parametric gaussian pr... 0 0 0 1 0 0
4638 Achieving non-discrimination in prediction discriminationaware classification receiving i... 1 0 0 1 0 0
4639 Fixing and almost fixing a planar convex body set points n fixes planar convex body k points... 0 0 1 0 0 0
4640 Undersampled dynamic X-ray tomography with dim... paper consider priorbased dimension reduction ... 0 0 0 1 0 0
4641 End-to-End Sound Source Separation Conditioned... perform endtoend sound source separation sss v... 1 0 0 0 0 0
4642 Group analysis of general Burgers-Korteweg-de ... complete group classification problem class di... 0 1 1 0 0 0
4643 Evolutionary Generative Adversarial Networks generative adversarial networks gan effective ... 0 0 0 1 0 0
4644 Extended Sammon Projection and Wavelet Kernel ... smartphones ubiquitously integrated home work ... 1 0 0 0 0 0
4645 On the free path length distribution for linea... consider distribution free path lengths distan... 0 0 1 0 0 0
4646 Spin-Orbit Misalignments of Three Jovian Plane... present measurements spinorbit misalignments h... 0 1 0 0 0 0
4647 Accurate parameter estimation for Bayesian Net... paper introduces novel parameter estimation me... 1 0 0 1 0 0
4648 Modeling and Simulation of the Dynamics of the... paper applies multibond graph approach rigid m... 1 0 0 0 0 0
4649 Nauticle: a general-purpose particle-based sim... nauticle generalpurpose simulation tool flexib... 1 1 0 0 0 0
4650 Local and non-local energy spectra of superflu... phase transition temperature tc simeq k heb mi... 0 1 0 0 0 0
4651 Microwave SQUID Multiplexer demonstration for ... key performance characteristics demonstrated m... 0 1 0 0 0 0
4652 Preserving Differential Privacy Between Featur... privacy crucial many applications machine lear... 1 0 0 1 0 0
4653 Parallel implementation of a vehicle rail dyna... research presents model complex dynamic object... 1 0 0 0 0 0
4654 Towards Neural Phrase-based Machine Translation paper present neural phrasebased machine trans... 1 0 0 1 0 0
4655 Towards Accurate Multi-person Pose Estimation ... propose method multiperson detection pose esti... 1 0 0 0 0 0
4656 Global band topology of simple and double Dira... combine space group representation theory toge... 0 1 0 0 0 0
4657 Topological Perspectives on Statistical Quanti... statistics cumulants defined functions measure... 0 0 1 0 0 0
4658 A Python Calculator for Supernova Remnant Evol... freely available python code modelling snr evo... 0 1 0 0 0 0
4659 Über die Präzision interprozeduraler Analysen work examine two approaches interprocedural da... 1 0 0 0 0 0
4660 Gee-Haw Whammy Diddle geehaw whammy diddle seemingly simple mechanic... 0 1 0 0 0 0
4661 Cancellation theorem for Grothendieck-Witt-cor... cancellation theorem grothendieckwittcorrespon... 0 0 1 0 0 0
4662 Jumping across biomedical contexts using compr... motivation rapid growth diverse biological dat... 1 0 0 1 0 0
4663 Memories of a Theoretical Physicist dealing brain injury finding difficult work tw... 0 1 0 0 0 0
4664 Connecting the dots between mechanosensitive c... rapid changes extracellular osmolarity one man... 0 0 0 0 1 0
4665 Optical Mapping Near-eye Three-dimensional Dis... present optical mapping neareye omni threedime... 1 1 0 0 0 0
4666 Quantum anomalous Hall state from spatially de... topological phases typically encode topology l... 0 1 0 0 0 0
4667 Poisson--Gamma Dynamical Systems introduce new dynamical system sequentially ob... 1 0 0 1 0 0
4668 Best-Choice Edge Grafting for Efficient Struct... incremental methods structure learning pairwis... 1 0 0 1 0 0
4669 Cavity-enhanced transport of charge theoretically investigate charge transport ele... 0 1 0 0 0 0
4670 Isoparameteric hypersurfaces in a Randers sphe... paper study isoparametric hypersurfaces rander... 0 0 1 0 0 0
4671 Bright-field microscopy of transparent objects... formation brightfield microscopic image transp... 0 1 0 0 0 0
4672 Entropy Production Rate is Maximized in Non-Co... actin cytoskeleton active semiflexible polymer... 0 0 0 0 1 0
4673 Intrinsic resolving power of XUV diffraction g... introduce method using fizeau interferometry m... 0 1 0 0 0 0
4674 When do we have the power to detect biological... determining relative importance environmental ... 0 0 0 0 1 0
4675 Spectral Algorithms for Computing Fair Support... classifiers rating scores prone implicitly cod... 1 0 0 1 0 0
4676 Random matrix approach for primal-dual portfol... paper revisit portfolio optimization problems ... 1 1 0 0 0 0
4677 On a method for constructing the Lax pairs for... method constructing lax pairs nonlinear integr... 0 1 0 0 0 0
4678 Insight into the modeling of seismic waves for... motivated need detect underground cavity withi... 0 1 0 0 0 0
4679 Uncorrelated far AGN flaring with their delaye... distant agn within allowed gzk cutoff radius r... 0 1 0 0 0 0
4680 How to centralize and normalize quandle extens... show quandle coverings sense eisermann form re... 0 0 1 0 0 0
4681 Geometric Fluctuation Theorem derive extended fluctuation theorem geometric ... 0 1 0 0 0 0
4682 Opinion Dynamics via Search Engines (and other... ranking algorithms information gatekeepers int... 1 0 0 0 0 1
4683 Exploring home robot capabilities by medium fi... order autonomous robots able support peoples w... 1 0 0 0 0 0
4684 Unsupervised Domain Adaptation Based on Source... unsupervised domain adaptation problem setting... 0 0 0 1 0 0
4685 On structured surfaces with defects: geometry,... given distribution defects structured surface ... 0 1 1 0 0 0
4686 Management system for the SND experiments new management system snd detector experiments... 1 1 0 0 0 0
4687 Fatiguing STDP: Learning from Spike-Timing Cod... spiking neural networks snns could play key ro... 1 0 0 1 0 0
4688 Kernel-Based Learning for Smart Inverter Control distribution grids currently challenged freque... 1 0 0 1 0 0
4689 Temperature fluctuations in a changing climate... ongoing debate literature whether present glob... 0 1 0 0 0 0
4690 Matrix factorizations for quantum complete int... introduce twisted matrix factorizations quantu... 0 0 1 0 0 0
4691 Coresets for Vector Summarization with Applica... provide deterministic data summarization algor... 1 0 0 0 0 0
4692 Two-dimensional matter-wave solitons and vorti... nonlinear latticea new nonlinear class periodi... 0 1 0 0 0 0
4693 RELink: A Research Framework and Test Collecti... improvements entityrelationship er search tech... 1 0 0 0 0 0
4694 NimbRo-OP2X: Adult-sized Open-source 3D Printe... humanoid robotics research depends capable rob... 1 0 0 0 0 0
4695 Optical bandgap engineering in nonlinear silic... silicon nitride awellestablished material phot... 0 1 0 0 0 0
4696 Approximate Steepest Coordinate Descent propose new selection rule coordinate selectio... 1 0 1 0 0 0
4697 How Robust are Deep Neural Networks? convolutional recurrent deep neural networks s... 0 0 0 1 0 0
4698 Learning Latent Representations for Speech Gen... ability model generative process learn latent ... 1 0 0 1 0 0
4699 Approximate Profile Maximum Likelihood propose efficient algorithm approximate comput... 1 0 0 1 0 0
4700 On the generalized nonlinear Camassa-Holm equa... paper generalized nonlinear camassaholm equati... 0 0 1 0 0 0
4701 802.11 Wireless Simulation and Anomaly Detecti... despite growing popularity wireless networks u... 1 0 0 0 0 0
4702 Early MFCC And HPCP Fusion for Robust Cover So... schemes automatic cover song identification fo... 1 0 0 0 0 0
4703 Optimally Gathering Two Robots present algorithm ensures finite time gatherin... 1 0 0 0 0 0
4704 On Grauert-Riemenschneider type criterions let xomega compact hermitian manifold complex ... 0 0 1 0 0 0
4705 P-Governance Technology: Using Big Data for Po... information communication technology ict playi... 1 0 0 0 0 0
4706 The Forgettable-Watcher Model for Video Questi... number visual question answering approaches pr... 1 0 0 0 0 0
4707 Analogues of the $p^n$th Hilbert symbol in cha... pth degree hilbert symbol cdotcdot pktimesktim... 0 0 1 0 0 0
4708 GAMER-2: a GPU-accelerated adaptive mesh refin... present gamer gpuaccelerated adaptive mesh ref... 0 1 0 0 0 0
4709 Partition algebras $\mathsf{P}_k(n)$ with $2k>... assume mathsfmn ndimensional permutation modul... 0 0 1 0 0 0
4710 Distributed sub-optimal resource allocation ov... paper consider distributed optimization design... 0 0 1 0 0 0
4711 Decentralized P2P Energy Trading under Network... increasing uptake distributed energy resources... 1 0 0 0 0 0
4712 Fictitious GAN: Training GANs with Historical ... generative adversarial networks gans powerful ... 0 0 0 1 0 0
4713 Suppression of Hall number due to charge densi... understanding pseudogap phase holedoped high t... 0 1 0 0 0 0
4714 The Wavefunction of the Collapsing Bose-Einste... boseeinstein condensates tunable interatomic i... 0 1 0 0 0 0
4715 Not-So-Random Features propose principled method kernel learning reli... 1 0 0 1 0 0
4716 Dual-Primal Graph Convolutional Networks recent years surge interest developing deep le... 0 0 0 1 0 0
4717 CLEAR: Coverage-based Limiting-cell Experiment... direct cdna preamplification protocols develop... 0 0 0 0 1 0
4718 Training Deep AutoEncoders for Collaborative F... paper proposes novel model rating prediction t... 1 0 0 1 0 0
4719 Unit circle rectification of the MVDR beamformer sample matrix inversion smi beamformer impleme... 1 0 0 0 0 0
4720 Reducing Storage of Global Wind Ensembles with... wind potential make significant contribution f... 0 0 0 1 0 0
4721 Jackknife Empirical Likelihood-based inference... widely used income inequality measure gini ind... 0 0 0 1 0 0
4722 Continual One-Shot Learning of Hidden Spike-Pa... paper presents constructive algorithm achieves... 0 0 0 1 0 0
4723 Interpretable High-Dimensional Inference Via S... fields neuroimaging genetics key goal testing ... 0 0 1 1 0 0
4724 A maximum principle for free boundary minimal ... establish boundary maximum principle free boun... 0 0 1 0 0 0
4725 Drawing Big Graphs using Spectral Sparsification spectral sparsification general technique deve... 1 0 0 0 0 0
4726 Optimal paths on the road network as directed ... analyze statistics shortest fastest paths road... 0 1 0 0 0 0
4727 Optimal proportional reinsurance and investmen... work investigate optimal proportional reinsura... 0 0 0 0 0 1
4728 Formal Black-Box Analysis of Routing Protocol ... internet infrastructure relies entirely open s... 1 0 0 0 0 0
4729 Finding polynomial loop invariants for probabi... quantitative loop invariants essential element... 1 0 0 0 0 0
4730 Active Decision Boundary Annotation with Deep ... paper active learning goal reduce data annotat... 1 0 0 0 0 0
4731 Multifrequency Excitation and Detection Scheme... theoretically experimentally demonstrate multi... 0 1 0 0 0 0
4732 Extended Kitaev chain with longer-range hoppin... consider kitaev chain model finite infinite ra... 0 1 0 0 0 0
4733 Global entropy solutions to the compressible E... study motion isentropic gas nozzles major subj... 0 0 1 0 0 0
4734 Effects of atrial fibrillation on the arterial... atrial fibrillation af common form arrhythmia ... 0 0 0 0 1 0
4735 Controllability and optimal control of the tra... study controllability partial differential equ... 0 0 1 0 0 0
4736 Gravitational instabilities in a protosolar-li... gravitational instabilities gis likely fundame... 0 1 0 0 0 0
4737 Information Processing by Networks of Quantum ... suggest model multiagent society decision make... 1 0 0 0 0 0
4738 The Value of Sharing Intermittent Spectrum recent initiatives regulatory agencies increas... 1 0 0 0 0 0
4739 Origin of layer dependence in band structures ... study origin layer dependence band structures ... 0 1 0 0 0 0
4740 From Strings to Sets complete proof given relative interpretability... 0 0 1 0 0 0
4741 Sharp measure contraction property for general... prove htype carnot groups rank k dimension n s... 0 0 1 0 0 0
4742 Twisted Quantum Double Model of Topological Or... generalize twisted quantum double model topolo... 0 1 1 0 0 0
4743 Evolutionary game of coalition building under ... study fragmentationcoagulation merging splitti... 0 0 1 0 0 0
4744 Nearly resolution V plans on blocks of small size bagchi main effect plans orthogonal block fact... 0 0 1 1 0 0
4745 Graphene-based electron transport layers in pe... electron transport layer etl plays fundamental... 0 1 0 0 0 0
4746 Learning and Transferring IDs Representation i... many machine intelligence techniques developed... 1 0 0 1 0 0
4747 Differentiable Supervector Extraction for Enco... paper propose new differentiable neural networ... 1 0 0 0 0 0
4748 In situ accretion of gaseous envelopes on to p... core accretion hypothesis posits planets signi... 0 1 0 0 0 0
4749 New Two Step Laplace Adam-Bashforth Method for... paper presents novel method allows generalise ... 0 0 1 0 0 0
4750 The Impact of Alternation alternating automata widely used model verify ... 1 0 0 0 0 0
4751 Partial-wave Coulomb t-matrices for like-charg... study special case analytical solution lippman... 0 1 0 0 0 0
4752 Robust Causal Estimation in the Large-Sample L... causal effect estimation observational data im... 1 0 0 1 0 0
4753 The Cross-section of a Spherical Double Cone show poset slnorbit closures product two parti... 0 0 1 0 0 0
4754 Understanding looping kinetics of a long polym... fundamental understanding loop formation long ... 0 1 0 0 0 0
4755 SESA: Supervised Explicit Semantic Analysis recent years supervised representation learnin... 1 0 0 0 0 0
4756 High-Level Concepts for Affective Understandin... paper aims bridge affective gap image content ... 1 0 0 0 0 0
4757 A Network of Networks Approach to Interconnect... present two different approaches model power g... 0 1 0 0 0 0
4758 A Nonparametric Method for Producing Isolines ... present method drawing isolines indicating reg... 0 0 0 1 0 0
4759 Finite element error analysis for measure-valu... work concerned optimal control problems govern... 0 0 1 0 0 0
4760 Marked points on translation surfaces show glr equivariant point markings orbit clos... 0 0 1 0 0 0
4761 Multitask Learning for Fundamental Frequency E... fundamental frequency f estimation polyphonic ... 1 0 0 1 0 0
4762 Real eigenvalues of a non-self-adjoint perturb... study eigenvalues selfadjoint zakharovshabat o... 0 0 1 0 0 0
4763 Planning with Multiple Biases recent work considered theoretical models beha... 1 1 0 0 0 0
4764 Zhu reduction for Jacobi $n$-point functions a... establish precise zhu reduction formulas jacob... 0 0 1 0 0 0
4765 Fourier-like multipliers and applications for ... timelimited functions bandlimited functions pl... 0 0 1 0 0 0
4766 Inferring Properties of the ISM from Supernova... model size distribution supernova remnants inf... 0 1 0 0 0 0
4767 Mining Target Attribute Subspace and Set of Ta... community detection provides invaluable help v... 1 1 0 0 0 0
4768 Achieving rental harmony with a secretive room... given subjective preferences n roommates nbedr... 0 0 1 0 0 0
4769 A Channel-Based Perspective on Conjugate Priors desired closure property bayesian probability ... 1 0 0 0 0 0
4770 Cascaded Coded Distributed Computing on Hetero... coded distributed computing cdc introduced li ... 1 0 0 0 0 0
4771 A FEL Based on a Superlattice motion photon emission electrons superlattice ... 0 1 0 0 0 0
4772 Thermal and non-thermal emission from the coco... present hydrodynamic simulations hot cocoon pr... 0 1 0 0 0 0
4773 Least Squares Polynomial Chaos Expansion: A Re... noninstitutive polynomial chaos expansion pce ... 0 0 0 1 0 0
4774 Efficient Dense Labeling of Human Activity Seq... recognizing human activities sequence challeng... 1 0 0 0 0 0
4775 Higher Tetrahedral Algebras introduce study higher tetrahedral algebras ex... 0 0 1 0 0 0
4776 Adaptive multi-penalty regularization based on... many algorithms parameter tuning remains chall... 1 0 0 1 0 0
4777 Shape Generation using Spatially Partitioned P... propose method generate shapes using point clo... 1 0 0 0 0 0
4778 Open Vocabulary Scene Parsing recognizing arbitrary objects wild challenging... 1 0 0 0 0 0
4779 Parameter Estimation in Mean Reversion Process... paper describes procedure estimate parameters ... 0 0 0 1 0 0
4780 User Interface (UI) Design Issues for the Mult... multitude web desktop applications widely avai... 1 0 0 0 0 0
4781 NetSpam: a Network-based Spam Detection Framew... nowadays big part people rely available conten... 1 1 0 0 0 0
4782 Proving Non-Deterministic Computations in Agda investigate proving properties curry programs ... 1 0 0 0 0 0
4783 NeuroRule: A Connectionist Approach to Data Mi... classification involves finding rules partitio... 1 0 0 0 0 0
4784 Contextual Explanation Networks modern learning algorithms excel producing acc... 1 0 0 1 0 0
4785 Inference for Differential Equation Models usi... statistical regression models whose mean funct... 0 0 0 1 0 0
4786 Joint Trajectory and Communication Design for ... unmanned aerial vehicles uavs attracted signif... 1 0 1 0 0 0
4787 Imaging the Schwarzschild-radius-scale Structu... propose new imaging technique radio opticalinf... 0 1 0 0 0 0
4788 The process of purely event-driven programs using process algebra paper describes formalis... 1 0 0 0 0 0
4789 Partial dust obscuration in active galactic nu... profiles broad emission lines active galactic ... 0 1 0 0 0 0
4790 From Plants to Landmarks: Time-invariant Plant... agricultural robots expected increase yields s... 1 0 0 0 0 0
4791 There's more to the multimedia effect than mee... textbooks applied mathematics often use graphs... 0 1 1 0 0 0
4792 Methods of Enumerating Two Vertex Maps of Arbi... paper provides alternate proof parts gouldensl... 0 0 1 0 0 0
4793 Higher Theory and the Three Problems of Physics according butterfieldisham proposal understand... 0 1 1 0 0 0
4794 Light emission by accelerated electric, toroid... emission electromagnetic radiation accelerated... 0 1 0 0 0 0
4795 Bayesian Approaches to Distribution Regression distribution regression recently attracted muc... 1 0 0 1 0 0
4796 Atomic-Scale Structure Relaxation, Chemistry a... using stateoftheart microscopy spectroscopy ab... 0 1 0 0 0 0
4797 Transição de fase no sistema de Hénon-Heiles (... henonheiles system originally proposed describ... 0 1 0 0 0 0
4798 Self-similar solutions of fragmentation equati... study large time behaviour mass size particles... 0 0 1 0 0 0
4799 Refining Source Representations with Relation ... although neural machine translation nmt encode... 1 0 0 0 0 0
4800 On the Statistical Efficiency of Optimal Kerne... propose novel combination optimization tools l... 1 0 0 1 0 0
4801 Ultracold atoms in multiple-radiofrequency dre... present first experimental demonstration multi... 0 1 0 0 0 0
4802 Distribution Matching in Variational Inference show variational autoencoders consistently fai... 0 0 0 1 0 0
4803 Henkin constructions of models with size conti... survey technique constructing customized model... 0 0 1 0 0 0
4804 Orthogonal groups in characteristic 2 acting o... show integers mgeq integers kgeq orthogonal gr... 0 0 1 0 0 0
4805 Free LSD: Prior-Free Visual Landing Site Detec... full autonomy fixedwing unmanned aerial vehicl... 1 0 0 0 0 0
4806 Semi-supervised and Active-learning Scenarios:... address problem efficient acousticmodel refine... 1 0 0 0 0 0
4807 Energy spectrum of cascade showers generated b... spatial distribution cherenkov radiation casca... 0 1 0 0 0 0
4808 The limit point of the pentagram map pentagram map discrete dynamical system define... 0 0 1 0 0 0
4809 Reconstruction formulas for Photoacoustic Imag... paper study problem photoacoustic inversion we... 0 0 1 0 0 0
4810 Rank Determination for Low-Rank Data Completion recently fundamental conditions sampling patte... 1 0 0 1 0 0
4811 Network structure from rich but noisy data driven growing interest sciences industry amon... 1 1 0 0 0 0
4812 Algebraic Foundations of Proof Refinement contribute general apparatus dependent tacticb... 1 0 0 0 0 0
4813 Transfer Learning for Neural Semantic Parsing goal semantic parsing map natural language mac... 1 0 0 0 0 0
4814 Definable Valuations induced by multiplicative... study algebraic implications nonindependence p... 0 0 1 0 0 0
4815 Bridging the Gap Between Layout Pattern Sampli... layout hotpot detection one main steps modern ... 0 0 0 1 0 0
4816 iCorr : Complex correlation method to detect o... computational prediction origin replication or... 0 1 0 0 0 0
4817 On the Power Spectral Density Applied to the A... routine task art historians painting diagnosti... 1 0 1 0 0 0
4818 Simons' type formula for slant submanifolds of... paper study slant submanifold complex space fo... 0 0 1 0 0 0
4819 Eco-evolutionary feedbacks - theoretical model... theoretical models pertaining feedbacks ecolog... 0 0 0 0 1 0
4820 Unusual behavior of cuprates explained by hete... cuprate hightemperature superconductors among ... 0 1 0 0 0 0
4821 An Agile Software Engineering Method to Design... cryptocurrencies foundation technology blockch... 1 0 0 0 0 0
4822 Optimizing Prediction Intervals by Tuning Rand... recent studies shown tuning prediction models ... 0 0 0 1 0 0
4823 Explicit construction of RIP matrices is Ramse... matrices phiinrntimes p satisfying restricted ... 0 0 0 1 0 0
4824 Rocket Launching: A Universal and Efficient Fr... models applied real time response task like cl... 1 0 0 1 0 0
4825 The CMS HGCAL detector for HL-LHC upgrade high luminosity lhc hllhc integrate times lumi... 0 1 0 0 0 0
4826 Complete Classification of Generalized Santha-... let mathcalf finite alphabet mathcald finite s... 1 0 0 0 0 0
4827 Hermann Hankel's "On the general theory of mot... present companion paper contemporary look herm... 0 1 1 0 0 0
4828 Targeted Damage to Interdependent Networks giant mutually connected component gmcc interd... 1 0 0 0 0 0
4829 The limit of the Hermitian-Yang-Mills flow on ... paper study asymptotic behavior hermitianyangm... 0 0 1 0 0 0
4830 High-accuracy phase-field models for brittle f... phasefield approaches fracture based energy mi... 0 1 1 0 0 0
4831 Straggler Mitigation in Distributed Optimizati... slow running straggler tasks significantly red... 1 0 0 1 0 0
4832 Inference Trees: Adaptive Inference with Explo... introduce inference trees new class inference ... 0 0 0 1 0 0
4833 Application of backpropagation neural networks... propose scheme employ backpropagation neural n... 1 0 0 1 0 0
4834 Bayesian Bootstraps for Massive Data recently two scalable adaptations bootstrap pr... 0 0 0 1 0 0
4835 Show, Adapt and Tell: Adversarial Training of ... impressive image captioning results achieved d... 1 0 0 0 0 0
4836 Faster Fuzzing: Reinitialization with Deep Neu... improve performance american fuzzy lop afl fuz... 1 0 0 0 0 0
4837 Contego: An Adaptive Framework for Integrating... embedded realtime systems rts pervasive many m... 1 0 0 0 0 0
4838 Second Order Analysis for Joint Source-Channel... derive second order rates joint sourcechannel ... 1 0 1 0 0 0
4839 Interface currents and magnetization in single... chiral helical domain walls generic defects to... 0 1 0 0 0 0
4840 Implicit Weight Uncertainty in Neural Networks modern neural networks tend overconfident unse... 1 0 0 1 0 0
4841 A systematic analysis of the XMM-Newton backgr... detailed characterization particle induced bac... 0 1 0 0 0 0
4842 DeepPermNet: Visual Permutation Learning present principled approach uncover structure ... 1 0 0 0 0 0
4843 ADE String Chains and Mirror Symmetry superconformal field theories scfts scfts high... 0 0 1 0 0 0
4844 (non)-automaticity of completely multiplicativ... article consider completely multiplicative seq... 0 0 1 0 0 0
4845 Timing Aware Dummy Metal Fill Methodology paper analyzed parasitic coupling capacitance ... 1 0 0 0 0 0
4846 Asymptotic efficiency of the proportional comp... consider manager allocates fixed total payment... 1 0 0 0 0 0
4847 Non-equilibrium statistical mechanics of conti... continuous attractors used understand recent n... 0 0 0 0 1 0
4848 Some results on the existence of t-all-or-noth... vallornothing transform bijective mapping defi... 1 0 1 0 0 0
4849 Exhaustive Exploration of the Failure-obliviou... highavailability software systems requires aut... 1 0 0 0 0 0
4850 Theoretical Accuracy in Cosmological Growth Es... elucidate importance consistent treatment grav... 0 1 0 0 0 0
4851 Model-Robust Counterfactual Prediction Method develop novel method counterfactual analysis b... 0 0 1 1 0 0
4852 Exponentiated Generalized Pareto Distribution:... generalized pareto distribution gpd plays cent... 0 0 1 1 0 0
4853 Learning with Average Top-k Loss work introduce em average topk atk loss new ag... 1 0 0 1 0 0
4854 Reflexive polytopes arising from perfect graphs reflexive polytopes form one distinguished cla... 0 0 1 0 0 0
4855 Meta Networks neural networks successfully applied applicati... 1 0 0 1 0 0
4856 Variable selection for clustering with Gaussia... mixture models become widely used clustering g... 1 0 0 1 0 0
4857 Analysing Magnetism Using Scanning SQUID Micro... scanning superconducting quantum interference ... 0 1 0 0 0 0
4858 Algorithms for solving optimization problems a... machine learning models incorporating multiple... 0 0 0 1 0 0
4859 On the essential self-adjointness of singular ... prove general essential selfadjointness criter... 0 0 1 0 0 0
4860 Are Saddles Good Enough for Deep Learning? recent years seen growing interest understandi... 1 0 0 1 0 0
4861 Monotonicity and enclosure methods for the p-L... show convex hull monotone perturbation homogen... 0 0 1 0 0 0
4862 Tension and chemical efficiency of Myosin-II m... recent experiments demonstrate molecular motor... 0 1 0 0 0 0
4863 Token-based Function Computation with Memory distributed function computation node initial ... 1 0 0 1 0 0
4864 Simple property of heterogeneous aspiration dy... individuals adapt behavior cultural evolution ... 0 0 0 0 1 0
4865 Warm dark matter and the ionization history of... warm dark matter scenarios structure formation... 0 1 0 0 0 0
4866 High quality factor manganese-doped aluminum l... aluminum lumpedelement kinetic inductance dete... 0 1 0 0 0 0
4867 Tetramer Bound States in Heteronuclear Systems calculate universal spectrum trimer tetramer s... 0 1 0 0 0 0
4868 Dark Energy Cosmological Models with General f... paper constructed dark energy models anisotrop... 0 1 0 0 0 0
4869 Mutual Kernel Matrix Completion huge influx various data nowadays extracting k... 1 0 0 1 0 0
4870 Quantum Klein Space and Superspace give algebraic quantization sense quantum grou... 0 0 1 0 0 0
4871 Bayesian Lasso Posterior Sampling via Parallel... well known lasso interpreted bayesian posterio... 0 0 0 1 0 0
4872 Endogeneous Dynamics of Intraday Liquidity paper investigate endogenous information conta... 0 0 0 0 0 1
4873 Medical Image Synthesis for Data Augmentation ... data diversity critical success training deep ... 0 0 0 1 0 0
4874 Adaptive Feature Representation for Visual Tra... robust feature representation plays significan... 1 0 0 0 0 0
4875 An analysis of the SPARSEVA estimate for the f... paper develop upper bound sparseva sparse esti... 0 0 1 1 0 0
4876 The Remarkable Similarity of Massive Galaxy Cl... present results chandra xray survey massive ga... 0 1 0 0 0 0
4877 Rigorous estimates for the relegation algorithm revisit relegation algorithm deprit et al cele... 0 1 0 0 0 0
4878 Linear Pentapods with a Simple Singularity Var... exists bijection configuration space linear pe... 1 0 0 0 0 0
4879 Neural Networks as Interacting Particle System... neural networks central tool machine learning ... 0 0 0 1 0 0
4880 Adaptive Similar Triangles Method: a Stable Al... paper motivated two important applications ent... 0 0 1 0 0 0
4881 Images of Ideals under Derivations and $\mathc... let k field characteristic zero x free variabl... 0 0 1 0 0 0
4882 Maximum genus of the Jenga like configurations treat boundary union blocks jenga game surface... 0 0 1 0 0 0
4883 A Decidable Very Expressive Description Logic ... introduce mathcaldlr extension nary propositio... 1 0 0 0 0 0
4884 Cloud-based Deep Learning of Big EEG Data for ... developing braincomputer interfacebci seizure ... 1 0 0 1 0 0
4885 Centrality measures for graphons: Accounting f... relational datasets modeled graphs keep increa... 1 0 1 1 0 0
4886 A time-periodic mechanical analog of the quant... theoretically investigate stability linear osc... 0 1 0 0 0 0
4887 Anharmonicity and the isotope effect in superc... recent experiments schaeffer shown lithium pre... 0 1 0 0 0 0
4888 Time-resolved polarimetry of the superluminous... present imaging polarimetry superluminous supe... 0 1 0 0 0 0
4889 Deep Bayesian Active Learning with Image Data even though active learning forms important pi... 1 0 0 1 0 0
4890 Robust Optical Flow Estimation in Rainy Scenes optical flow estimation rainy scenes challengi... 1 0 0 0 0 0
4891 Thermophysical Phenomena in Metal Additive Man... among many additive manufacturing processes me... 1 1 0 0 0 0
4892 Numerical Methods for Pulmonary Image Registra... due complexity invisibility human organs diagn... 0 1 0 0 0 0
4893 Solving Non-parametric Inverse Problem in Cont... paper address inverse problem statistical mach... 1 1 0 1 0 0
4894 Topology Adaptive Graph Convolutional Networks spectral graph convolutional neural networks c... 1 0 0 1 0 0
4895 Suspensions of finite-size neutrally-buoyant s... study turbulent square duct flow dense suspens... 0 1 0 0 0 0
4896 Far-from-equilibrium transport of excited carr... transport charged carriers regimes strong none... 0 1 0 0 0 0
4897 On annihilators of bounded $(\frak g, \frak k)... let frak g semisimple lie algebra frak ksubset... 0 0 1 0 0 0
4898 Neutron Star Planets: Atmospheric processes an... roughly neutron stars known handful substellar... 0 1 0 0 0 0
4899 Discrete Time-Crystalline Order in Cavity and ... discrete time crystals recently proposed exper... 0 1 0 0 0 0
4900 On the number of solutions of some transcenden... give upper lower bounds number solutions equat... 0 0 1 0 0 0
4901 Relaxation of p-growth integral functionals un... representation formula relaxation integral ene... 0 0 1 0 0 0
4902 Simultaneous shot inversion for nonuniform geo... stochastic optimization key efficient inversio... 0 0 0 1 0 0
4903 Critical neural networks with short and long t... recent years self organised critical neuronal ... 0 1 0 0 0 0
4904 Harnessing functional segregation across brain... music multifaceted stimulus evolving multiple ... 0 0 0 0 1 0
4905 Some characterizations of the preimage of $A_{... purpose paper give characterizations weight fu... 0 0 1 0 0 0
4906 Magma oceans and enhanced volcanism on TRAPPIS... lowmass stars plentiful universe often host sm... 0 1 0 0 0 0
4907 Coqatoo: Generating Natural Language Versions ... due numerous advantages formal proofs proof as... 1 0 0 0 0 0
4908 Buildup of Speaking Skills in an Online Learni... study explore peerinteraction effects online n... 1 0 0 0 0 0
4909 A Note on Kaldi's PLDA Implementation explanations kaldis plda implementation make f... 0 0 0 1 0 0
4910 Breakdown of the Chiral Anomaly in Weyl Semime... lowenergy quasiparticles weyl semimetals conde... 0 1 0 0 0 0
4911 Predicting Auction Price of Vehicle License Pl... chinese societies superstition paramount impor... 1 0 0 1 0 0
4912 Magnetic field--induced modification of select... magnetic fieldinduced giant modification proba... 0 1 0 0 0 0
4913 An Adaptive, Multivariate Partitioning Algorit... work develop adaptive multivariate partitionin... 1 0 1 0 0 0
4914 Twists of quantum Borel algebras classify drinfeld twists quantum borel subalge... 0 0 1 0 0 0
4915 Distributions and Statistical Power of Optimal... big data analysis detecting rare weak signals ... 0 0 1 1 0 0
4916 Cubical-like geometry of quasi-median graphs a... class quasimedian graphs generalisation median... 0 0 1 0 0 0
4917 Doubly Nested Network for Resource-Efficient I... propose doubly nested networkdnnet neurons rep... 0 0 0 1 0 0
4918 Structural and bonding character of potassium-... recently series reports wang et al superconduc... 0 1 0 0 0 0
4919 Influence of the Forward Difference Scheme for... research numerical stability difference equati... 1 0 0 0 0 0
4920 Uniqueness of the von Neumann continuous factor division ring denote mathcal md dring obtained... 0 0 1 0 0 0
4921 A hybrid finite volume -- finite element metho... paper develops hybrid method solving system ad... 0 1 1 0 0 0
4922 From Quenched Disorder to Continuous Time Rand... work focuses quantitative representation trans... 0 1 0 0 0 0
4923 Network Flows that Solve Least Squares for Lin... paper presents firstorder distributed continuo... 1 0 0 0 0 0
4924 A Framework for Evaluating Model-Driven Self-a... last years model driven development mdd compon... 1 0 0 0 0 0
4925 Second order necessary and sufficient optimali... article study optimal control problems systems... 0 0 1 0 0 0
4926 Bipartite Envy-Free Matching bipartite envyfree matching befm relaxation pe... 1 0 0 0 0 0
4927 Phase diagram of a generalized off-diagonal Au... offdiagonal aubryandr aa model recently attrac... 0 1 0 0 0 0
4928 Around Average Behavior: 3-lambda Network Model analysis networks affects research many real p... 1 1 0 0 0 0
4929 Hierarchical star formation across the grand d... investigate star formation spatially organized... 0 1 0 0 0 0
4930 Informed Asymptotically Optimal Anytime Search path planning robotics often requires finding ... 1 0 0 0 0 0
4931 Certifying coloring algorithms for graphs with... let pk path ck cycle k vertices kkk complete b... 1 0 0 0 0 0
4932 Efficient Estimation for Dimension Reduction w... propose general index model survival data gene... 0 0 1 1 0 0
4933 Analysis of error control in large scale two-s... dealing problem simultaneously testing large n... 0 0 1 1 0 0
4934 Subdifferential characterization of probabilit... probability functions figure prominently optim... 0 0 1 0 0 0
4935 XES Tensorflow - Process Prediction using the ... predicting next activity running process impor... 1 0 0 0 0 0
4936 EPTL - A temporal logic for weakly consistent ... high availability scalability weaklyconsistent... 1 0 0 0 0 0
4937 An initial-boundary value problem for the inte... investigate initialboundary value problem inte... 0 1 1 0 0 0
4938 4-DoF Tracking for Robot Fine Manipulation Tasks paper presents two visual trackers different p... 1 0 0 0 0 0
4939 Absence of chaos in Digital Memcomputing Machi... digital memcomputing machines dmms nonlinear d... 1 1 0 0 0 0
4940 New ideas for tests of Lorentz invariance with... describe broadly applicable experimental propo... 0 1 0 0 0 0
4941 Fine-resolution analysis of exoplanetary distr... investigate exoplanetary distributions using n... 0 1 0 0 0 0
4942 Small sets in dense pairs let widetildemathcal mlangle mathcal prangle e... 0 0 1 0 0 0
4943 Meta-Learning MCMC Proposals effective implementations samplingbased probab... 1 0 0 1 0 0
4944 Putting Self-Supervised Token Embedding on the... information distribution electronic messages p... 1 0 0 0 0 0
4945 Enhanced ferromagnetic transition temperature ... correlation magnetic properties microscopic st... 0 1 0 0 0 0
4946 Getting the public involved in Quantum Error C... decodoku project seeks let users get handson c... 0 1 0 0 0 0
4947 Courcelle's Theorem Made Dynamic dynamic complexity concerned updating output p... 1 0 0 0 0 0
4948 PorePy: An Open-Source Simulation Tool for Flo... fractures ubiquitous subsurface strongly affec... 1 1 0 0 0 0
4949 Second-grade fluids in curved pipes paper concerned application finite element met... 0 1 1 0 0 0
4950 Designing nearly tight window for improving ti... many audio signal processing methods formulate... 1 0 0 0 0 0
4951 Asymptotic Properties of Recursive Maximum Lik... using stochastic gradient search optimal filte... 0 0 0 1 0 0
4952 A Fast Integrated Planning and Control Framewo... safe efficient planning control autonomous dri... 1 0 0 0 0 0
4953 Microservices in Practice: A Survey Study microservices architectures become largely pop... 1 0 0 0 0 0
4954 Predicted novel insulating electride compound ... application high pressure fundamentally modify... 0 1 0 0 0 0
4955 The relationship between $k$-forcing and $k$-p... zero forcing power domination iterative proces... 0 0 1 0 0 0
4956 The transition matrix between the Specht and w... compare two important bases irreducible repres... 0 0 1 0 0 0
4957 Robotic Wireless Sensor Networks chapter present literature survey emerging cut... 1 0 0 0 0 0
4958 Using Mode Connectivity for Loss Landscape Ana... mode connectivity recently introduced frame wo... 0 0 0 1 0 0
4959 Lifelong Generative Modeling lifelong learning problem learning multiple co... 1 0 0 1 0 0
4960 Finding Root Causes of Floating Point Error wi... floatingpoint arithmetic plays central role sc... 1 0 0 0 0 0
4961 Catalog of Candidates for Quasars at 3 < z < 5... compiled catalog candidates type quasars redsh... 0 1 0 0 0 0
4962 The Theta Number of Simplicial Complexes introduce generalization celebrated lovsz thet... 1 0 1 0 0 0
4963 Prediction Scores as a Window into Classifier ... multiclass classifiers make prediction test sa... 1 0 0 1 0 0
4964 Effective perturbation theory for linear opera... propose new approach spectral theory perturbed... 0 0 1 0 0 0
4965 I-MMSE relations in random linear estimation a... consider random linear estimation gaussian mea... 1 1 0 0 0 0
4966 Non-convex Finite-Sum Optimization Via SCSG Me... develop class algorithms variants stochastical... 1 0 1 0 0 0
4967 Minority carrier diffusion lengths and mobilit... hole diffusion length ningaas extracted two sa... 0 1 0 0 0 0
4968 Layered semi-convection and tides in giant pla... layered semiconvection possible candidate expl... 0 1 0 0 0 0
4969 A new Weber type integral equation related to ... derive solvability conditions closedform solut... 0 0 1 0 0 0
4970 Non-commutative Discretize-then-Optimize Algor... paper analyze convergence several discretizeth... 0 0 1 0 0 0
4971 Gate-Variants of Gated Recurrent Unit (GRU) Ne... paper evaluates three variants gated recurrent... 1 0 0 1 0 0
4972 Some results on the annihilators and attached ... let r frak local ring finitely generated rmodu... 0 0 1 0 0 0
4973 Translation matrix elements for spherical Gaus... spherical gausslaguerre sgl basis functions ie... 0 0 1 0 0 0
4974 A theoretical analysis of extending frequency-... inspired recent developments research atomphot... 0 1 0 0 0 0
4975 Parallel Concatenation of Bayesian Filters: Tu... manuscript method developing novel filtering a... 0 0 0 1 0 0
4976 Shot noise in ultrathin superconducting wires quantum phase slips qps may produce nonequilib... 0 1 0 0 0 0
4977 Linearity of stability conditions study different concepts stability modules fin... 0 0 1 0 0 0
4978 Urban Data Streams and Machine Learning: A Cas... paper show using publicly available data strea... 1 0 0 1 0 0
4979 BinPro: A Tool for Binary Source Code Provenance enforcing open source licenses gnu general pub... 1 0 0 0 0 0
4980 The placement of the head that maximizes predi... minimization length syntactic dependencies wel... 1 1 0 0 0 0
4981 Nonparametric regression using deep neural net... consider multivariate nonparametric regression... 1 0 1 1 0 0
4982 Unsupervised Learning of Neural Networks to Ex... paper presents unsupervised method learn neura... 1 0 0 1 0 0
4983 Measuring Cognitive Conflict in Virtual Realit... virtual reality vr emerges mainstream platform... 1 0 0 0 0 0
4984 Strong deformations of DNA: Effect on the pers... extreme deformations dna double helix attracte... 0 0 0 0 1 0
4985 BézierGAN: Automatic Generation of Smooth Curv... many realworld objects designed smooth curves ... 0 0 0 1 0 0
4986 Raman scattering study of tetragonal magnetic ... use inelastic light scattering study srxnaxfea... 0 1 0 0 0 0
4987 Learning Mixture of Gaussians with Streaming Data paper study problem learning mixture gaussians... 1 0 0 1 0 0
4988 Dust in the reionization era: ALMA observation... report detailed analysis gravitationallylensed... 0 1 0 0 0 0
4989 Green-Blue Stripe Pattern for Range Sensing fr... paper present novel method rapid highresolutio... 1 0 0 0 0 0
4990 It Takes (Only) Two: Adversarial Generator-Enc... present new autoencodertype architecture train... 1 0 0 1 0 0
4991 Electrostatic gyrokinetic simulation of global... boundary plasma physics plays important role t... 0 1 0 0 0 0
4992 The Montecinos-Balsara ADER-FV Polynomial Basi... hyperbolic systems pdes solved arbitrary order... 0 1 0 0 0 0
4993 Reducibility of the Quantum Harmonic Oscillato... prove reducibility result quantum harmonic osc... 0 0 1 0 0 0
4994 Model Order Selection Rules For Covariance Str... adaptive classification interference covarianc... 0 0 1 1 0 0
4995 Enhancing Interpretability of Black-box Soft-m... lack interpretability often makes blackbox mod... 1 0 0 1 0 0
4996 CollaGAN : Collaborative GAN for Missing Image... many applications requiring multiple inputs ob... 1 0 0 1 0 0
4997 A Kuroda-style j-translation topos theory wellknown nucleus j gives rise tr... 0 0 1 0 0 0
4998 Electrical 2π phase control of infrared light ... modulating amplitude phase light heart many ap... 0 1 0 0 0 0
4999 Existence of closed geodesics through a regula... show translation surface regular point contain... 0 0 1 0 0 0
5000 Mathematical and numerical validation of the s... work extend solid harmonics derivation used ac... 0 1 0 0 0 0
5001 L1-norm Principal-Component Analysis of Comple... lnorm principalcomponent analysis lpca realval... 1 0 0 0 0 0
5002 Viscous dissipation of surface waves and its r... consider dissipation surface waves fluids view... 0 1 0 0 0 0
5003 Neural Optimizer Search with Reinforcement Lea... present approach automate process discovering ... 1 0 0 1 0 0
5004 Hybrid Sterility Can Only be Primary When Acti... parental gametes unite form zygote develops ad... 0 0 0 0 1 0
5005 Point-Cloud-Based Aerial Fragmentation Analysi... work investigates application unmanned aerial ... 1 0 0 0 0 0
5006 DyNet: The Dynamic Neural Network Toolkit describe dynet toolkit implementing neural net... 1 0 0 1 0 0
5007 Polyteam Semantics team semantics mathematical framework modern l... 1 0 0 0 0 0
5008 Where Classification Fails, Interpretation Rises intriguing property deep neural networks inher... 1 0 0 1 0 0
5009 Prior matters: simple and general methods for ... latent dirichlet allocation lda models trained... 1 0 0 0 0 0
5010 Buckling in Armored Droplets issue buckling mechanism droplets stabilized s... 0 1 0 0 0 0
5011 Density of Analytic Polynomials in Abstract Ha... let x separable banach function space unit cir... 0 0 1 0 0 0
5012 On non-Abelian Lie Bracket of Generalized Cova... theoretical paper continuation arxiv considers... 0 0 1 0 0 0
5013 The Topology of Statistical Verifiability topological models empirical formal inquiry in... 1 0 0 0 0 0
5014 A spectral approach to the linking number in t... given closed riemannian manifold pair multicur... 0 0 1 0 0 0
5015 Volkov-Pankratov states in topological heteroj... show smooth interface two insulators opposite ... 0 1 0 0 0 0
5016 Sampling-based Estimation of In-degree Distrib... focus work estimation indegree distribution di... 1 0 0 0 0 0
5017 Phase I results with the Large Angle Beamstrah... report superkekb phase operations large angle ... 0 1 0 0 0 0
5018 Network flow of mobile agents enhances the evo... study effect contingent movement persistence c... 0 0 0 0 1 0
5019 Neural Face Editing with Intrinsic Image Disen... traditional face editing methods often require... 1 0 0 0 0 0
5020 Data Reduction and Image Reconstruction Techni... technique nonredundant masking nrm transforms ... 0 1 0 0 0 0
5021 Dynamic transport in a quantum wire driven by ... consider gated onedimensional quantum wire dis... 0 1 0 0 0 0
5022 A Nonlinear Kernel Support Matrix Machine for ... many problems supervised tensor learning stl r... 1 0 0 1 0 0
5023 Noisy Networks for Exploration introduce noisynet deep reinforcement learning... 1 0 0 1 0 0
5024 Global stability of the Rate Control Protocol ... rate control protocol rcp congestion control p... 1 0 0 0 0 0
5025 Performance Evaluation of Channel Decoding Wit... demand high data rate low latency fifth genera... 1 0 0 0 0 0
5026 Trading Bounds for Memory in Games with Counters study twoplayer games counters objective first... 1 0 0 0 0 0
5027 On the Tropical Discs Counting on Elliptic K3 ... using lagrangian floer theory study tropical g... 0 0 1 0 0 0
5028 The Frobenius problem for four numerical semig... greatest integer belong numerical semigroup ca... 0 0 1 0 0 0
5029 Coherence and its Role in Excitation Energy Tr... show coherence different bacteriochlorophylla ... 0 1 0 0 0 0
5030 Optimal Caching and Scheduling for Cache-enabl... maximize offloading gain cacheenabled deviceto... 1 0 0 0 0 0
5031 Phytoplankton Hotspot Prediction With an Unsup... many interesting natural phenomena sparsely di... 1 0 0 1 0 0
5032 Effective field theory for dissipative fluids ... paper develop fluctuating hydrodynamics propos... 0 1 1 0 0 0
5033 Quantum non demolition measurements: parameter... quantum non demolition measurements sequence o... 0 0 1 1 0 0
5034 Why We Need New Evaluation Metrics for NLG majority nlg evaluation relies automatic metri... 1 0 0 0 0 0
5035 First constraints on fuzzy dark matter from Ly... present constraints masses extremely light bos... 0 1 0 0 0 0
5036 On functionals involving the torsional rigidit... paper study optimal estimates two functionals ... 0 0 1 0 0 0
5037 Quasars Probing Quasars IX. The Kinematics of ... examine kinematics gas environments galaxies h... 0 1 0 0 0 0
5038 Deep Learning with Permutation-invariant Opera... computeraided analysis medical scans longstand... 1 0 0 1 0 0
5039 Reeb dynamics inspired by Katok's example in F... inspired katoks examples finsler metrics small... 0 0 1 0 0 0
5040 Pressure-induced magnetic collapse and metalli... crystal structure magnetic ordering electrical... 0 1 0 0 0 0
5041 Real-Time Adaptive Image Compression present machine learningbased approach lossy i... 1 0 0 1 0 0
5042 Probabilistic Graphical Modeling approach to d... context dynamic emission tomography convention... 0 0 0 1 0 0
5043 Perturbative Thermodynamic Geometry of Nonexte... investigate perturbative thermodynamic geometr... 0 1 0 0 0 0
5044 On some mellin transforms for the Riemann zeta... offer two new mellin transform evaluations rie... 0 0 1 0 0 0
5045 Timelike surfaces in Minkowski space with a ca... given constant vector field z minkowski space ... 0 0 1 0 0 0
5046 The existence and global exponential stability... paper class neutral type competitive neural ne... 0 0 1 0 0 0
5047 Fluid-Structure Interaction for the Classroom:... students may find spline interpolation easily ... 0 0 0 0 1 0
5048 Modelling the evaporation of nanoparticle susp... present monte carlo mc gridbased model drying ... 0 1 0 0 0 0
5049 Image retargeting via Beltrami representation image retargeting aims resize image one prescr... 1 0 0 0 0 0
5050 Coupling Load-Following Control with OPF paper optimal power flow opf problem augmented... 1 0 1 0 0 0
5051 A cellular algebra with specific decomposition... let mathbba cellular algebra field mathbbf dec... 0 0 1 0 0 0
5052 On relation between discrete Frenet frames and... discrete frenet equation entails local framing... 0 1 1 0 0 0
5053 A stronger version of a question proposed by K... p stckel proved existence transcendental funct... 0 0 1 0 0 0
5054 Distance-based classifier by data transformati... consider classifiers highdimensional data stro... 0 0 0 1 0 0
5055 Group Field theory and Tensor Networks: toward... establish dictionary group field theory thus s... 0 1 0 0 0 0
5056 Behavior of Accelerated Gradient Methods Near ... examine behavior accelerated gradient methods ... 0 0 1 0 0 0
5057 Distinguishing differential susceptibility, di... currently two main approaches exist distinguis... 0 0 0 1 0 0
5058 A weak type estimate for rough singular integrals obtain weak type estimate maximal operator ass... 0 0 1 0 0 0
5059 Threat analysis of IoT networks Using Artifici... internet things iot still infancy attracted mu... 1 0 0 0 0 0
5060 An experimental study of Bitcoin fluctuation u... paper study ability make shortterm prediction ... 0 0 0 1 0 0
5061 A unified theory for exact stochastic modellin... hydroclimatic processes characterized heteroge... 0 0 1 1 0 0
5062 The Guiding Influence of Stanley Mandelstam, f... guiding influence stanley mandelstams key cont... 0 1 0 0 0 0
5063 Radiation-driven turbulent accretion onto mass... accretion gas interaction matter radiation hea... 0 1 0 0 0 0
5064 Bayesian Inference of Log Determinants logdeterminant kernel matrix appears variety m... 1 0 0 1 0 0
5065 Investigating prescriptions for artificial res... numerical simulations artificial terms applied... 0 1 0 0 0 0
5066 A Planning and Control Framework for Humanoid ... humanoid robots increasingly demanded operate ... 1 0 1 0 0 0
5067 Attention-based Wav2Text with Feature Transfer... conventional automatic speech recognition asr ... 1 0 0 0 0 0
5068 Amplitude death and resurgence of oscillation ... phenomenon amplitude death explored using vari... 0 1 0 0 0 0
5069 Quintessential Inflation with $α$-attractors novel approach quintessential inflation model ... 0 1 0 0 0 0
5070 Degenerate and chiral states in the extended H... present study low temperature phases antiferro... 0 1 0 0 0 0
5071 Enhancing Blood Glucose Prediction with Meal A... objective numerous glucose prediction algorith... 1 0 0 0 1 0
5072 The fraction of cool-core clusters in X-ray vs... derive compare fractions coolcore clusters em ... 0 1 0 0 0 0
5073 Tracking by Animation: Unsupervised Learning o... online multiobject tracking mot videos challen... 0 0 0 1 0 0
5074 Graph Convolutional Policy Network for Goal-Di... generating novel graph structures optimize giv... 0 0 0 1 0 0
5075 Impact of the positive ion current on large si... given small mobility coefficient liquid argon ... 0 1 0 0 0 0
5076 On Multilevel Coding Schemes Based on Non-Bina... address problem constructing coding schemes ch... 1 0 0 0 0 0
5077 Tunable coupling-induced resonance splitting i... propose demonstrate selfcoupled microring reso... 0 1 0 0 0 0
5078 High-precision measurements and theoretical ca... report measurements p p scalar tensor polariza... 0 1 0 0 0 0
5079 2D reductions of the equation $u_{yy} = u_{tx}... consider equation uyy utx uyuxx uxuxy reductio... 0 1 0 0 0 0
5080 An improved Belief Propagation algorithm finds... first present empirical study belief propagati... 1 1 0 0 0 0
5081 Large-scale diversity estimation through surna... study surnames linguistic geographical markers... 0 0 0 1 0 0
5082 Schur $Q$-functions and the Capelli eigenvalue... let mathfrak l mathfrak qntimesmathfrak qn mat... 0 0 1 0 0 0
5083 Dynamics of cosmological perturbations in modi... work focus novel completion wellknown bransdic... 0 1 0 0 0 0
5084 Attentive Convolutional Neural Network based S... speech emotion recognition important challengi... 1 0 0 0 0 0
5085 Men Are from Mars, Women Are from Venus: Evalu... present quantitative analysis human word assoc... 1 0 0 0 0 0
5086 Galaxies as High-Resolution Telescopes recent observations show population active gal... 0 1 0 0 0 0
5087 Continuous CM-regularity of semihomogeneous ve... show x abelian variety dimension g geq mathcal... 0 0 1 0 0 0
5088 Factorisation of the product of Dirichlet seri... first chapter present computation square value... 0 0 1 0 0 0
5089 LAP: a Linearize and Project Method for Solvin... many inverse problems involve two sets variabl... 1 0 1 0 0 0
5090 Obtaining the Current-Flux Relations of the Sa... paper proposes method based signal injection o... 1 0 0 0 0 0
5091 Approximation properties of (p,q)-Meyer-Konig-... paper introduce durrmeyer type modification me... 0 0 1 0 0 0
5092 Deep Graph Infomax present deep graph infomax dgi general approac... 1 0 0 1 0 0
5093 Solitons and breathers for nonisospectral mKdV... investigation paper nonisospectral variable co... 0 1 0 0 0 0
5094 Sequential detection of low-rank changes using... study problem detecting abrupt change signal c... 0 0 1 1 0 0
5095 Embodied Artificial Intelligence through Distr... paper argue future artificial intelligence res... 1 0 0 0 0 0
5096 Does a growing static length scale control the... several theories glass transition propose stru... 0 1 0 0 0 0
5097 Canonical models of arithmetic $(1; \infty)$ c... takeuchi showed conjugation exactly arithmetic... 0 0 1 0 0 0
5098 State observation and sensor selection for non... large variety dynamical systems chemical biomo... 1 0 1 0 0 0
5099 A Faster Implementation of Online Run-Length B... runlength encoding burrowswheeler transformed ... 1 0 0 0 0 0
5100 Maximal fluctuations of confined actomyosin ge... investigate effect stress fluctuations stochas... 0 1 0 0 0 0
5101 Age-at-harvest models as monitoring and harves... quantifying estimating wildlife population siz... 0 0 0 0 1 0
5102 Information Planning for Text Data information planning enables faster learning f... 0 0 0 1 0 0
5103 Development of Si-CMOS hybrid detectors toward... electron tracking based compton imaging key te... 0 1 0 0 0 0
5104 Sharp constant of an anisotropic Gagliardo-Nir... paper establish best constant anisotropic gagl... 0 0 1 0 0 0
5105 Treatment Effect Quantification for Time-to-ev... draft addendum ich e released public consultat... 0 0 0 1 0 0
5106 A character of Siegel modular group of level 2... given characteristic define character siegel m... 0 0 1 0 0 0
5107 Antiferromagnetic Chern insulators in non-cent... investigate new class topological antiferromag... 0 1 0 0 0 0
5108 The concentration-mass relation of clusters of... relation cosmological halo concentration mass ... 0 1 0 0 0 0
5109 Effects of the structural distortion on the el... effects structural distortion associated rm os... 0 1 0 0 0 0
5110 On the Joint Distribution Of $\mathrm{Sel}_ϕ(E... e elliptic curve point order two work klagsbru... 0 0 1 0 0 0
5111 Learning What Data to Learn machine learning essentially sciences playing ... 1 0 0 1 0 0
5112 Deformation estimation of an elastic object by... deformation estimation elastic object assuming... 1 0 0 1 0 0
5113 Comparative analysis of two discretizations of... performed empirical comparison two distinct no... 1 0 1 0 0 0
5114 Zero-Shot Learning via Class-Conditioned Deep ... present deep generative model learning predict... 1 0 0 0 0 0
5115 On the vanishing viscosity approximation of a ... investigate dynamics nonlinear system modeling... 0 0 1 0 0 0
5116 Noise-gating to clean astrophysical image data present family algorithms reduce noise astroph... 0 1 0 0 0 0
5117 Variational Bayesian dropout: pitfalls and fixes dropout stochastic regularisation technique tr... 0 0 0 1 0 0
5118 Deep Belief Networks Based Feature Generation ... wind energy forecasting helps manage power pro... 0 0 0 1 0 0
5119 Control Interpretations for First-Order Optimi... firstorder iterative optimization methods play... 1 0 1 0 0 0
5120 Mapping Images to Scene Graphs with Permutatio... machine understanding complex images key goal ... 0 0 0 1 0 0
5121 Identifying Similarities in Epileptic Patients... currently approximately epileptic patients tre... 1 0 0 1 0 0
5122 Variational Inference of Disentangled Latent C... disentangled representations higher level data... 1 0 0 1 0 0
5123 Designing the color of hot-dip galvanized stee... color hotdip galvanized steel sheet adjusted r... 0 1 0 0 0 0
5124 Counting Multiplicities in a Hypersurface over... fix counting function multiplicities algebraic... 0 0 1 0 0 0
5125 Multiple Instance Learning Networks for Fine-G... consider task finegrained sentiment analysis p... 1 0 0 0 0 0
5126 Eva-CiM: A System-Level Energy Evaluation Fram... computinginmemory cim architectures aim reduce... 1 0 0 0 0 0
5127 Converging Shock Flows for a Mie-Grüneisen Equ... previous work shown onedimensional inviscid co... 0 1 0 0 0 0
5128 Robust estimation of tree structured Gaussian ... consider jointly gaussian random variables who... 1 0 0 1 0 0
5129 What Propels Celebrity Follower Counts? Langua... follower count factor quantifies popularity ce... 1 0 0 0 0 0
5130 Monochromatic metrics are generalized Berwald show monochromatic finsler metrics ie finsler ... 0 0 1 0 0 0
5131 CTCF Degradation Causes Increased Usage of Ups... transcriptional repressor ctcf important regul... 0 0 0 0 1 0
5132 The stability of tightly-packed, evenly-spaced... many multiplanet systems discovered date notab... 0 1 0 0 0 0
5133 GPUQT: An efficient linear-scaling quantum tra... present gpuqt quantum transport code fully imp... 0 1 0 0 0 0
5134 Full-Duplex Cooperative Cognitive Radio Networ... paper proposes analyzes new fullduplex fd coop... 1 0 0 0 0 0
5135 Inkjet printing-based volumetric display proje... study method construct fullcolour volumetric d... 1 0 0 0 0 0
5136 Analysis of luminosity distributions of strong... strong gravitational lensing gives access tota... 0 1 0 0 0 0
5137 Support Estimation via Regularized and Weighte... introduce new framework estimating support siz... 1 0 0 1 0 0
5138 Two-photon superbunching of pseudothermal ligh... twophoton superbunching pseudothermal light ob... 0 1 0 0 0 0
5139 Non Relativistic Limit of Integrable QFT with ... aim paper investigate nonrelativistic limit in... 0 1 0 0 0 0
5140 Extensions of the Benson-Solomon fusion systems bensonsolomon systems comprise known family si... 0 0 1 0 0 0
5141 Run-Wise Simulations for Imaging Atmospheric C... present new paradigm simulation arrays imaging... 0 1 0 0 0 0
5142 Multi-party Poisoning through Generalized $p$-... poisoning attack learning algorithm adversary ... 0 0 0 1 0 0
5143 Spectral edge behavior for eventually monotone... consider jacobi matrices eventually increasing... 0 0 1 0 0 0
5144 Web Video in Numbers - An Analysis of Web-Vide... web video often used source data various field... 1 0 0 0 0 0
5145 Bernoulli Correlations and Cut Polytopes given n symmetric bernoulli variables said cor... 0 0 1 1 0 0
5146 Tensor products of NCDL-C*-algebras and the C*... show tensor product aotimes b mathbbc two c al... 0 0 1 0 0 0
5147 ViP-CNN: Visual Phrase Guided Convolutional Ne... intermediate level task connecting image capti... 1 0 0 0 0 0
5148 Haantjes Algebras and Diagonalization propose notion haantjes algebra consists assig... 0 1 1 0 0 0
5149 Multipair Massive MIMO Relaying Systems with O... paper considers multipair amplifyandforward ma... 1 0 0 0 0 0
5150 Bayesian Methods for Exoplanet Science exoplanet research carried limits capabilities... 0 1 0 0 0 0
5151 Feature importance scores and lossless feature... understanding influence features machine learn... 1 0 0 1 0 0
5152 Robust clustering of languages across Wikipedi... wikipedia largest existing knowledge repositor... 1 0 0 1 0 0
5153 Attractive Heaviside-Maxwellian (Vector) Gravi... adopting two independent approaches lorentzinv... 0 1 0 0 0 0
5154 Critical pairing fluctuations in the normal st... study effect critical pairing fluctuations ele... 0 1 0 0 0 0
5155 The Mixing method: low-rank coordinate descent... paper propose lowrank coordinate descent appro... 1 0 1 1 0 0
5156 GeoSeq2Seq: Information Geometric Sequence-to-... fisher information metric important foundation... 1 0 0 1 0 0
5157 Stochastic graph Voronoi tessellation reveals ... given network statistical ensemble graphvorono... 1 1 0 0 0 0
5158 Recursion for the smallest eigenvalue density ... statistics smallest eigenvalue wishartlaguerre... 0 0 0 1 0 0
5159 Comparing Neural and Attractiveness-based Visu... advances image processing computer vision late... 1 0 0 0 0 0
5160 DeepMapping: Unsupervised Map Estimation From ... propose deepmapping novel registration framewo... 1 0 0 0 0 0
5161 The First Comparison Between Swarm-C Accelerom... first systematic comparison swarmc acceleromet... 0 1 0 0 0 0
5162 Gaussian Parsimonious Clustering Models with C... consider modelbased clustering methods continu... 0 0 0 1 0 0
5163 The Rice-Shapiro theorem in Computable Topology provide requirements effectively enumerable to... 1 0 1 0 0 0
5164 Multivariate Regression with Grossly Corrupted... paper studies problem multivariate linear regr... 1 0 0 1 0 0
5165 A Deep Learning Approach for Population Estima... knowing people live fundamental component many... 1 0 0 0 0 0
5166 Trends in the Diffusion of Misinformation on S... measure trends diffusion misinformation facebo... 1 0 0 0 0 1
5167 SemEval 2017 Task 10: ScienceIE - Extracting K... describe semeval task extracting keyphrases re... 1 0 0 1 0 0
5168 Well-posedness of the Two-dimensional Nonlinea... consider twodimensional nonlinear schrdinger e... 0 0 1 0 0 0
5169 The nilpotent variety of $W(1;n)_{p}$ is irred... late premet conjectured nilpotent variety fini... 0 0 1 0 0 0
5170 Solitons in Bose-Einstein Condensates with Hel... report existence stability freely moving solit... 0 1 0 0 0 0
5171 Possible heights of graph transformation groups following text prove finite pgeq exists topolo... 0 0 1 0 0 0
5172 Dependencies: Formalising Semantic Catenae for... building machines understand text like humans ... 1 0 0 0 0 0
5173 A New Pseudo-color Technique Based on Intensit... remote sensing image processing important geos... 1 0 0 0 0 0
5174 Tunneling anisotropic magnetoresistance driven... independent control two magnetic electrodes sp... 0 1 0 0 0 0
5175 Finding Efficient Swimming Strategies in a Thr... apply reinforcement learning algorithm show sm... 1 1 0 0 0 0
5176 Trapped imbalanced fermionic superfluids in on... propose analyze variational wave function popu... 0 1 0 0 0 0
5177 Prospects of dynamical determination of Genera... evaluated prospects quantifying parameterized ... 0 1 0 0 0 0
5178 Modelling and Using Response Times in Online C... time learner selfpaced online course trying an... 1 0 0 0 0 0
5179 Univalent Foundations and the UniMath Library give concise presentation univalent foundation... 1 0 1 0 0 0
5180 Distributed methods for synchronization of ort... paper addresses problem synchronizing orthogon... 1 0 1 0 0 0
5181 Stochastic Model of SIR Epidemic Modelling threshold theorem probably important developme... 0 0 0 1 1 0
5182 Parent Oriented Teacher Selection Causes Langu... evolutionary model emergence diversity languag... 1 0 0 0 0 0
5183 Learning Role-based Graph Embeddings random walks heart many existing network embed... 1 0 0 1 0 0
5184 Quantum Emulation of Extreme Non-equilibrium P... ultracold atomic physics experiments offer nea... 0 1 0 0 0 0
5185 A Unified Analysis of Extra-gradient and Optim... consider solving convexconcave saddle point pr... 1 0 0 1 0 0
5186 Adaptive Multi-Step Prediction based EKF to Po... power system dynamic state estimation essentia... 1 1 0 0 0 0
5187 Solving SDPs for synchronization and MaxCut pr... number statistical estimation problems address... 0 0 1 1 0 0
5188 Poisson-Nernst-Planck equations with steric ef... study existence stability stationary solutions... 0 1 1 0 0 0
5189 A Fast Noniterative Algorithm for Compressive ... paper present new algorithm compressive sensin... 1 0 0 0 0 0
5190 Domain Adaptation by Using Causal Inference to... important goal common domain adaptation causal... 1 0 0 1 0 0
5191 Fitting ReLUs via SGD and Quantized SGD paper focus problem finding optimal weights sh... 1 0 0 1 0 0
5192 The meet operation in the imbalance lattice of... alternative proof given existence greatest low... 0 0 1 0 0 0
5193 Approximating Partition Functions in Constant ... study approximations partition function dense ... 1 0 0 1 0 0
5194 Stability of a Volterra Integral Equation on T... paper study hyersulam stability integral equat... 0 0 1 0 0 0
5195 Near-IR period-luminosity relations for pulsat... omega centauri ngc hosts hundreds pulsating va... 0 1 0 0 0 0
5196 Pseudo-deterministic Proofs introduce pseudodeterministic interactive proo... 1 0 0 0 0 0
5197 The Mechanism behind Erosive Bursts in Porous ... erosion deposition flow porous media lead larg... 0 1 0 0 0 0
5198 The Maximum Likelihood Degree of Toric Varieties study maximum likelihood degree ml degree tori... 0 0 1 1 0 0
5199 Low Mach number limit of a pressure correction... study incompressible limit pressure correction... 0 1 1 0 0 0
5200 Objective Bayesian Analysis for Change Point P... paper present lossbased approach change point ... 0 0 1 1 0 0
5201 On the Mechanism of Large Amplitude Flapping o... elastic foil interacting uniform flow trailing... 0 1 0 0 0 0
5202 Ultrafast Epitaxial Growth of Metre-Sized Sing... foundation modern technology uses singlecrysta... 0 1 0 0 0 0
5203 Multidimensional Sampling of Isotropically Ban... new lower bound average reconstruction error v... 1 0 1 1 0 0
5204 Asymptotic structure of almost eigenfunctions ... use weighted variant frequency functions intro... 0 0 1 0 0 0
5205 Palomar Optical Spectrum of Hyperbolic Near-Ea... present optical spectroscopy recently discover... 0 1 0 0 0 0
5206 Electrically driven quantum light emission in ... single quantum dot deterministically coupled p... 0 1 0 0 0 0
5207 The Odyssey Approach for Optimizing Federated ... answering queries federation sparql endpoints ... 1 0 0 0 0 0
5208 A variant of Gromov's problem on Hölder equiva... unknown exists locally alphahlder homeomorphis... 0 0 1 0 0 0
5209 The Trees of Hanoi game towers hanoi generalized binary trees fir... 1 0 1 0 0 0
5210 On the risk of convex-constrained least square... consider problem estimating mean noisy vector ... 0 0 1 1 0 0
5211 Benchmarks for Image Classification and Other ... good classification method yield accurate resu... 0 0 0 1 0 0
5212 On the Binary Lossless Many-Help-One Problem w... although rate region lossless manyhelpone prob... 1 0 0 0 0 0
5213 Efficient Correlated Topic Modeling with Topic... correlated topic modeling limited small model ... 1 0 0 1 0 0
5214 Structure-aware error bounds for linear classi... prove risk bounds binary classification highdi... 0 0 1 1 0 0
5215 Dimensional reduction and the equivariant Cher... propose dimensional reduction procedure stolzt... 0 0 1 0 0 0
5216 Practical Processing of Mobile Sensor Data for... present practical approach processing mobile s... 1 0 0 0 0 0
5217 Formal Privacy for Functional Data with Gaussi... motivated rapid rise statistical tools functio... 0 0 1 1 0 0
5218 An algorithm to reconstruct convex polyhedra f... wellknown result study convex polyhedra due mi... 0 1 0 0 0 0
5219 Electron affinities of water clusters from den... work assess accuracy dielectricdependent hybri... 0 1 0 0 0 0
5220 Grid-converged Solution and Analysis of the Un... flow shock tube extremely complex dynamic mult... 0 1 0 0 0 0
5221 Exact zero modes in twisted Kitaev chains study kitaev chain generalized twisted boundar... 0 1 0 0 0 0
5222 Generative Temporal Models with Memory consider general problem modeling temporal dat... 1 0 0 1 0 0
5223 Global research collaboration: Networks and pa... empirical paper addresses role bilateral multi... 1 0 0 0 0 0
5224 Spontaneous and stimulus-induced coherent stat... information microscopically processed individu... 0 1 0 0 0 0
5225 Parallelized Kendall's Tau Coefficient Computa... pairwise association measure important operati... 1 0 0 0 0 0
5226 Effect of Blast Exposure on Gene-Gene Interact... repeated exposure lowlevel blast may initiate ... 0 0 0 0 1 0
5227 A sparse linear algebra algorithm for fast com... gaussian markov random fields used large numbe... 0 0 0 1 0 0
5228 Rational motivic path spaces and Kim's relativ... initiate study path spaces nascent context mot... 0 0 1 0 0 0
5229 Convergence Rates of Latent Topic Models Under... paper study frequentist convergence rate laten... 1 0 0 1 0 0
5230 Subspace Clustering of Very Sparse High-Dimens... paper consider problem clustering collections ... 1 0 0 1 0 0
5231 Quarnet inference rules for level-1 networks important problem phylogenetics construction p... 1 0 0 0 0 0
5232 21 cm Angular Power Spectrum from Minihalos as... measurements cm line fluctuations minihalos di... 0 1 0 0 0 0
5233 The IRX-Beta Dust Attenuation Relation in Cosm... utilise series highresolution cosmological zoo... 0 1 0 0 0 0
5234 Strict convexity of the Mabuchi functional for... two parts paper first discovered explicit form... 0 0 1 0 0 0
5235 Anonymous Variables in Imperative Languages paper bring anonymous variables imperative lan... 1 0 0 0 0 0
5236 Simultaneously constraining the astrophysics o... cosmic cm signal set revolutionise understandi... 0 1 0 0 0 0
5237 Non-penalized variable selection in high-dimen... standard penalized methods variable selection ... 0 0 0 1 0 0
5238 DNN Filter Bank Cepstral Coefficients for Spoo... development speech synthesis techniques automa... 1 0 0 0 0 0
5239 The existence of positive least energy solutio... present study concerned following schrdingerpo... 0 0 1 0 0 0
5240 Up-down colorings of virtual-link diagrams and... introduce updown coloring virtuallink diagram ... 0 0 1 0 0 0
5241 Comparison of SMT and RBMT; The Requirement of... present paper work comparison statistical mach... 1 0 0 0 0 0
5242 Introduction to the Special Issue on Approache... emerging field intersection quantitative biolo... 1 0 0 0 1 0
5243 Towards Classification of Web ontologies using... new era web known semantic web web data semant... 1 0 0 0 0 0
5244 An Efficient Version of the Bombieri-Vaaler Lemma celebrated paper siegels lemma bombieri vaaler... 1 0 1 0 0 0
5245 Personalized and Private Peer-to-Peer Machine ... rise connected personal devices together priva... 1 0 0 1 0 0
5246 Interacting Chaplygin gas revisited implications considering interaction chaplygin... 0 1 0 0 0 0
5247 GALARIO: a GPU Accelerated Library for Analysi... present galario computational library exploits... 0 1 0 0 0 0
5248 Focused time-lapse inversion of radio and audi... geoelectrical techniques widely used monitor g... 0 1 0 0 0 0
5249 Deep Exploration via Randomized Value Functions study use randomized value functions guide dee... 1 0 0 1 0 0
5250 Spectral Norm Regularization for Improving the... investigate generalizability deep learning bas... 1 0 0 1 0 0
5251 Estimating the chromospheric magnetic field fr... work use semiempirical atmospheric modeling me... 0 1 0 0 0 0
5252 An accurate approximation formula for gamma fu... paper present accurate approximation gamma fun... 0 0 1 0 0 0
5253 Reconciling Bayesian and Total Variation Metho... central theme classical algorithms reconstruct... 0 0 1 1 0 0
5254 Perception Driven Texture Generation paper investigates novel task generating textu... 1 0 0 0 0 0
5255 Computational modeling approaches in gonadotro... folliclestimulating hormone fsh luteinizing ho... 0 0 0 0 1 0
5256 SEP-Nets: Small and Effective Pattern Networks going deeper witnessed improve performance con... 1 0 0 0 0 0
5257 Fundamental Limitations of Cavity-assisted Ato... atom interferometers employing optical cavitie... 0 1 0 0 0 0
5258 Markov chain aggregation and its application t... rulebased modelling allows represent molecular... 1 0 0 0 1 0
5259 Shape and Positional Geometry of Multi-Object ... previous work introduced method modeling confi... 1 0 0 0 0 0
5260 Interface mediated mechanisms of plastic strai... combination transmission electron microscopy a... 0 1 0 0 0 0
5261 Refounding legitimacy towards Aethogenesis fusion humans technology takes us unknown worl... 1 0 0 0 0 0
5262 FELIX-2.0: New version of the finite element s... timedependent generator coordinate method tdgc... 0 1 0 0 0 0
5263 Scattering in the energy space for Boussinesq ... note show small solutions energy space general... 0 0 1 0 0 0
5264 A Data-Driven Supply-Side Approach for Measuri... digital economy highly relevant item european ... 0 0 0 1 0 0
5265 Low Rank Magnetic Resonance Fingerprinting purpose magnetic resonance fingerprinting mrf ... 1 1 0 0 0 0
5266 SARAH: A Novel Method for Machine Learning Pro... paper propose stochastic recursive gradient al... 1 0 1 1 0 0
5267 A criterion related to the Riemann Hypothesis crucial role nymanbeurlingbezduarte approach r... 0 0 1 0 0 0
5268 Non-Stationary Spectral Kernels propose nonstationary spectral kernels gaussia... 1 0 0 1 0 0
5269 Spectral and Energy Efficiency of Uplink D2D U... one key g scenarios devicetodevice dd massive ... 1 0 1 0 0 0
5270 Right for the Right Reasons: Training Differen... neural networks among accurate supervised lear... 1 0 0 1 0 0
5271 The ANTARES Collaboration: Contributions to IC... papers antares multimessenger program prepared... 0 1 0 0 0 0
5272 Hamiltonian structure of peakons as weak solut... modified camassaholm mch equation bihamiltonia... 0 1 0 0 0 0
5273 Orbital-dependent correlations in PuCoGa$_5$ investigate normal state superconducting compo... 0 1 0 0 0 0
5274 A variational derivation of the nonequilibrium... irreversible processes play major role descrip... 0 1 1 0 0 0
5275 On certain weighted 7-colored partitions inspired andrews colored generalized frobenius... 0 0 1 0 0 0
5276 Employee turnover prediction and retention pol... paper illustrates similarities problems custom... 1 0 0 1 0 0
5277 Do You Want Your Autonomous Car To Drive Like ... progress enabling autonomous cars drive safely... 1 0 0 0 0 0
5278 Now Playing: Continuous low-power music recogn... existing music recognition applications requir... 1 0 0 0 0 0
5279 COLA: Decentralized Linear Learning decentralized machine learning promising emerg... 0 0 0 1 0 0
5280 Improving the Expected Improvement Algorithm expected improvement ei algorithm popular stra... 1 0 0 1 0 0
5281 Performance Limits of Solutions to Network Uti... study performance limits solutions utility max... 1 0 0 0 0 0
5282 Toeplitz Order new approach problems uncertainty principle ha... 0 0 1 0 0 0
5283 Definably compact groups definable in real clo... study definably compact definably connected gr... 0 0 1 0 0 0
5284 The unreasonable effectiveness of small neural... despite widelyspread consensus brain complexit... 0 0 0 0 1 0
5285 Explicit cocycle formulas on finite abelian gr... provide explicit unified formulas cocycles deg... 0 0 1 0 0 0
5286 Threshold Selection for Multivariate Heavy-Tai... regular variation often used starting point mo... 0 0 1 1 0 0
5287 An Orchestrated Empirical Study on Deep Learni... deep learning dl recently achieved tremendous ... 1 0 0 0 0 0
5288 On the complexity of topological conjugacy of ... note analyze classification problem compact me... 0 0 1 0 0 0
5289 Classical affine W-superalgebras via generaliz... purpose article investigate relations wsuperal... 0 0 1 0 0 0
5290 Temporally Identity-Aware SSD with Attentional... temporal object detection attracted significan... 1 0 0 0 0 0
5291 Carleman Estimate for Surface in Euclidean Spa... paper develops carleman type estimate immersed... 0 0 1 0 0 0
5292 Formalizing Timing Diagram Requirements in Dis... several temporal logics proposed formalise tim... 1 0 0 0 0 0
5293 Cubical Covers of Sets in $\mathbb{R}^n$ wild sets mathbbrn tamed use various represent... 0 0 1 0 0 0
5294 Mitochondrial network fragmentation modulates ... mitochondrial dna mtdna mutations cause severe... 0 0 0 0 1 0
5295 Depth Separation for Neural Networks let fmathbbsdtimes mathbbsdtomathbbs function ... 1 0 0 1 0 0
5296 An Accurate Interconnect Test Structure for Pa... nanotechnology nodes feature size shrunk rapid... 1 0 0 0 0 0
5297 A New Compton-thick AGN in our Cosmic Backyard... ngc one nearest luminous galaxies lmu lodot z ... 0 1 0 0 0 0
5298 Blowup constructions for Lie groupoids and a B... present natural general ways building lie grou... 0 0 1 0 0 0
5299 Possible spin gapless semiconductor type behav... spingapless semiconductors unique band structu... 0 1 0 0 0 0
5300 Simulated JWST/NIRISS Transit Spectroscopy of ... transiting exoplanet survey satellite tess emb... 0 1 0 0 0 0
5301 The general linear 2-groupoid deal symmetries term graded vector space bundl... 0 0 1 0 0 0
5302 DeepTFP: Mobile Time Series Data Analytics bas... traffic flow prediction important research iss... 1 0 0 0 0 0
5303 Non-equilibrium Optical Conductivity: General ... nonequilibrium theory optical conductivity dir... 0 1 0 0 0 0
5304 The Momentum Distribution of Liquid $^4$He report highresolution neutron compton scatteri... 0 1 0 0 0 0
5305 Semantic Code Repair using Neuro-Symbolic Tran... study problem semantic code repair broadly def... 1 0 0 0 0 0
5306 Hints on the gradual re-sizing of the torus in... several authors claimed less luminous active g... 0 1 0 0 0 0
5307 Self-similar minimizers of a branched transpor... solve completely irrigation problem dirac mass... 0 0 1 0 0 0
5308 S-OHEM: Stratified Online Hard Example Mining ... one major challenges object detection propose ... 1 0 0 0 0 0
5309 Deep Temporal-Recurrent-Replicated-Softmax for... dynamic topic modeling facilitates identificat... 1 0 0 0 0 0
5310 Generalizing Point Embeddings using the Wasser... embedding complex objects vectors low dimensio... 0 0 0 1 0 0
5311 Lancaster A at SemEval-2017 Task 5: Evaluation... paper describes participation task track semev... 1 0 0 0 0 0
5312 Bootstrapping for multivariate linear regressi... multivariate linear regression model important... 0 0 1 1 0 0
5313 Long coherence times for edge spins show certain onedimensional spin chains open b... 0 1 1 0 0 0
5314 Exploring light mediators with low-threshold d... explore potential future cryogenic direct dete... 0 1 0 0 0 0
5315 DR/DZ equivalence conjecture and tautological ... paper present family conjectural relations tau... 0 0 1 0 0 0
5316 Surface Networks study datadriven representations threedimensio... 1 0 0 1 0 0
5317 Forward Flux Sampling Calculation of Homogeneo... used molecular dynamics simulations path sampl... 0 1 0 0 0 0
5318 Driving an Ornstein--Uhlenbeck Process to Desi... firstpassage time fpt ornsteinuhlenbeck ou pro... 0 0 1 0 0 0
5319 The self-consistent Dyson equation and self-en... perturbation theory using selfconsistent green... 0 1 0 0 0 0
5320 Statistical Implications of the Revenue Transf... affordable care act aca includes permanent rev... 0 0 0 1 0 0
5321 Chance-Constrained Combinatorial Optimization ... investigate class chanceconstrained combinator... 0 0 1 0 0 0
5322 Optimal Input Design for Affine Model Discrimi... paper considers optimal design input signals p... 1 0 0 0 0 0
5323 Stable Unitary Integrators for the Numerical I... technique continuous unitary transformations r... 1 1 0 0 0 0
5324 Sparse and Smooth Prior for Bayesian Linear Re... sparsity solution linear regression model comm... 0 0 0 1 0 0
5325 Deep Learning: Generalization Requires Deep Co... generalization error defines discriminability ... 1 0 0 1 0 0
5326 First detection of sign-reversed linear polari... report detection linear polarization forbidden... 0 1 0 0 0 0
5327 Certifying Some Distributional Robustness with... neural networks vulnerable adversarial example... 1 0 0 1 0 0
5328 The minimal hidden computer needed to implemen... master equations commonly used model dynamics ... 1 1 0 0 0 0
5329 A multi-task convolutional neural network for ... megacity analysis high resolution vhr satellit... 1 0 0 0 0 0
5330 Exploiting Multi-layer Graph Factorization for... multiattributed graph matching problem finding... 1 0 0 0 0 0
5331 Secure Search on the Cloud via Coresets and Sk... emphsecure search problem retrieving database ... 1 0 0 0 0 0
5332 LATTES: a novel detector concept for a gamma-r... large array telescope tracking energetic sourc... 0 1 0 0 0 0
5333 A general model for plane-based clustering wit... paper propose general model planebased cluster... 1 0 0 1 0 0
5334 Renormalization of quasiparticle band gap in d... doped free carriers substantially renormalize ... 0 1 0 0 0 0
5335 Hyperbolicity as an obstruction to smoothabili... ghys sergiescu proved thompsons group hence f ... 0 0 1 0 0 0
5336 Lasso ANOVA Decompositions for Matrix and Tens... consider problem estimating entries unknown me... 0 0 0 1 0 0
5337 NetSciEd: Network Science and Education for th... short article presents summary netscied networ... 1 1 0 0 0 0
5338 A cup product lemma for continuous plurisubhar... version gromovs cup product lemma one factor p... 0 0 1 0 0 0
5339 Near-perfect spin filtering and negative diffe... density functional theory nonequilibrium green... 0 1 0 0 0 0
5340 Search for magnetic inelastic dark matter with... present first search dark matterinduced delaye... 0 1 0 0 0 0
5341 Structural, elastic, electronic, and bonding p... theoretical investigation structural elastic e... 0 1 0 0 0 0
5342 Clustering and Model Selection via Penalized L... study consider unsupervised clustering categor... 0 0 1 1 0 0
5343 Topology reveals universal features for networ... topology complex system key understanding stru... 1 0 1 1 0 0
5344 Gated Recurrent Networks for Seizure Detection recurrent neural networks rnns sophisticated u... 0 0 0 1 0 0
5345 Non-convex Conditional Gradient Sliding investigate projection free method namely cond... 0 0 1 0 0 0
5346 Multinomial Sum Formulas of Multiple Zeta Values pair positive integers nk ngeq paper prove sum... 0 0 1 0 0 0
5347 Copolar convexity introduce new operation copolar addition unbou... 0 0 1 0 0 0
5348 Go with the Flow: Compositional Abstractions f... concurrent separation logics helped significan... 1 0 0 0 0 0
5349 A Liouville Theorem for Mean Curvature Flow ancient solutions arise study parabolic blowup... 0 0 1 0 0 0
5350 FeSe(en)0.3 - Separated FeSe layers with strip... solvothermal intercalation ethylenediamine mol... 0 1 0 0 0 0
5351 Coexistence of quantum and classical flows in ... tangles quantized vortex line initial density ... 0 1 0 0 0 0
5352 Four-dimensional Lens Space Index from Two-dim... study supersymmetric partition function times ... 0 0 1 0 0 0
5353 Lions' formula for RKHSs of real harmonic func... let omega bounded lipschitz domain mathbbrd pu... 0 0 1 0 0 0
5354 Optimization and Performance of Bifacial Solar... rapidly growing interest bifacial photovoltaic... 0 1 0 0 0 0
5355 Wave propagation modelling in various microear... simulation wave propagation microearthquake en... 0 1 0 0 0 0
5356 Fast Snapshottable Concurrent Braun Heaps paper proposes new concurrent heap algorithm b... 1 0 0 0 0 0
5357 GuideR: a guided separate-and-conquer rule lea... article presents guider userguided rule induct... 0 0 0 1 0 0
5358 Frequency analysis and the representation of s... short time intervals planetary ephemerides tra... 0 1 0 0 0 0
5359 Geometric clustering in normed planes given two sets points b normed plane prove two... 0 0 1 0 0 0
5360 Spectrum Sharing for LTE-A Network in TV White... rural areas developing countries predominantly... 1 0 0 0 0 0
5361 Instantons for 4-manifolds with periodic ends ... construct obstruction existence embeddings hom... 0 0 1 0 0 0
5362 Laplacian networks: growth, local symmetry and... inspired river networks structures formed lapl... 0 1 0 0 0 0
5363 Dropping Convexity for More Efficient and Scal... multiview representation learning popular late... 0 0 1 1 0 0
5364 Automatic Vector-based Road Structure Mapping ... paper studied slam method vectorbased road str... 1 0 0 0 0 0
5365 Schwarzian derivatives, projective structures,... complex projective structure sigma surface thu... 0 0 1 0 0 0
5366 A Deep Network Model for Paraphrase Detection ... paper concerned paraphrase detection ability d... 1 0 0 0 0 0
5367 Organic-inorganic Copper(II)-based Material: a... lead halide perovskite solar cells recently em... 0 1 0 0 0 0
5368 Acyclic cluster algebras, reflection groups, a... establish bijective correspondence certain non... 0 0 1 0 0 0
5369 Inferring Structural Characteristics of Networ... knowing structure offline social network facil... 1 1 0 0 0 0
5370 A Method Of Detecting Gravitational Wave Based... work investigated detection gravitational wave... 0 1 0 0 0 0
5371 The connection between zero chromaticity and l... paper demonstrate connection magnetic storage ... 0 1 0 0 0 0
5372 Phonemic and Graphemic Multilingual CTC Based ... training automatic speech recognition asr syst... 1 0 0 0 0 0
5373 Model-Based Clustering of Time-Evolving Networ... dynamic networks general language describing t... 0 0 0 1 0 0
5374 Multi-agent Time-based Decision-making for the... many robotic applications searchandrescue requ... 1 0 0 0 0 0
5375 Anisotropic twicing for single particle recons... missing phase problem xray crystallography com... 1 0 0 1 0 0
5376 Epi-two-dimensional fluid flow: a new topologi... variety fundamental differences known separate... 0 1 0 0 0 0
5377 Dimensional reduction and its breakdown in the... critical behavior random field model driven un... 0 1 0 0 0 0
5378 Statistical Properties of Loss Rate Estimators... four types explicit estimators proposed estima... 1 0 0 0 0 0
5379 On The Communication Complexity of High-Dimens... study multiparty communication complexity high... 1 0 0 0 0 0
5380 Moonshine: Distilling with Cheap Convolutions many engineers wish deploy modern neural netwo... 1 0 0 1 0 0
5381 A New Wiretap Channel Model and its Strong Sec... paper new wiretap channel model proposed legit... 1 0 0 0 0 0
5382 One-to-One Matching of RTT and Path Changes route selection based performance measurements... 1 0 0 0 0 0
5383 Infinite horizon asymptotic average optimality... study infinitehorizon asymptotic average optim... 1 0 1 0 0 0
5384 Energy fluxes and spectra for turbulent and la... two wellknown turbulence models describe inert... 0 1 0 0 0 0
5385 Understanding low-temperature bulk transport i... present new model explain difference transport... 0 1 0 0 0 0
5386 Towards Optimal Strategy for Adaptive Probing ... investigate graph probing problem agent incomp... 1 1 0 0 0 0
5387 Generalised Discount Functions applied to a Mo... recent years work done develop theory general ... 1 0 0 0 0 0
5388 One year of monitoring the Vela pulsar using a... observed vela pulsar one year using phased arr... 0 1 0 0 0 0
5389 Using Multiple Seasonal Holt-Winters Exponenti... elasticity one key features cloud computing at... 1 0 0 0 0 0
5390 Possible evidence for spin-transfer torque ind... cooper pairs superconductors normally spin sin... 0 1 0 0 0 0
5391 Robust Guaranteed-Cost Adaptive Quantum Phase ... quantum parameter estimation plays key role ma... 1 0 1 0 0 0
5392 End-to-End Multi-View Networks for Text Classi... propose multiview network text classification ... 1 0 0 0 0 0
5393 Collaborative similarity analysis of multilaye... understand multiple relations developers proje... 1 1 0 0 0 0
5394 Evaluation of equity-based debt obligations consider class participation rights ie obligat... 0 0 0 0 0 1
5395 Adaptive Feature Selection: Computationally Ef... online sparse linear regression online problem... 1 0 0 0 0 0
5396 Siamese Networks with Location Prior for Landm... imageguided radiation therapy benefit accurate... 1 0 0 0 0 0
5397 Single-Shot 3D Diffractive Imaging of Core-She... report coherent diffractive imaging aupd cores... 0 1 0 0 0 0
5398 SEPIA - a new single pixel receiver at the APE... context describe new sepia swedisheso pi instr... 0 1 0 0 0 0
5399 Beyond normality: Learning sparse probabilisti... present algorithm identify sparse dependence s... 1 0 0 1 0 0
5400 QuanFuzz: Fuzz Testing of Quantum Program nowadays quantum program widely used quickly d... 1 0 0 0 0 0
5401 Option Pricing Models Driven by the Space-Time... paper focus option pricing models based spacet... 0 0 0 0 0 1
5402 Anticipation: an effective evolutionary strate... built twostate model asexually reproducing org... 0 0 0 0 1 0
5403 Unravelling Airbnb Predicting Price for New Li... paper analyzes airbnb listings city san franci... 0 0 0 0 0 1
5404 Finding, Hitting and Packing Cycles in Subexpo... give algorithms running time osqrtklogk cdot f... 1 0 0 0 0 0
5405 The self-referring DNA and protein: a remark o... known life forms based upon hierarchy interwov... 0 0 0 0 1 0
5406 Optimal input design for system identification... aim paper design bandlimited optimal input pow... 1 0 1 0 0 0
5407 Creating a Web Analysis and Visualization Envi... due rapid growth world wide web resource disco... 1 0 0 0 0 0
5408 Transfer Learning by Asymmetric Image Weightin... supervised learning successful automatic segme... 1 0 0 1 0 0
5409 Service Providers of the Sharing Economy: Who ... many sharing economy platforms uber airbnb bec... 1 0 0 0 0 0
5410 The generalized Fermat equation with exponents... study generalized fermat equation x zp solved ... 0 0 1 0 0 0
5411 On the image of the almost strict Morse n-cate... earlier work constructed almost strict morse n... 0 0 1 0 0 0
5412 Short-term Memory of Deep RNN extension deep learning towards temporal data ... 0 0 0 1 0 0
5413 Deep Learning for Physical Processes: Incorpor... consider use deep learning methods modeling co... 1 0 0 1 0 0
5414 Neutron Stars in Screened Modified Gravity: Ch... consider scalar field profile around relativis... 0 1 0 0 0 0
5415 Spin pumping into superconductors: A new probe... spin pumping refers microwavedriven spin curre... 0 1 0 0 0 0
5416 Evidence of Eta Aquariid Outbursts Recorded in... firm evidence existed ancient maya civilizatio... 0 1 0 0 0 0
5417 Degenerations of NURBS curves while all of wei... nurbs curve widely used computer aided design ... 1 0 0 0 0 0
5418 A Convex Parametrization of a New Class of Uni... propose new class universal kernel functions a... 1 0 0 1 0 0
5419 Hessian-based Analysis of Large Batch Training... large batch size training neural networks show... 0 0 0 1 0 0
5420 Sparse-Group Bayesian Feature Selection Using ... present bayesian method feature selection pres... 0 0 0 1 0 0
5421 A Simple, Fast and Fully Automated Approach fo... brain ct become standard imaging tool emergent... 1 1 0 0 0 0
5422 Anisotropic Dielectric Relaxation in Single Cr... three properties dielectric relaxation ultrapu... 0 1 0 0 0 0
5423 Design of Improved Quasi-Cyclic Protograph-Bas... protographbased raptorlike lowdensity paritych... 1 0 0 0 0 0
5424 Comparing the Finite-Time Performance of Simul... empirically evaluate finitetime performance se... 0 0 1 1 0 0
5425 On the Constituent Attributes of Software and ... societies increasingly dependent services supp... 1 0 0 0 0 0
5426 Borcherds-Bozec algebras, root multiplicities ... using twisted denominator identity derive clos... 0 0 1 0 0 0
5427 Pressure-induced spin pairing transition of Fe... high pressure provoke spin transitions transit... 0 1 0 0 0 0
5428 LSH on the Hypercube Revisited lsh locality sensitive hashing emerged powerfu... 1 0 0 0 0 0
5429 A Novel Metamaterial-Inspired RF-coil for Prec... paper propose design test new dualnuclei rfcoi... 0 1 0 0 0 0
5430 A biofilm and organomineralisation model for t... ooids typically spherical sediment grains char... 0 1 0 0 0 0
5431 Spectral Filtering for General Linear Dynamica... give polynomialtime algorithm learning latents... 0 0 0 1 0 0
5432 Markov $L_2$-inequality with the Laguerre weight let walphat talphaet alpha laguerre weight fun... 0 0 1 0 0 0
5433 Intrusion Prevention and Detection in Grid Com... grids allow users flexible ondemand usage comp... 1 0 0 0 0 0
5434 Evolution-Preserving Dense Trajectory Descriptors recently trajectorypooled deeplearning descrip... 1 0 0 0 0 0
5435 Multilingual and Cross-lingual Timeline Extrac... paper present approach extract ordered timelin... 1 0 0 0 0 0
5436 Mixture modeling on related samples by $ψ$-sti... great interest recently applying nonparametric... 0 0 0 1 0 0
5437 Optimal segmentation of directed graph and the... minimum feedback arc set problem asks delete m... 1 1 0 0 0 0
5438 Ensemble of Neural Classifiers for Scoring Kno... paper describes approach triple scoring task w... 1 0 0 0 0 0
5439 A Game-Theoretic Data-Driven Approach for Pseu... paper present efficient computational framewor... 1 0 0 0 0 0
5440 Nonsparse learning with latent variables popular tool producing meaningful interpretabl... 0 0 1 1 0 0
5441 The Role of Network Analysis in Industrial and... many problems industry social natural informat... 1 1 0 0 0 0
5442 Automated Detection, Exploitation, and Elimina... doublefetch bugs special type race condition u... 1 0 0 0 0 0
5443 Fano resonances and fluorescence enhancement o... analytically study spontaneous emission single... 0 1 0 0 0 0
5444 Unoriented Spectral Triples oriented riemannian manifold spinstructure def... 0 0 1 0 0 0
5445 Gradient-enhanced kriging for high-dimensional... surrogate models provide low computational cos... 1 0 0 1 0 0
5446 Contagion dynamics of extremist propaganda in ... recent terrorist attacks carried behalf isis a... 1 1 0 0 0 0
5447 Estimate exponential memory decay in Hidden Ma... inference hidden markov model challenging term... 0 0 0 1 0 0
5448 Fabrication of antenna-coupled KID array for C... kinetic inductance detectors kids become attra... 0 1 0 0 0 0
5449 The biglasso Package: A Memory- and Computatio... penalized regression models lasso extensively ... 0 0 0 1 0 0
5450 Run-and-Inspect Method for Nonconvex Optimizat... many optimization algorithms converge stationa... 1 0 0 1 0 0
5451 Hierarchical Adversarially Learned Inference propose novel hierarchical generative model si... 0 0 0 1 0 0
5452 Demonstration of a quantum key distribution ne... report results implementation quantum key dist... 1 0 0 0 0 0
5453 ZhuSuan: A Library for Bayesian Deep Learning paper introduce zhusuan python probabilistic p... 1 0 0 1 0 0
5454 UntrimmedNets for Weakly Supervised Action Rec... current action recognition methods heavily rel... 1 0 0 0 0 0
5455 Flatness of Minima in Random Inflationary Land... study likelihood relative minima random polyno... 0 1 0 0 0 0
5456 Deconvolutional Latent-Variable Model for Text... latentvariable model introduced text matching ... 1 0 0 1 0 0
5457 Magneto-elastic coupling model of deformable a... develop magnetoelastic coupling model interact... 0 1 0 0 0 0
5458 Sparse Phase Retrieval via Sparse PCA Despite ... consider problem highdimensional misspecified ... 1 0 1 0 0 0
5459 Convex Optimization with Unbounded Nonconvex O... consider problem minimizing convex objective f... 1 0 0 1 0 0
5460 Online $^{222}$Rn removal by cryogenic distill... describe purification xenon traces radioactive... 0 1 0 0 0 0
5461 The Kite Graph is Determined by Its Adjacency ... kite graph kitepq obtained appending complete ... 0 0 1 0 0 0
5462 Matchability of heterogeneous networks pairs consider problem graph matchability nonidentic... 1 0 1 1 0 0
5463 Visual Progression Analysis of Student Records... university curriculum campus level permajor le... 1 0 0 0 0 0
5464 A Sparse Graph-Structured Lasso Mixed Model fo... linear mixed model lmm shown competitive perfo... 1 0 0 1 0 0
5465 Capacity Releasing Diffusion for Speed and Loc... diffusions related random walk procedures cent... 1 0 0 0 0 0
5466 Two-term spectral asymptotics for the Dirichle... continuing series works following weyls oneter... 0 0 1 0 0 0
5467 Exact Good-Turing characterization of the two-... large sample size equivalence celebrated appro... 0 0 1 1 0 0
5468 Uniform deviation and moment inequalities for ... prove exponential deviation inequality convex ... 0 0 1 1 0 0
5469 On the Efficiency of Connection Charges---Part... twopart paper addresses design retail electric... 0 0 1 0 0 0
5470 Simplified Gating in Long Short-term Memory (L... standard lstm recurrent neural networks powerf... 1 0 0 1 0 0
5471 Transition Jitter in Heat Assisted Magnetic Re... paper apply extended landaulifschitz equation ... 0 1 0 0 0 0
5472 Complexity of human response delay in intermit... response delay inherent essential part human a... 0 0 0 0 1 0
5473 Algebraic cycles on some special hyperkähler v... note contains examples hyperkhler varieties x ... 0 0 1 0 0 0
5474 On recurrence in G-spaces introduce analyze following general concept re... 0 0 1 0 0 0
5475 Deep adversarial neural decoding present novel approach solve problem reconstru... 1 0 0 1 0 0
5476 Optimally Guarding 2-Reflex Orthogonal Polyhed... study problem guarding orthogonal polyhedron r... 1 0 0 0 0 0
5477 Strongly regular decompositions and symmetric ... positive integer complete graph mm vertices de... 0 0 1 0 0 0
5478 Resilient Non-Submodular Maximization over Mat... control sensing largescale systems results com... 1 0 0 1 0 0
5479 Tests for comparing time-invariant and time-va... based periodogramratios two univariate time se... 0 0 0 1 0 0
5480 Temperley-Lieb and Birman-Murakami-Wenzl like ... article consider conditions projection operato... 0 0 1 0 0 0
5481 A Nash Type result for Divergence Parabolic Eq... paper consider divergence parabolic equation b... 0 0 1 0 0 0
5482 Wick order, spreadability and exchangeability ... exhibit hamel basis concrete algebra mathfrakm... 0 0 1 0 0 0
5483 Visualizing Time-Varying Particle Flows with D... tasks identifying separation structures cluste... 1 0 0 0 0 0
5484 Factorization tricks for LSTM networks present two simple ways reducing number parame... 1 0 0 1 0 0
5485 Pure Rough Mereology and Counting study mereology parts wholes context formal ap... 1 0 1 0 0 0
5486 Relaxation of nonlinear elastic energies invol... start variational model nematic elastomers inv... 0 0 1 0 0 0
5487 A Scalable Framework for Acceleration of CNN T... deep neural networks dnns revolutionized numer... 1 0 0 0 0 0
5488 Toward Incorporation of Relevant Documents in ... recent advances neural word embedding provide ... 1 0 0 0 0 0
5489 Randomized Load Balancing on Networks with Sto... iterative load balancing algorithms indivisibl... 1 0 0 0 0 0
5490 The classification of Lagrangians nearby the W... whitney immersion lagrangian sphere inside fou... 0 0 1 0 0 0
5491 Simulation study of energy resolution, positio... simulation study energy resolution position re... 0 1 0 0 0 0
5492 Multi-Round Influence Maximization (Extended V... paper study multiround influence maximization ... 1 0 0 0 0 0
5493 Generalisation dynamics of online learning in ... deep neural networks achieve stellar generalis... 1 0 0 1 0 0
5494 Nonparametric Testing for Differences in Elect... work motivated problem testing differences mea... 0 0 0 1 0 0
5495 Dynamic coupling of ferromagnets via spin Hall... synchronized magnetization dynamics ferromagne... 0 1 0 0 0 0
5496 Exact Combinatorial Inference for Brain Images permutation test known exact test procedure st... 0 0 0 1 1 0
5497 Laser annealing heals radiation damage in aval... avalanche photodiodes apds practical option sp... 0 1 0 0 0 0
5498 Bayesian Deep Convolutional Encoder-Decoder Ne... interested development surrogate models uncert... 0 0 0 1 0 0
5499 A symmetric monoidal and equivariant Segal inf... mmo arxiv reworked generalized equivariant inf... 0 0 1 0 0 0
5500 Compact Convolutional Neural Networks for Clas... steadystate visual evoked potentials ssveps ne... 0 0 0 1 1 0
5501 Long-range proximity effect in Nb-based hetero... oddfrequency triplet cooper pairs believed car... 0 1 0 0 0 0
5502 ASK/PSK-correspondence and the r-map formulate correspondence affine projective spe... 0 0 1 0 0 0
5503 Trust Region Value Optimization using Kalman F... policy evaluation key process reinforcement le... 1 0 0 1 0 0
5504 Simplified Long Short-term Memory Recurrent Ne... present five variants standard long shortterm ... 1 0 0 0 0 0
5505 Contracts as specifications for dynamical syst... paper introduces assumeguarantee contracts con... 1 0 0 0 0 0
5506 Visualizing the Phase-Space Dynamics of an Ext... map phasespace trajectories externalcavity sem... 0 1 0 0 0 0
5507 On decision regions of narrow deep neural netw... show neural network functions width less equal... 0 0 0 1 0 0
5508 An adelic arithmeticity theorem for lattices i... prove mild assumptions lattice product semisim... 0 0 1 0 0 0
5509 Quadratic automaton algebras and intermediate ... present example quadratic algebra given three ... 0 0 1 0 0 0
5510 Homotopy types of gauge groups related to $S^3... let mlm total space sbundle classified element... 0 0 1 0 0 0
5511 Optical quality assurance of GEM foils analysis software developed high aspect ratio ... 0 1 0 0 0 0
5512 On the Global Continuity of the Roots of Famil... raise question existence continuous roots fami... 0 0 1 0 0 0
5513 On Number of Rich Words finite word w length n contains n distinct pal... 0 0 1 0 0 0
5514 A Geometric Analysis of Power System Loadabili... understanding feasible power flow region centr... 1 0 1 0 0 0
5515 Model Selection Confidence Sets by Likelihood ... traditional activity model selection aims disc... 0 0 1 1 0 0
5516 Analysis of Dirichlet forms on graphs thesis study connections metric combinatorial ... 0 0 1 0 0 0
5517 Designing and building the mlpack open-source ... mlpack opensource c machine learning library e... 1 0 0 0 0 0
5518 A Vietoris-Smale mapping theorem for the homot... results smale dugundji allow compare homotopy ... 0 0 1 0 0 0
5519 Characterization of multivariate Bernoulli dis... express frchet class multivariate bernoulli di... 0 0 1 1 0 0
5520 Note on character varieties and cluster algebras use bonahonwongs trace map study character var... 0 0 1 0 0 0
5521 Privacy-Preserving Multi-Period Demand Respons... study multiperiod demand response problem smar... 1 0 0 0 0 0
5522 An ALMA survey of submillimetre galaxies in th... determine radio size distribution large sample... 0 1 0 0 0 0
5523 Negative differential resistance and magnetore... investigate transport properties pristine zigz... 0 1 0 0 0 0
5524 Incremental Eigenpair Computation for Graph La... smallest eigenvalues associated eigenvectors i... 1 0 0 1 0 0
5525 Audio-replay attack detection countermeasures paper presents speech technology center stc re... 1 0 0 1 0 0
5526 Joint Scheduling and Transmission Power Contro... paper study determine concurrent transmissions... 1 0 0 0 0 0
5527 Proceedings 15th International Conference on A... th international conference automata formal la... 1 0 0 0 0 0
5528 Correlative cellular ptychography with functio... precise localization nanoparticles within cell... 0 1 0 0 0 0
5529 A Dynamic-Adversarial Mining Approach to the S... operating dynamic real world environment requi... 0 0 0 1 0 0
5530 Software stage-effort estimation based on asso... relaying early effort estimation predict requi... 1 0 0 0 0 0
5531 Phase Transitions in Approximate Ranking study problem approximate ranking observations... 0 0 1 1 0 0
5532 Finding Influential Training Samples for Gradi... address problem finding influential training s... 0 0 0 1 0 0
5533 Vulnerability and co-susceptibility determine ... network local disturbance propagate eventually... 1 1 0 0 0 0
5534 Transfer learning for music classification and... paper present transfer learning approach music... 1 0 0 0 0 0
5535 Dynamic Transition in Symbiotic Evolution Indu... standard bifurcation dynamical system stationa... 0 1 0 0 0 0
5536 Scale-invariant magnetoresistance in a cuprate... anomalous metallic state hightemperature super... 0 1 0 0 0 0
5537 Thermoelectric Devices: Principles and Future ... principles thermoelectric phenomenon including... 0 1 0 0 0 0
5538 Exploring one particle orbitals in large Many-... strong disorder interacting quantum systems gi... 0 1 0 0 0 0
5539 On transient waves in linear viscoelasticity aim paper present comprehensive review method ... 0 1 0 0 0 0
5540 Detection of an Optical Counterpart to the ALF... report detection confidence optical counterpar... 0 1 0 0 0 0
5541 Boosting the power factor with resonant states... particularly promising pathway enhance efficie... 0 1 0 0 0 0
5542 Activation cross-section data for alpha-partic... additional experimental cross sections deduced... 0 0 0 1 0 0
5543 Congestion-Aware Distributed Network Selection... intelligent network selection plays important ... 1 0 0 0 0 0
5544 Deep Learning Based Large-Scale Automatic Sate... highresolution satellite imagery increasingly ... 1 0 0 1 0 0
5545 Complexity of the Regularized Newton Method newtons method finding unconstrained minimizer... 0 0 1 0 0 0
5546 Quantifying Program Bias range sensitivity algorithmic decisions expand... 1 0 0 0 0 0
5547 A Theory of Exoplanet Transits with Light Scat... exoplanet transit spectroscopy enables charact... 0 1 0 0 0 0
5548 Tuning Majorana zero modes with temperature in... study superconductornormal statesuperconductor... 0 1 0 0 0 0
5549 A repulsive skyrmion chain as guiding track fo... skyrmion racetrack design proposed allows ther... 0 1 0 0 0 0
5550 Compressive Sensing-Based Detection with Multi... detection high dimensional multimodal data cha... 1 0 0 1 0 0
5551 Factors in Recommending Contrarian Content on ... polarization troubling phenomenon lead societa... 1 0 0 0 0 0
5552 Generating the Log Law of the Wall with Superp... turbulence remains unsolved multidisciplinary ... 0 1 0 0 0 0
5553 Adaptive p-value weighting with power optimality weighting pvalues wellestablished strategy imp... 0 0 1 1 0 0
5554 Topical homophily in online social systems understanding dynamics social interactions cru... 1 0 0 0 0 0
5555 Perceptual Context in Cognitive Hierarchies cognition depend bottomup sensor feature abstr... 1 0 0 0 0 0
5556 Coherence for braided and symmetric pseudomonoids presentations unbraided braided symmetric pseu... 1 0 1 0 0 0
5557 Linear Optimal Power Flow Using Cycle Flows linear optimal power flow lopf algorithms use ... 1 1 0 0 0 0
5558 Toward construction of a consistent field theo... article review authors concerning construction... 0 1 0 0 0 0
5559 The Exact Solution to Rank-1 L1-norm TUCKER2 D... study rank lnormbased tucker ltucker decomposi... 1 0 0 1 0 0
5560 A Statistical Comparative Planetology Approach... search habitable exoplanets life beyond solar ... 0 1 0 0 0 0
5561 Fast Generation for Convolutional Autoregressi... convolutional autoregressive models recently d... 1 0 0 1 0 0
5562 Variable domain N-linked glycosylation and neg... autoreactive b cells central role pathogenesis... 0 0 0 0 1 0
5563 Periodic Airy process and equilibrium dynamics... establish exact mapping equilibrium imaginary ... 0 1 1 0 0 0
5564 Quantum machine learning: a classical perspective recently increased computational power data av... 1 0 0 1 0 0
5565 Robot Assisted Tower Construction - A Resource... research humanrobot collaboration humanrobot t... 1 0 0 0 0 0
5566 Counterexample Guided Inductive Optimization paper describes three variants counterexample ... 1 0 0 0 0 0
5567 Bounds for the difference between two Čebyšev ... work generalization pregrss inequality establi... 0 0 1 0 0 0
5568 Converting Your Thoughts to Texts: Enabling Br... electroencephalography eeg based brain compute... 1 0 0 0 0 0
5569 Model Checking of Cache for WCET Analysis Refi... realtime systems running timing constraints sc... 1 0 0 0 0 0
5570 Rational Solutions of the Painlevé-II Equation... rational solutions painlevii equation appear s... 0 1 1 0 0 0
5571 PHAST: Protein-like heteropolymer analysis by ... phast software package written standard fortra... 0 1 0 0 0 0
5572 An Information-Theoretic Analysis for Thompson... informationtheoretic bayesian regret bounds ru... 0 0 0 1 0 0
5573 Optimal portfolio selection in an Itô-Markov a... study portfolio selection problem continuousti... 0 0 0 0 0 1
5574 SPIRITS: Uncovering Unusual Infrared Transient... present ongoing systematic search extragalacti... 0 1 0 0 0 0
5575 Is the annual growth rate in balance of trade ... describe time series multivariate adaptive reg... 0 0 0 1 0 0
5576 Sparse-View X-Ray CT Reconstruction Using $\el... major challenge xray computed tomography ct re... 1 1 0 1 0 0
5577 Adversarial classification: An adversarial ris... classification problems security settings usua... 0 0 0 1 0 0
5578 Volume growth in the component of fibered twists liouville domain w whose boundary admits perio... 0 0 1 0 0 0
5579 Scalar Reduction of a Neural Field Model with ... study deterministic version one twodimensional... 0 0 0 0 1 0
5580 Revisiting Elementary Denotational Semantics operational semantics enormously successful la... 1 0 0 0 0 0
5581 Dirac Composite Fermion - A Particle-Hole Spinor particlehole ph symmetry halffilled landau lev... 0 1 0 0 0 0
5582 Safe Adaptive Importance Sampling importance sampling become indispensable strat... 1 0 0 0 0 0
5583 Secure Grouping Protocol Using a Deck of Cards consider problem call secure grouping dividing... 1 0 0 0 0 0
5584 Categorically closed topological groups let mathcal c subcategory category topologized... 0 0 1 0 0 0
5585 Extracting significant signal of news consumpt... according eurobarometer report eu media use ma... 1 0 0 0 0 0
5586 Annealed Generative Adversarial Networks introduce novel framework adversarial training... 1 0 0 1 0 0
5587 Attitude Control of Spacecraft Formations Subj... paper considers problem achieving attitude con... 1 0 0 0 0 0
5588 Cloud Radiative Effect Study Using Sky Camera analysis clouds earths atmosphere important va... 1 1 0 0 0 0
5589 On Testing Machine Learning Programs nowadays witnessing wide adoption machine lear... 1 0 0 0 0 0
5590 Scalable and Efficient Statistical Inference w... theory statistical inference along strategy di... 0 0 0 1 0 0
5591 Instability of pulses in gradient reaction-dif... scalar reactiondiffusion equation known stabil... 0 0 1 0 0 0
5592 Consistency of the plug-in functional predicto... new results functional prediction ornsteinuhle... 0 0 1 1 0 0
5593 Analysis of Sequence Polymorphism of LINEs and... goal dissertation study sequence polymorphism ... 0 0 0 0 1 0
5594 Classification of digital affine noncommutativ... known connected translation invariant ndimensi... 0 0 1 0 0 0
5595 The vectorial Ribaucour transformation for sub... obtain reduction vectorial ribaucour transform... 0 0 1 0 0 0
5596 Social Networks through the Prism of Cognition human relations driven social events people in... 1 0 0 0 0 0
5597 Metriplectic Integrators for the Landau Collis... present novel framework addressing nonlinear l... 0 1 0 0 0 0
5598 Eliminating higher-multiplicity intersections ... rfold analogues whitney trick air since howeve... 1 0 1 0 0 0
5599 Lagrangian Transport Through Surfaces in Compr... materialbased ie lagrangian methodology exact ... 1 1 1 0 0 0
5600 Manipulative Elicitation -- A New Attack on El... lu boutilier proposed novel approach based min... 1 0 0 0 0 0
5601 Modeling The Intensity Function Of Point Proce... event sequence asynchronously generated random... 1 0 0 1 0 0
5602 A note on relative amenable of finite von Neum... let finite von neumann algebra resp type ii fa... 0 0 1 0 0 0
5603 Powerful numbers in $(1^{\ell}+q^{\ell})(2^{\e... let q positive integer recently niu liu proved... 0 0 1 0 0 0
5604 LandmarkBoost: Efficient Visual Context Classi... growing popularity autonomous systems creates ... 1 0 0 0 0 0
5605 On stably trivial spin torsors over low-dimens... paper discusses stably trivial torsors spin or... 0 0 1 0 0 0
5606 On the relation between dependency distance, c... liu et al provide comprehensive account resear... 1 0 0 0 0 0
5607 Edge Erasures and Chordal Graphs prove several results chordal graphs weighted ... 1 0 1 0 0 0
5608 One-dimensional plasmonic hotspots located bet... hotspots surfaceenhanced resonance raman scatt... 0 1 0 0 0 0
5609 An efficient methodology for the analysis and ... complex computer codes often time expensive di... 0 0 1 1 0 0
5610 Knowledge Adaptation: Teaching to Adapt domain adaptation crucial many realworld appli... 1 0 0 0 0 0
5611 A Datamining Approach for Emotions Extraction ... microblogging sites direct platform users expr... 1 0 0 0 0 0
5612 Local Nonparametric Estimation for Second-Orde... paper discusses local linear smoothing estimat... 0 0 1 1 0 0
5613 Ergodic actions of the compact quantum group $... among ergodic actions compact quantum group ma... 0 0 1 0 0 0
5614 On Vector ARMA Models Consistent with a Finite... formulate called varma covariance matching pro... 0 0 1 1 0 0
5615 Edge states in non-Fermi liquids devise approach calculation scaling dimensions... 0 1 0 0 0 0
5616 RobustFill: Neural Program Learning under Nois... problem automatically generating computer prog... 1 0 0 0 0 0
5617 Review of flexible and transparent thin-film t... flexible transparent electronics presents new ... 0 1 0 0 0 0
5618 Updated physics design of the DAEdALUS and Iso... decayatrest experiment deltacp violation labor... 0 1 0 0 0 0
5619 Scalable Gaussian Process Computations Using H... present kernelindependent method applies hiera... 0 0 0 1 0 0
5620 Evolutionary Data Systems anyone need data system today confronted numer... 1 0 0 0 0 0
5621 Optimal Learning for Sequential Decision Makin... consider problem sequentially making decisions... 0 0 0 1 0 0
5622 Determination of hysteresis in finite-state ra... consider problem modeling hysteresis finitesta... 0 1 0 1 0 0
5623 Moyennes effectives de fonctions multiplicativ... establish effective meanvalue estimates wide c... 0 0 1 0 0 0
5624 Magnetic Excitations and Continuum of a Field-... report terahertz spectroscopy quantum spin dyn... 0 1 0 0 0 0
5625 Wireless Network-Level Partial Relay Cooperati... work study benefit partial relay cooperation c... 1 0 0 0 0 0
5626 Improving Development Practices through Experi... testdriven development tdd agile development a... 1 0 0 0 0 0
5627 An explicit Gross-Zagier formula related to th... let pequiv mod rational prime number mod p cub... 0 0 1 0 0 0
5628 Case Studies of Exocomets in the System of HD ... aim study investigate dynamics possible comets... 0 1 0 0 0 0
5629 3D ab initio modeling in cryo-EM by autocorrel... singleparticle reconstruction spr cryoelectron... 0 0 0 1 0 0
5630 Reinforcement Learning with a Corrupted Reward... realworld reward function perfect sensory erro... 1 0 0 1 0 0
5631 Divisor-sum fibers let scdot denote sumofproperdivisors function ... 0 0 1 0 0 0
5632 New zirconium hydrides predicted by structure ... formation precipitated zirconium zr hydrides c... 0 1 0 0 0 0
5633 Exchange striction driven magnetodielectric ef... caofes semiconducting oxysulfide polar layered... 0 1 0 0 0 0
5634 Studying Magnetic Fields using Low-frequency P... lowfrequency polarisation observations pulsars... 0 1 0 0 0 0
5635 Two-sided Facility Location recent years witnessed rise many successful ec... 1 0 0 0 0 0
5636 Optimal hedging under fast-varying stochastic ... market rough markovian meanreverting stochasti... 0 0 0 0 0 1
5637 Personal Food Computer: A new device for contr... due interdisciplinary nature devices controlle... 1 0 0 0 0 0
5638 Quenched Noise and Nonlinear Oscillations in B... nonlinear oscillators key modelling tool many ... 0 1 1 0 0 0
5639 Multi-Layer Convolutional Sparse Modeling: Pur... recently proposed multilayer convolutional spa... 1 0 0 1 0 0
5640 Coble's group and the integrability of the Gos... paper considers planar figure combinatorial po... 0 1 1 0 0 0
5641 Latent Hinge-Minimax Risk Minimization for Inf... deep learning dl methods show good performance... 1 0 0 0 0 0
5642 Autonomous Vehicle Speed Control for Safe Navi... humans sensors autonomous vehicle limited sens... 1 0 0 0 0 0
5643 Statistical inference methods for cumulative i... competing risks data arise frequently clinical... 0 0 0 1 0 0
5644 Information Perspective to Probabilistic Model... compare contrast statistical physics quantum p... 0 0 0 1 0 0
5645 A Cofibration Category on Closure Spaces construct cofibration category structure categ... 0 0 1 0 0 0
5646 XSAT of Linear CNF Formulas open questions respect computational complexit... 1 0 1 0 0 0
5647 Drone Squadron Optimization: a Self-adaptive A... paper proposes drone squadron optimization new... 1 0 1 0 0 0
5648 A Downsampled Variant of ImageNet as an Altern... original imagenet dataset popular largescale b... 1 0 0 0 0 0
5649 Stability of Conditional Sequential Monte Carlo particle gibbs pg sampler markov chain monte c... 0 0 0 1 0 0
5650 Diffusion along chains of normally hyperbolic ... present paper part series articles dedicated e... 0 1 1 0 0 0
5651 Multi-wavelength Spectral Analysis of Ellerman... ellerman bombs ebs kind solar activities sugge... 0 1 0 0 0 0
5652 Numerical study of the Kadomtsev--Petviashvili... detailed numerical study long time behaviour d... 0 1 1 0 0 0
5653 Asymptotic power of Rao's score test for indep... let bf r pearson correlation matrix normal ran... 0 0 1 1 0 0
5654 Sensing and Modeling Human Behavior Using Soci... past years witnessed emergence new discipline ... 1 1 0 0 0 0
5655 Interior transmission eigenvalue problems on c... paper consider interior transmission eigenvalu... 0 0 1 0 0 0
5656 A superpolynomial lower bound for the size of ... unambiguous nondeterministic finite automata i... 1 0 0 0 0 0
5657 Taxonomy Induction using Hypernym Subsequences propose novel semisupervised approach towards ... 1 0 0 0 0 0
5658 Identifying Clickbait Posts on Social Media wi... purpose clickbait make link appealing people c... 1 0 0 0 0 0
5659 WYS*: A DSL for Verified Secure Multi-party Co... secure multiparty computation mpc enables set ... 1 0 0 0 0 0
5660 Probabilities of causation of climate changes multiple changes earths climate system observe... 0 0 0 1 0 0
5661 A Realistic Dataset for the Smart Home Device ... field distributed constraint optimization gain... 1 0 0 0 0 0
5662 The extra scalar degrees of freedom from the t... principle minimal extension standard model par... 0 1 0 0 0 0
5663 Closing the Sim-to-Real Loop: Adapting Simulat... consider problem transferring policies real wo... 1 0 0 0 0 0
5664 Revisiting Simple Neural Networks for Learning... address problem learning vector representation... 1 0 0 1 0 0
5665 On the tail behavior of a class of multivariat... conditions geometric ergodicity multivariate a... 0 0 1 1 0 0
5666 On the Complexity of Detecting Convexity over ... recently shown problem testing global convexit... 0 0 0 1 0 0
5667 Variance-Reduced Stochastic Learning under Ran... several useful variancereduced stochastic grad... 1 0 0 1 0 0
5668 CELIO: An application development framework fo... developing applications interactive space diff... 1 0 0 0 0 0
5669 Single Iteration Conditional Based DSE Conside... increasing complexity distribution network cal... 0 0 0 1 0 0
5670 Enhanced Network Embeddings via Exploiting Edg... network embedding methods aim learning lowdime... 1 0 0 0 0 0
5671 Virtual Constraints and Hybrid Zero Dynamics f... underactuation ubiquitous human locomotion ubi... 1 0 1 0 0 0
5672 Selective insulators and anomalous responses i... study threecomponent fermionic fluid optical l... 0 1 0 0 0 0
5673 Computation of optimal transport and related h... paper presents widely applicable approach solv... 0 0 0 1 0 1
5674 Active particles in periodic lattices natural artificial smallscale swimmers may oft... 0 1 0 0 0 0
5675 First measeurements in search for keV-sterile ... present first measurements tritium betadecay s... 0 1 0 0 0 0
5676 Fractional Abelian topological phases of matte... notes constitute chapter lecole de physique de... 0 1 0 0 0 0
5677 A new construction of universal spaces for asy... n construct separable metric space mathbbun un... 0 0 1 0 0 0
5678 A Comprehensive Framework for Dynamic Bike Reb... bike sharing vital component modern multimodal... 0 0 0 1 0 0
5679 On Thin Air Reads: Towards an Event Structures... model relaxed memory propose confusionfree eve... 1 0 0 0 0 0
5680 Tensor ring decomposition tensor decompositions canonical format tensor ... 1 0 0 0 0 0
5681 Combining Information from Multiple Forecaster... even though forecasting literature agrees aggr... 0 0 1 1 0 0
5682 QCD-Aware Recursive Neural Networks for Jet Ph... recent progress applying machine learning jet ... 0 1 0 1 0 0
5683 A conjecture on $C$-matrices of cluster algebras skewsymmetrizable cluster algebra mathcal prin... 0 0 1 0 0 0
5684 Attacking Similarity-Based Link Prediction in ... link prediction one fundamental problems compu... 1 0 0 0 0 0
5685 On algebraic branching programs of small width valiant showed complexity class vpe families p... 1 0 0 0 0 0
5686 A lightweight thermal heat switch for redundan... previously designed cryogenic thermal heat swi... 0 1 0 0 0 0
5687 Fast Automatic Smoothing for Generalized Addit... multiple generalized additive models gams type... 0 0 0 1 0 0
5688 Stabilization and control of Majorana bound st... show elongated magnetic skyrmions host majoran... 0 1 0 0 0 0
5689 Meromorphic functions with small Schwarzian de... consider family meromorphic functions f form f... 0 0 1 0 0 0
5690 Measure-geometric Laplacians for discrete dist... freiberg zhle introduced developed harmonic ca... 0 0 1 0 0 0
5691 Optimal heat transfer and optimal exit times heat exchanger modeled closed domain containin... 0 1 0 0 0 0
5692 A Semantics Comparison Workbench for a Concurr... number highlevel languages libraries proposed ... 1 0 0 0 0 0
5693 Simulating Linear Logic in 1-Only Linear Logic linear logic introduced girard resourcesensiti... 1 0 0 0 0 0
5694 Adaptive Network Coding Schemes for Satellite ... paper propose two novel physical layer aware a... 1 0 0 0 0 0
5695 A Symbolic Computation Framework for Constitut... entropy principle formulation mller liu common... 0 1 0 0 0 0
5696 Measuring bot and human behavioral dynamics bots social media accounts controlled software... 1 0 0 0 0 0
5697 Optimal control of elliptic equations with pos... optimal control problems without control costs... 0 0 1 0 0 0
5698 Beyond Word Embeddings: Learning Entity and Co... text representations using neural word embeddi... 1 0 0 0 0 0
5699 Fraunhofer diffraction at the two-dimensional ... twodimensional mathematical model quadraticall... 0 1 0 0 0 0
5700 High order surface radiation conditions for ti... formulate new family high order onsurface radi... 0 1 1 0 0 0
5701 Probabilistic PARAFAC2 parafac multimodal factor analysis model suita... 0 0 0 1 0 0
5702 Quantizing Euclidean motions via double-coset ... concepts mathematical crystallography group th... 1 0 0 0 0 0
5703 Evolutionary Stability of Reputation Managemen... participant peertopeer network prefers freerid... 1 0 0 0 0 0
5704 A Study of FOSS'2013 Survey Data Using Cluster... foss acronym free open source software foss su... 1 0 0 1 0 0
5705 Intermetallic Nanocrystals: Syntheses and Cata... forefront nanochemistry exists research endeav... 0 1 0 0 0 0
5706 Linear-scaling electronic structure theory: El... linearscaling electronic structure methods bas... 0 1 0 0 0 0
5707 Characterizing the 2016 Russian IRA Influence ... recently social media seen promote democratic ... 1 0 0 0 0 0
5708 Nonlinear Mapping Convergence and Application ... paper discusses discretetime maps form xk fxk ... 1 0 1 0 0 0
5709 Correlating Cellular Features with Gene Expres... understand biology cancer joint analysis multi... 0 0 0 1 1 0
5710 Links with nontrivial Alexander polynomial whi... give infinitely many component links unknotted... 0 0 1 0 0 0
5711 Shape optimization in laminar flow with a labe... computational design optimization fluid dynami... 1 0 0 0 0 0
5712 An Empirical Analysis of Vulnerabilities in Py... paper examines software vulnerabilities common... 1 0 0 0 0 0
5713 A combination chaotic system and application i... paper using logistic sine tent systems define ... 1 0 0 0 0 0
5714 A Hybrid MILP and IPM for Dynamic Economic Dis... dynamic economic dispatch valvepoint effect de... 0 0 1 0 0 0
5715 Using Big Data Technologies for HEP Analysis hep community approaching era excellent perfor... 1 0 0 0 0 0
5716 Predicting non-linear dynamics by stable local... brains need predict body reacts motor commands... 1 0 0 0 0 0
5717 Adaptive Exploration-Exploitation Tradeoff for... paper propose study opportunistic bandits new ... 1 0 0 1 0 0
5718 A Quantile Estimate Based on Local Curve Fitting quantile estimation problem presented fields q... 0 0 0 1 0 0
5719 Diagnosing added value of convection-permittin... dynamical downscaling highresolution regional ... 0 1 0 1 0 0
5720 An integral formula for Riemannian $G$-structu... riemannian gstructure compute divergence vecto... 0 0 1 0 0 0
5721 Putin's peaks: Russian election data revisited study anomalous prevalence integer percentages... 0 0 0 1 0 0
5722 On rate of convergence in non-central limit th... main result paper rate convergence hermitetype... 0 0 1 0 0 0
5723 Optimal Output Regulation for Square, Over-Act... paper considers two different problems traject... 1 0 0 0 0 0
5724 Pattern recognition techniques for Boson Sampl... difficulty validating largescale quantum devic... 1 0 0 0 0 0
5725 Conformal k-NN Anomaly Detector for Univariate... anomalies timeseries data give essential often... 1 0 0 1 0 0
5726 Applications of Trajectory Data from the Persp... transportation agencies opportunity leverage i... 1 0 0 1 0 0
5727 Towards the dual motivic Steenrod algebra in p... dual motivic steenrod algebra mod ell coeffici... 0 0 1 0 0 0
5728 Toeplitz Quantization and Convexity let tmf toeplitz quantization real cinfty func... 0 0 1 0 0 0
5729 The Paulsen Problem, Continuous Operator Scali... paulsen problem basic open problem operator th... 1 0 1 0 0 0
5730 On architectural choices in deep learning: Fro... study mechanisms characterize asymptotic conve... 1 0 1 1 0 0
5731 Iron Snow in the Martian Core? decline mars global magnetic field billion yea... 0 1 0 0 0 0
5732 Motion Segmentation via Global and Local Spars... paper propose new framework segmenting feature... 1 0 0 0 0 0
5733 Topological strings linking with quasi-particl... demonstrate topological classification vortice... 0 1 0 0 0 0
5734 Self-Imitation Learning paper proposes selfimitation learning sil simp... 0 0 0 1 0 0
5735 Controllability to Equilibria of the 1-D Fokke... consider problem controlling spatiotemporal pr... 1 0 1 0 0 0
5736 Buy your coffee with bitcoin: Real-world deplo... paper discuss existing approaches bitcoin paym... 1 0 0 0 0 0
5737 Tackling non-linearities with the effective fi... present extension effective field theory frame... 0 1 0 0 0 0
5738 A recommender system to restore images with im... build collaborative filtering recommender syst... 1 0 0 1 0 0
5739 A Parallel Simulator for Massive Reservoir Mod... paper presents work developing parallel comput... 1 0 0 0 0 0
5740 Bifurcation structure of cavity soliton dynami... consider wideaperture surfaceemitting laser sa... 0 1 0 0 0 0
5741 Early warning signal for interior crises in ex... ability reliably predict critical transitions ... 0 1 0 0 0 0
5742 Harmonic Mean Iteratively Reweighted Least Squ... propose new iteratively reweighted least squar... 1 0 1 0 0 0
5743 The Italian Pension Gap: a Stochastic Optimal ... study gap state pension provided italian pensi... 0 0 0 0 0 1
5744 Immigration-induced phase transition in a regu... powerlawdistributed species counts clone count... 0 0 0 0 1 0
5745 Nanoscale assembly of superconducting vortices... vortices play crucial role determining propert... 0 1 0 0 0 0
5746 STACCATO: A Novel Solution to Supernova Photom... present new solution problem classifying type ... 0 1 0 0 0 0
5747 Coupling of multiscale and multi-continuum app... simulating complex processes fractured media r... 0 0 1 0 0 0
5748 Spaces which invert weak homotopy equivalences well known x cwcomplex every weak homotopy equ... 0 0 1 0 0 0
5749 Minimal surfaces in the 3-sphere by desingular... integer k geq apply gluing methods construct s... 0 0 1 0 0 0
5750 Results from EDGES High-Band: I. Constraints o... report constraints global cm signal due neutra... 0 1 0 0 0 0
5751 Novel paradigms for advanced distribution grid... electricity distribution grid designed cope lo... 1 0 0 0 0 0
5752 Uniformly Bounded Sets in Quasiperiodically Fo... paper addresses structures state space quasipe... 1 0 0 0 0 0
5753 Understand Functionality and Dimensionality of... vector embedding foundational building block m... 0 0 0 1 0 0
5754 Strongly correlated one-dimensional Bose-Fermi... consider multicomponent quantum mixtures boson... 0 1 0 0 0 0
5755 Joint Pose and Principal Curvature Refinement ... paper present novel joint approach optimising ... 1 0 0 0 0 0
5756 Stable basic sets for finite special linear an... paper show using delignelusztig theory kawanak... 0 0 1 0 0 0
5757 Correspondences without a Core study formal properties correspondences curves... 0 0 1 0 0 0
5758 Oxidative species-induced excitonic transport ... oxidative stress pathological hallmark neurode... 0 1 0 0 0 0
5759 On radial Schroedinger operators with a Coulom... paper presents thorough analysis dimensional s... 0 0 1 0 0 0
5760 Extrema-weighted feature extraction for functi... motivation although rich literature methods as... 0 0 0 1 0 0
5761 A representation theorem for stochastic proces... many applications require stochastic processes... 0 0 1 1 0 0
5762 Facial Recognition Enabled Smart Door Using Mi... privacy security two universal rights ensure d... 1 0 0 0 0 0
5763 Veamy: an extensible object-oriented C++ libra... paper summarizes development veamy objectorien... 1 0 0 0 0 0
5764 Composition by Conversation musical programming languages developed purely... 1 0 0 0 0 0
5765 Electrostatic and induction effects in the sol... experiments show k atm pressure transfer free ... 0 1 0 0 0 0
5766 Impact of theoretical priors in cosmological a... investigate impact general conditions theoreti... 0 1 0 0 0 0
5767 Spin tracking of polarized protons in the Main... main injector mi fermilab currently produces h... 0 1 0 0 0 0
5768 Wormholes and masses for Goldstone bosons exist nontrivial stationary points euclidean a... 0 1 0 0 0 0
5769 A class of states supporting diffusive spin dy... spin transport isotropic heisenberg model sect... 0 1 0 0 0 0
5770 Learning to Invert: Signal Recovery via Deep C... promise compressive sensing cs offset two sign... 1 0 0 1 0 0
5771 Multi-message Authentication over Noisy Channe... paper investigate multimessage authentication ... 1 0 0 0 0 0
5772 The Garden of Eden theorem: old and new review topics theory cellular automata dynamic... 0 1 1 0 0 0
5773 Bosonization in Non-Relativistic CFTs demonstrate explicitly correspondence protecte... 0 1 0 0 0 0
5774 Learning latent representations for style cont... paper introduce variational autoencoder vae en... 1 0 0 0 0 0
5775 Directed negative-weight percolation consider directed variant negativeweight perco... 0 1 0 0 0 0
5776 Integrating Lipschitzian Dynamical Systems usi... article analyze generalized trapezoidal rule i... 0 0 1 0 0 0
5777 Effects of Planetesimal Accretion on the Therm... remarkable discovery nasas kepler mission wide... 0 1 0 0 0 0
5778 Estimation bounds and sharp oracle inequalitie... obtain estimation error rates sharp oracle ine... 0 0 1 1 0 0
5779 On closed Lie ideals of certain tensor product... simple calgebra calgebra b proved every closed... 0 0 1 0 0 0
5780 On the Chemistry of the Young Massive Protoste... present first gasgrain astrochemical model ngc... 0 1 0 0 0 0
5781 Uniform Consistency in Stochastic Block Model ... citebickelnonparametric developed general fram... 0 0 0 1 0 0
5782 Fine-scale population structure analysis in Ar... last decades dispersal studies benefitted use ... 0 0 0 0 1 0
5783 Fast transforms over finite fields of characte... additive fast fourier transform finite field c... 1 0 0 0 0 0
5784 Universality of group embeddability working framework borel reducibility study var... 0 0 1 0 0 0
5785 Plenoptic Monte Carlo Object Localization for ... order fully function human environments robot ... 1 0 0 0 0 0
5786 CUR Decompositions, Similarity Matrices, and S... general framework solving subspace clustering ... 1 0 0 1 0 0
5787 Approximating Geometric Knapsack via L-packings study twodimensional geometric knapsack proble... 1 0 0 0 0 0
5788 Impact and mitigation strategy for future sola... widely established extreme space weather event... 0 1 0 0 0 0
5789 Empirical Bayes Matrix Completion develop empirical bayes eb algorithm matrix co... 0 0 1 1 0 0
5790 Excitonic Instability and Pseudogap Formation ... electron correlation effects studied zrsis usi... 0 1 0 0 0 0
5791 The Riemannian Geometry of Deep Generative Models deep generative models learn mapping low dimen... 1 0 0 1 0 0
5792 Portable, high-performance containers for HPC building deploying software highend computing ... 1 0 0 0 0 0
5793 Learning a Deep Convolution Network with Turin... adversarially trained deep neural networks sig... 1 0 0 0 0 0
5794 Quantum dynamics of a hydrogen-like atom in a ... consider hydrogen atom confined timedependent ... 0 1 0 0 0 0
5795 Richardson's solutions in the real- and comple... constant pairing hamiltonian holds exact solut... 0 1 0 0 0 0
5796 Complexity Results for MCMC derived from Quant... paper considers obtain mcmc quantitative conve... 0 0 0 1 0 0
5797 Symmetries and regularity for holomorphic maps... let fmathbb bn mathbb bn holomorphic map study... 0 0 1 0 0 0
5798 On the treatment of $\ell$-changing proton-hyd... energyconserving angular momentumchanging coll... 0 1 0 0 0 0
5799 Complex Economic Activities Concentrate in Lar... economic activities agglomerate others agglome... 1 0 0 0 0 0
5800 A 588 Gbps LDPC Decoder Based on Finite-Alphab... ultrahigh throughput lowdensity parity check l... 1 0 0 0 0 0
5801 On q-analogues of quadratic Euler sums paper define generalized qanalogues euler sums... 0 0 1 0 0 0
5802 An iterative aggregation and disaggregation ap... mapping process continuous configuration space... 0 1 0 0 0 0
5803 Reynolds number dependence of the structure fu... compare predictions stochastic closure theory ... 0 1 0 0 0 0
5804 Power and Energy-efficiency Roofline Model for... energy consumption great deal concern recent y... 1 0 0 0 0 0
5805 Equivalence of estimates on domain and its bou... let omega pseudoconvex domain mathbb cn smooth... 0 0 1 0 0 0
5806 Waveform and Spectrum Management for Unmanned ... application domains civilian unmanned aerial s... 1 0 0 0 0 0
5807 Mining Public Opinion about Economic Issues: T... opinion polls bridge public opinion politician... 1 0 0 1 0 0
5808 The igus Humanoid Open Platform: A Child-sized... use standard robotic platforms accelerate rese... 1 0 0 0 0 0
5809 Sports stars: analyzing the performance of ast... datarich era astronomy growing reliance automa... 0 1 0 0 0 0
5810 Chimera states in complex networks: interplay ... chimera states example intriguing partial sync... 0 1 0 0 0 0
5811 Dense 3D Facial Reconstruction from a Single D... increasing demands applications virtual realit... 1 0 0 0 0 0
5812 Concentration phenomena for a fractional Schrö... paper deal multiplicity concentration positive... 0 0 1 0 0 0
5813 Inferactive data analysis describe inferactive data analysis sonamed den... 0 0 1 1 0 0
5814 Promising Accurate Prefix Boosting for sequenc... paper present promising accurate prefix boosti... 1 0 0 0 0 0
5815 Tunable GMM Kernels recently proposed generalized minmax gmm kerne... 1 0 0 1 0 0
5816 Synchrotron radiation induced magnetization in... quantum mechanics postulates measurement influ... 0 1 0 0 0 0
5817 The linear nature of pseudowords given pseudoword suitable pseudovarieties asso... 0 0 1 0 0 0
5818 Health Care Expenditures, Financial Stability,... paper examines association household healthcar... 0 0 0 0 0 1
5819 Improved estimates for polynomial Roth type th... prove certain conditions function pair varphi ... 0 0 1 0 0 0
5820 Molecules cooled below the Doppler limit ability cool atoms doppler limit minimum tempe... 0 1 0 0 0 0
5821 On purely generated $α$-smashing weight struct... paper dedicated new methods constructing weigh... 0 0 1 0 0 0
5822 Evaluating Overfit and Underfit in Models of N... common data mining task networks community det... 1 0 0 1 1 0
5823 Named Entity Evolution Recognition on the Blog... advancements technology culture lead changes l... 1 0 0 0 0 0
5824 Truncated Cramér-von Mises test of normality new test normality based standardised empirica... 0 0 1 1 0 0
5825 Bayesian fairness consider problem decision making fair underlyi... 1 0 0 1 0 0
5826 A boundary integral equation method for mode e... consider bilaplacian eigenvalue problem modes ... 0 0 1 0 0 0
5827 Noether's Problem on Semidirect Product Groups let k field g finite group let g act function ... 0 0 1 0 0 0
5828 A note on the uniqueness of models in social a... social abstract argumentation principled way a... 1 0 0 0 0 0
5829 On Optimal Generalizability in Parametric Lear... consider parametric learning problem objective... 1 0 0 1 0 0
5830 A Neural Language Model for Dynamically Repres... study addresses problem identifying meaning un... 1 0 0 0 0 0
5831 Bounds on the Size and Asymptotic Rate of Subb... study subblockconstrained codes recently gaine... 1 0 0 0 0 0
5832 Extreme values of the Riemann zeta function on... prove arbitrarily large values zetait geq egam... 0 0 1 0 0 0
5833 Robust two-qubit gates in a linear ion crystal... ion trap quantum computer collective motional ... 0 1 0 0 0 0
5834 Symbolic Versus Numerical Computation and Visu... investigate models mitogenactivated protein ki... 1 0 0 0 0 0
5835 Computer Self-efficacy and Its Relationship wi... university east web portal academic web based ... 1 0 0 0 0 0
5836 Normal forms of dispersive scalar Poisson brac... classify dispersive poisson brackets one depen... 0 1 1 0 0 0
5837 A Liouville theorem for indefinite fractional ... work obtain liouville theorem positive bounded... 0 0 1 0 0 0
5838 Semiparametric Contextual Bandits paper studies semiparametric contextual bandit... 0 0 0 1 0 0
5839 Robustness of Quantum-Enhanced Adaptive Phase ... physical adaptive quantumenhanced metrology sc... 1 0 0 1 0 0
5840 Six operations formalism for generalized operads paper shows generalizations operads equipped r... 0 0 1 0 0 0
5841 How Complex is your classification problem? A ... extracting characteristics training datasets c... 0 0 0 1 0 0
5842 Constraining Dark Energy Dynamics in Extended ... dynamical dark energy recently suggested promi... 0 1 0 0 0 0
5843 Evaluation of matrix factorisation approaches ... muscle synergy concept provides widelyaccepted... 0 0 0 0 1 0
5844 Comparison of two classifications of a class o... two classifications second order odes cubic re... 0 0 1 0 0 0
5845 Learning linear structural equation models in ... problem learning structural equation models se... 1 0 0 1 0 0
5846 On Bousfield's problem for solvable groups of ... group g rmathbb zmathbb zpmathbb q denote hat ... 0 0 1 0 0 0
5847 Approximate Analytical Solution of a Cancer Im... immunotherapy plays major role tumour treatmen... 0 0 0 0 1 0
5848 Point-hyperplane frameworks, slider joints, an... onetoone correspondence infinitesimal motions ... 0 0 1 0 0 0
5849 Spectrum of signless 1-Laplacian on simplicial... first develop general framework signless lapla... 0 0 1 0 0 0
5850 Inter-Area Oscillation Damping With Non-Synchr... one major issues interconnected power system l... 1 0 0 0 0 0
5851 Genetic Algorithms for Evolving Computer Chess... paper demonstrates use genetic algorithms evol... 1 0 0 1 0 0
5852 Low-cost Autonomous Navigation System Based on... work presents lowcost robot controlled raspber... 1 0 0 0 0 0
5853 NVIDIA Tensor Core Programmability, Performanc... nvidia volta gpu microarchitecture introduces ... 1 0 0 0 0 0
5854 A spectroscopic survey of Orion KL between 41.... orion kl one frequently observed sources galax... 0 1 0 0 0 0
5855 Restricted Boltzmann Machines for Robust and F... address problem latent truth discovery ltd sho... 0 0 0 1 0 0
5856 Effects of the Mach number on the evolution of... investigate evolution vortexsurface fields vsf... 0 1 0 0 0 0
5857 Above-threshold ionization (ATI) in multicente... possible route extract electronic nuclear dyna... 0 1 0 0 0 0
5858 Detailed, accurate, human shape estimation fro... address problem estimating human pose body sha... 1 0 0 0 0 0
5859 The Picard groups for unital inclusions of uni... shall introduce notion picard group inclusion ... 0 0 1 0 0 0
5860 Generic Singularities of 3D Piecewise Smooth D... aim paper provide discussion current direction... 0 0 1 0 0 0
5861 A Big Data Analysis Framework Using Apache Spa... spreading prevalence big data many advances re... 1 0 0 1 0 0
5862 Multi-Layer Generalized Linear Estimation consider problem reconstructing signal multila... 1 1 0 1 0 0
5863 The Trace and the Mass of subcritical GJMS Ope... let lg subcritical gjms operator evendimension... 0 0 1 0 0 0
5864 Two-photon imaging assisted by a dynamic rando... random scattering usually viewed serious nuisa... 0 1 0 0 0 0
5865 Global Robustness Evaluation of Deep Neural Ne... deployment deep neural networks dnns safety se... 0 0 0 1 0 0
5866 Evolution of an eroding cylinder in single and... coupled evolution eroding cylinder immersed fl... 0 1 0 0 0 0
5867 FLAME: A Fast Large-scale Almost Matching Exac... classical problem causal inference matching tr... 1 0 0 1 0 0
5868 Stochastic Primal-Dual Hybrid Gradient Algorit... propose stochastic extension primaldual hybrid... 1 0 1 0 0 0
5869 Improving Regret Bounds for Combinatorial Semi... study combinatorial multiarmed bandit probabil... 1 0 0 1 0 0
5870 Multiscale Hierarchical Convolutional Networks deep neural network algorithms difficult analy... 1 0 0 1 0 0
5871 Caveats for information bottleneck in determin... information bottleneck ib method extracting in... 0 0 0 1 0 0
5872 Monte Carlo Simulation of Charge Transport in ... simulations charge transport graphene presente... 1 1 0 0 0 0
5873 Embedded-Graph Theory paper propose new type graph denoted embeddedg... 1 0 0 0 0 0
5874 A duality principle for the multi-block entang... analysis entanglement entropy subsystem onedim... 0 1 1 0 0 0
5875 Game Efficiency through Linear Programming Dua... efficiency game typically quantified price ana... 1 0 0 0 0 0
5876 An Equation-By-Equation Method for Solving the... equationbyequation ebe method proposed solve s... 0 0 1 0 0 0
5877 On reductions of the discrete Kadomtsev--Petvi... reduction restricting spectral parameters k k ... 0 1 0 0 0 0
5878 Exploring the Space of Black-box Attacks on De... existing blackbox attacks deep neural networks... 1 0 0 0 0 0
5879 Convergence diagnostics for stochastic gradien... many iterative procedures stochastic optimizat... 1 0 1 1 0 0
5880 Strong Khovanov-Floer Theories and Functoriality provide unified framework proving reidemeister... 0 0 1 0 0 0
5881 Formal Verification of Neural Network Controll... paper consider problem formally verifying safe... 1 0 0 0 0 0
5882 Nonvanishing of central $L$-values of Maass forms method moments mollification method study cent... 0 0 1 0 0 0
5883 A Universally Optimal Multistage Accelerated S... study problem minimizing strongly convex smoot... 1 0 0 1 0 0
5884 Radio Observation of Venus at Meter Wavelength... venusian surface studied measuring radar refle... 0 1 0 0 0 0
5885 Measurements of the depth of maximum of air-sh... airshowers measured pierre auger observatory a... 0 1 0 0 0 0
5886 Softmax Q-Distribution Estimation for Structur... reward augmented maximum likelihood raml simpl... 1 0 0 1 0 0
5887 Vision-based Autonomous Landing in Catastrophe... unmanned aerial vehicles uavs equipped biorada... 1 0 0 0 0 0
5888 Data-Driven Sparse Sensor Placement for Recons... optimal sensor placement central challenge des... 1 0 1 0 0 0
5889 Fast trimers in one-dimensional extended Fermi... consider onedimensional two component extended... 0 1 0 0 0 0
5890 A Geometric Approach for Real-time Monitoring ... monitoring large dynamic networks major chal l... 1 0 0 1 0 0
5891 On general $(α, β)$-metrics of weak Landsberg ... paper study general alphabetametrics alpha rie... 0 0 1 0 0 0
5892 An Intersectional Definition of Fairness introduce measure fairness algorithms data reg... 0 0 0 1 0 0
5893 Technological Parasitism technological parasitism new theory explain ev... 0 0 0 0 0 1
5894 On the sample mean after a group sequential trial popular setting medical statistics group seque... 0 0 1 1 0 0
5895 A New UGV Teleoperation Interface for Improved... reliable wireless connection operator teleoper... 1 0 0 0 0 0
5896 Practical Integer-to-Binary Mapping for Quantu... recent advancements quantum annealing hardware... 1 0 1 0 0 0
5897 Nonequilibrium entropic bounds for Darwinian r... life evolved planet means combination darwinia... 0 1 0 0 0 0
5898 Cluster decomposition of full configuration in... approximate full configuration interaction fci... 0 1 0 0 0 0
5899 Possible Quasi-Periodic modulation in the z = ... search gammaray optical periodic modulations d... 0 1 0 0 0 0
5900 Comment on Jackson's analysis of electric char... jd jacksons classical electrodynamics textbook... 0 1 0 0 0 0
5901 Study of charged hadron multiplicities in char... opera experiment designed search numu rightarr... 0 1 0 0 0 0
5902 On the coefficients of the Alekseev Torossian ... paper explains method calculate coefficients a... 0 0 1 0 0 0
5903 Exact spectral decomposition of a time-depende... determine exact timedependent nonidempotent on... 0 1 0 0 0 0
5904 A short variational proof of equivalence betwe... two main families reinforcement learning algor... 1 0 0 0 0 0
5905 Non-parametric Message Important Measure: Stor... storage transmission big data discussed paper ... 0 0 1 1 0 0
5906 Graphene and its elemental analogue: A molecul... graphene graphene like two dimensional materia... 0 1 0 0 0 0
5907 Learning Synergies between Pushing and Graspin... skilled robotic manipulation benefits complex ... 1 0 0 1 0 0
5908 A Versatile Approach to Evaluating and Testing... evaluation validation complicated control syst... 1 0 0 1 0 0
5909 Decoupled Access-Execute on ARM big.LITTLE energyefficiency plays significant role given ... 1 0 0 0 0 0
5910 Closure structures parameterized by systems of... study properties classes closure operators clo... 1 0 0 0 0 0
5911 High Isolation Improvement in a Compact UWB MI... compact multipleinputmultipleoutput mimo anten... 0 1 0 0 0 0
5912 Identifying and Alleviating Concept Drift in S... tensor decompositions used various data mining... 0 0 0 1 0 0
5913 Handling Adversarial Concept Drift in Streamin... classifiers operating dynamic real world envir... 0 0 0 1 0 0
5914 Real intersection homology present definition intersection homology real ... 0 0 1 0 0 0
5915 High Contrast Observations of Bright Stars wit... starshades leading technology enable direct de... 0 1 0 0 0 0
5916 Unconstrained inverse quadratic programming pr... paper covers formulation inverse quadratic pro... 1 0 1 0 0 0
5917 Families of Thue equations associated with a r... twisting binary form fxyinmathbbzxy degree dge... 0 0 1 0 0 0
5918 On Defects Between Gapped Boundaries in Two-Di... defects gapped boundaries provide possible phy... 0 1 1 0 0 0
5919 Arbitrary order 2D virtual elements for polygo... present paper second part twofold work whose f... 0 0 1 0 0 0
5920 Reconstruction of Hidden Representation for Ro... paper aims develop new robust approach feature... 1 0 0 1 0 0
5921 HONE: Higher-Order Network Embeddings paper describes general framework learning hig... 1 0 0 1 0 0
5922 Cosmological Evolution and Exact Solutions in ... fourthorder theory gravity considered terms dy... 0 1 1 0 0 0
5923 Linear Progress with Exponential Decay in Weak... random walk wn separable geodesic hyperbolic m... 0 0 1 0 0 0
5924 Talbot-enhanced, maximum-visibility imaging of... nearly two centuries ago talbot first observed... 0 1 0 0 0 0
5925 A numerical study of the F-model with domain-w... perform numerical study fmodel domainwall boun... 0 1 0 0 0 0
5926 Visualizing the Loss Landscape of Neural Nets neural network training relies ability find go... 1 0 0 1 0 0
5927 Hydrogen bonding characterization in water and... prototypical hydrogen bond water dimer hydroge... 0 1 0 0 0 0
5928 A Calculus of Truly Concurrent Mobile Processes make mixture milners picalculus previous work ... 1 0 0 0 0 0
5929 Gigahertz optomechanical modulation by split-r... using polarizationresolved transient reflectio... 0 1 0 0 0 0
5930 Guaranteed Fault Detection and Isolation for S... paper considers problem fault detection isolat... 1 0 1 0 0 0
5931 NOOP: A Domain-Theoretic Model of Nominally-Ty... majority industrialstrength objectoriented oo ... 1 0 0 0 0 0
5932 Modelling wave-induced sea ice breakup in the ... model ice floe breakup ocean wave forcing marg... 0 1 0 0 0 0
5933 An Introduction to Animal Movement Modeling wi... hidden markov models hmms popular time series ... 0 0 0 1 1 0
5934 Sampling a Network to Find Nodes of Interest focus current research identify people interes... 1 1 0 0 0 0
5935 Representation Mixing for TTS Synthesis recent character phonemebased parametric tts s... 1 0 0 0 0 0
5936 Safe Open-Loop Strategies for Handling Intermi... multirobot systems central decision maker spec... 1 0 0 0 0 0
5937 Scientific co-authorship networks paper addresses stability coauthorship network... 1 0 0 1 0 0
5938 Projection Based Weight Normalization for Deep... optimizing deep neural networks dnns often suf... 1 0 0 0 0 0
5939 Mapping stable direct and retrograde orbits ar... well accepted knowing composition orbital evol... 0 1 0 0 0 0
5940 Zinc oxide induces the stringent response and ... microorganisms bacteria one first targets nano... 0 0 0 0 1 0
5941 Learning what matters - Sampling interesting p... field exploratory data mining local structure ... 1 0 0 1 0 0
5942 Proofs as Relational Invariants of Synthesized... automatic verification programs maintain unbou... 1 0 0 0 0 0
5943 Orthogonal involutions and totally singular qu... associate every central simple algebra involut... 0 0 1 0 0 0
5944 Coastal flood implications of 1.5 °C, 2.0 °C, ... sealevel rise slr magnifying frequency severit... 0 1 0 0 0 0
5945 Unsupervised Learning of Disentangled and Inte... present factorized hierarchical variational au... 1 0 0 1 0 0
5946 De-blending Deep Herschel Surveys: A Multi-wav... cosmological surveys far infrared known suffer... 0 1 0 0 0 0
5947 Room-Temperature Ionic Liquids Meet Bio-Membra... roomtemperature ionic liquids rtil new class o... 0 1 0 0 0 0
5948 The use of Charts, Pivot Tables, and Array For... use spreadsheets industry widespread companies... 1 0 0 0 0 0
5949 Disordered statistical physics in low dimensio... thesis presents original results two domains d... 0 1 0 0 0 0
5950 HyperMinHash: MinHash in LogLog space extended abstract describe analyze lossy compr... 1 0 0 0 0 0
5951 Asynchronous stochastic price pump propose model equity trading population agents... 0 0 0 0 0 1
5952 Character Distributions of Classical Chinese L... collect representative corpora major periods c... 1 0 0 0 0 0
5953 Improving Bi-directional Generation between Di... investigate deep generative models exchange mu... 0 0 0 1 0 0
5954 Matching neural paths: transfer from recogniti... many machine learning tasks require finding pe... 1 0 0 0 0 0
5955 On the affine random walk on the torus let mu borelian probability measure mathbfgmat... 0 0 1 0 0 0
5956 StackInsights: Cognitive Learning for Hybrid C... hybrid cloud integrated cloud computing enviro... 1 0 0 0 0 0
5957 Risk-averse model predictive control riskaverse model predictive control mpc offers... 0 0 1 0 0 0
5958 Neutral evolution and turnover over centuries ... test neutral models evolution english word fre... 1 1 0 0 0 0
5959 On Statistically-Secure Quantum Homomorphic En... homomorphic encryption encryption scheme allow... 1 0 0 0 0 0
5960 Monte Carlo Tree Search for Asymmetric Trees present extension monte carlo tree search mcts... 0 0 0 1 0 0
5961 On the difference-to-sum power ratio of speech... differencetosum power ratio proposed used supp... 1 0 0 0 0 0
5962 Quantum torus algebras and B(C) type Toda systems paper construct new even constrained bc type t... 0 1 1 0 0 0
5963 A Decidable Intuitionistic Temporal Logic introduce logic sf itle intuitionistic tempora... 0 0 1 0 0 0
5964 A Re-weighted Joint Spatial-Radon Domain CT Im... high density implants metals often lead seriou... 0 1 1 0 0 0
5965 A simple proof that the $(n^2-1)$-puzzle is hard puzzle classic reconfiguration puzzle fifteen ... 1 0 0 0 0 0
5966 Is Proxima Centauri b habitable? -- A study of... address important question whether newly disco... 0 1 0 0 0 0
5967 A Geometric Perspective on the Power of Princi... joint analysis multiple phenotypes increase st... 0 0 0 1 0 0
5968 A Design Based on Stair-case Band Alignment of... among ntype metal oxide materials used planar ... 0 1 0 0 0 0
5969 Statistics on functional data and covariance o... introduce framework statistical analysis funct... 0 0 0 1 0 0
5970 Development of ICA and IVA Algorithms with App... independent component analysis ica widely used... 0 0 0 1 0 0
5971 Observability of characteristic binary-induced... context substantial fraction protoplanetary di... 0 1 0 0 0 0
5972 Sound Event Detection in Synthetic Audio: Anal... part public evaluation challenge detection cla... 1 0 0 1 0 0
5973 Pressure-induced Superconductivity in the Thre... topological semimetal novel state quantum matt... 0 1 0 0 0 0
5974 Chaotic zones around rotating small bodies small bodies solar system like asteroids trans... 0 1 0 0 0 0
5975 Collective excitations and supersolid behavior... discuss nature symmetry breaking associated co... 0 1 0 0 0 0
5976 Generalized Value Iteration Networks: Life Bey... paper introduce generalized value iteration ne... 1 0 0 0 0 0
5977 Structure and Evolution of Internally Heated H... hot jupiters receive strong stellar irradiatio... 0 1 0 0 0 0
5978 Inference-Based Distributed Channel Allocation... interferenceaware resource allocation time slo... 1 0 0 0 0 0
5979 Switch Functions define switch function function interval finit... 0 0 1 0 0 0
5980 Schrödinger operators periodic in octants consider schrdinger operators periodic potenti... 0 0 1 0 0 0
5981 First international comparison of fountain pri... report first comparison distant caesium founta... 0 1 0 0 0 0
5982 Hardy inequalities, Rellich inequalities and l... first hardy rellich inequalities defined subma... 0 0 1 0 0 0
5983 Optimized Quantification of Spin Relaxation Ti... purpose analysis optimized spin ensemble traje... 0 1 0 0 0 0
5984 On the generation of drift flows in wall-bound... despite recent progress laminarturbulent coexi... 0 1 0 0 0 0
5985 Goldbach's Function Approximation Using Deep L... goldbach conjecture one famous open mathematic... 0 0 0 1 0 0
5986 Estimation of a Continuous Distribution on a R... unknown continuous distribution real line cons... 0 0 1 1 0 0
5987 Reviving and Improving Recurrent Back-Propagation paper revisit recurrent backpropagation rbp al... 0 0 0 1 0 0
5988 A family of Dirichlet-Morrey spaces weighted dirichlet space mathcaldp p associate... 0 0 1 0 0 0
5989 Merging real and virtual worlds: An analysis o... achieving symbiotic blending reality virtualit... 1 0 0 0 0 0
5990 Fast Characterization of Segmental Duplication... segmental duplications sds lowcopy repeats lcr... 0 0 0 0 1 0
5991 Cross validation for locally stationary processes propose adaptive bandwidth selector via cross ... 0 0 1 1 0 0
5992 Weyl nodes in Andreev spectra of multiterminal... consider mesoscopic fourterminal josephson jun... 0 1 0 0 0 0
5993 Injectivity of the connecting homomorphisms let inductive limit sequence xrightarrowphi ax... 0 0 1 0 0 0
5994 Selective Inference for Change Point Detection... study problem detecting change points cps char... 0 0 0 1 0 0
5995 RPC: A Large-Scale Retail Product Checkout Dat... recent years emerging interest occurred integr... 1 0 0 0 0 0
5996 Anyonic self-induced disorder in a stabilizer ... enquire quasimanybody localization topological... 0 1 0 0 0 0
5997 KiDS-450: Tomographic Cross-Correlation of Gal... present tomographic crosscorrelation galaxy le... 0 1 0 0 0 0
5998 Earthquake Early Warning and Beyond: Systems C... earthquake early warning eew systems effective... 1 0 0 0 0 0
5999 Gate-error analysis in simulations of quantum ... model gatebased quantum computation qubits con... 0 1 0 0 0 0
6000 Tidal disruptions by rotating black holes: rel... propose approximate approach studying relativi... 0 1 0 0 0 0
6001 A promise checked is a promise kept: Inspectio... occasionally developers need ensure compiler t... 1 0 0 0 0 0
6002 Linear-Time Sequence Classification using Rest... classification sequence data topic interest dy... 1 0 0 1 0 0
6003 A central $U(1)$-extension of a double Lie gro... paper introduce notion central uextension doub... 0 0 1 0 0 0
6004 Common fixed point theorems under an implicit ... aim paper establish metrical coincidence commo... 0 0 1 0 0 0
6005 The NIEP nonnegative inverse eigenvalue problem niep as... 0 0 1 0 0 0
6006 Operationalizing Conflict and Cooperation betw... paper replicates extends refutes conclusions m... 1 0 0 0 0 0
6007 Synthesizing Bijective Lenses bidirectional transformations different data r... 1 0 0 0 0 0
6008 Tuning the piezoelectric and mechanical proper... recent advances microelectromechanical systems... 0 1 0 0 0 0
6009 Embedding for bulk systems using localized ato... present embedding approach semiconductors insu... 0 1 0 0 0 0
6010 Simple Surveys: Response Retrieval Inspired by... last decade use simple rating comparison surve... 1 0 0 1 0 0
6011 A Reduction for the Distinct Distances Problem... introduce reduction distinct distances problem... 0 0 1 0 0 0
6012 Local electronic properties of the graphene-pr... report preparation interface graphene strong r... 0 1 0 0 0 0
6013 Particle trapping and conveying using an optic... trapping manipulation particles using laser be... 0 1 0 0 0 0
6014 Scalable Inference for Nested Chinese Restaura... nested chinese restaurant process ncrp topic m... 1 0 0 1 0 0
6015 Equations of $\,\overline{M}_{0,n}$ following work keel tevelev give explicit poly... 0 0 1 0 0 0
6016 Lattice Boltzmann simulation of viscous finger... improved wetting boundary implementation strat... 0 1 0 0 0 0
6017 Implementation of Control Strategies for Steri... paper propose sexstructured entomological mode... 0 0 0 0 1 0
6018 Convergence and submeasures in Boolean algebras boolean algebra carries strictly positive exha... 0 0 1 0 0 0
6019 Characterizing a CCD detector for astronomical... work verifies instrumental characteristics ccd... 0 1 0 0 0 0
6020 Genetic algorithm-based control of birefringen... polarizationbased filtering fiber lasers wellk... 0 1 0 0 0 0
6021 Public discourse and news consumption on onlin... rising attention spreading fake news unsubstan... 1 1 0 0 0 0
6022 Testing small scale gravitational wave detecto... recent discovery gravitational waves ligovirgo... 0 1 0 0 0 0
6023 AIDE: An algorithm for measuring the accuracy ... approximate probabilistic inference algorithms... 1 0 0 1 0 0
6024 Mining within-trial oscillatory brain dynamics... datadriven spatial filtering algorithms optimi... 0 0 0 1 1 0
6025 Neural Architecture Search with Bayesian Optim... bayesian optimisation bo refers class methods ... 0 0 0 1 0 0
6026 An improved parametric model for hysteresis lo... number improvements added existing analytical ... 1 1 1 0 0 0
6027 Kidnapping Model: An Extension of Selten's Game seltens game kidnapping model probability capt... 1 0 0 0 0 0
6028 To prune, or not to prune: exploring the effic... model pruning seeks induce sparsity deep neura... 1 0 0 1 0 0
6029 Connecting Software Metrics across Versions to... accurate software defect prediction could help... 1 0 0 0 0 0
6030 Semiparametric panel data models using neural ... paper presents estimator semiparametric models... 0 0 0 1 0 0
6031 Split and Rephrase propose new sentence simplification task split... 1 0 0 0 0 0
6032 Constructive Euler hydrodynamics for one-dimen... review constructive approach first introduced ... 0 0 1 0 0 0
6033 Cyber Insurance for Heterogeneous Wireless Net... heterogeneous wireless networks hwns composed ... 1 0 0 0 0 0
6034 Combining Contrast Invariant L1 Data Fidelitie... paper focuses multiscale approaches variationa... 1 0 1 0 0 0
6035 PaccMann: Prediction of anticancer compound se... present novel approach prediction anticancer c... 0 0 0 0 1 0
6036 Evaporation and scattering of momentum- and ve... dark matter momentum velocitydependent interac... 0 1 0 0 0 0
6037 ORSIm Detector: A Novel Object Detection Frame... rapid development spaceborne imaging technique... 1 0 0 0 0 0
6038 Multi-Path Region-Based Convolutional Neural N... largescale variations still pose challenge unc... 1 0 0 0 0 0
6039 Naturally occurring $^{32}$Si and low-backgrou... naturally occurring radioisotope si represents... 0 1 0 0 0 0
6040 Synergies between Exoplanet Surveys and Variab... discovery first transiting extrasolar planetar... 0 1 0 0 0 0
6041 Improved Set-based Symbolic Algorithms for Par... graph games omegaregular winning conditions pr... 1 0 0 0 0 0
6042 A Syllable-based Technique for Word Embeddings... word embedding become fundamental component ma... 1 0 0 0 0 0
6043 Existence of Evolutionarily Stable Strategies ... concept evolutionarily stable strategy ess int... 1 0 0 0 0 0
6044 Compound Poisson approximation to estimate the... construct estimator lvy density pure jump lvy ... 0 0 1 1 0 0
6045 On the non-vanishing of certain Dirichlet series given kinmathbb n study vanishing dirichlet se... 0 0 1 0 0 0
6046 On discrete homology of a free pro-$p$-group prime p let hat fp finitely generated free pro... 0 0 1 0 0 0
6047 Conceptual Modeling of Inventory Management Pr... control model typically classified three forms... 1 0 0 0 0 0
6048 Points2Pix: 3D Point-Cloud to Image Translatio... present first approach pointcloud image transl... 1 0 0 0 0 0
6049 11 T Dipole for the Dispersion Suppressor Coll... chapter highluminosity large hadron collider h... 0 1 0 0 0 0
6050 Spectral Analysis of Jet Substructure with Neu... jets boosted heavy particles typical angular s... 0 0 0 1 0 0
6051 UTD-CRSS Submission for MGB-3 Arabic Dialect I... study presents systems submitted university te... 1 0 0 0 0 0
6052 Parametrization and Generation of Geological M... one main challenges parametrization geological... 0 1 0 1 0 0
6053 Finite element procedures for computing normal... paper consider finite element approaches compu... 0 0 1 0 0 0
6054 Basis Adaptive Sample Efficient Polynomial Cha... large class orthogonal basis functions recent ... 0 0 1 1 0 0
6055 Maximum a posteriori estimation through simula... paper considers new method binary asteroid orb... 0 1 0 1 0 0
6056 Extrapolating Expected Accuracies for Large Mu... difficulty multiclass classification generally... 1 0 0 1 0 0
6057 Deep Learning Methods for Efficient Large Scal... present solution google cloud youtubem video u... 1 0 0 1 0 0
6058 RSI-CB: A Large Scale Remote Sensing Image Cla... remote sensing image classification fundamenta... 1 0 0 0 0 0
6059 Quantum groups, Yang-Baxter maps and quasi-det... quasitriangular hopf algebra exists universal ... 0 1 1 0 0 0
6060 Low-level Active Visual Navigation: Increasing... paper proposes lowlevel visual navigation algo... 1 0 0 0 0 0
6061 A Brownian Motion Model and Extreme Belief Mac... title suggests describe justify presentation r... 1 0 0 0 0 0
6062 On the nature of the magnetic phase transition... investigate nature magnetic phase transition i... 0 1 0 0 0 0
6063 Detecting Cyber-Physical Attacks in Additive M... additive manufacturing printing novel manufact... 1 0 0 0 0 0
6064 Short-wavelength out-of-band EUV emission from... present results spectroscopic measurements ext... 0 1 0 0 0 0
6065 Compact Cardinals and Eight Values in Cichoń's... assuming three strongly compact cardinals cons... 0 0 1 0 0 0
6066 Analysis of Peer Review Effectiveness for Acad... simulation model based parallel systems establ... 1 0 0 0 0 0
6067 Observational signatures of linear warps in ci... recent years increasing number observational s... 0 1 0 0 0 0
6068 Bootstrapping single-channel source separation... separating audio scene isolated sources fundam... 1 0 0 0 0 0
6069 Multi-parameter One-Sided Monitoring Test multiparameter onesided hypothesis test proble... 0 0 1 1 0 0
6070 Statistical mechanics of low-rank tensor decom... often large high dimensional datasets collecte... 0 0 0 0 1 0
6071 A path integral based model for stocks and ord... introduce model shortterm dynamics financial a... 0 0 0 0 0 1
6072 A New Algorithm to Automate Inductive Learning... inductive learning broad concept algorithm abl... 1 0 0 0 0 0
6073 Origin of the pressure-dependent T$_c$ valley ... motivated recent experiments investigate press... 0 1 0 0 0 0
6074 V-cycle multigrid algorithms for discontinuous... paper analyse convergence properties vcycle mu... 1 0 0 0 0 0
6075 On a result of Fel'dman on linear forms in the... shall consider result feldman sharp bakertype ... 0 0 1 0 0 0
6076 Learning Low-shot facial representations via 2... work mainly study influence warping module one... 1 0 0 0 0 0
6077 Catalyzed bimolecular reactions in responsive ... describe general theory surfacecatalyzed bimol... 0 1 0 0 0 0
6078 Average Case Constant Factor Time and Distance... fast algorithms optimal multirobot path planni... 1 0 0 0 0 0
6079 Hierarchical Learning for Modular Robots argue hierarchical methods become key modular ... 1 0 0 0 0 0
6080 Online Learning with Diverse User Preferences paper investigate impact diverse user preferen... 1 0 0 1 0 0
6081 Gaussian Process based Passivation of a Class ... paper addresses problem passivation class nonl... 1 0 0 0 0 0
6082 A Bayesian Method for Joint Clustering of Vect... present new modelbased integrative method clus... 1 0 0 1 0 0
6083 Pointwise-generalized-inverses of linear maps ... study pointwisegeneralizedinverses linear maps... 0 0 1 0 0 0
6084 The cohomology of rank two stable bundle modul... compute cup product pairings integral cohomolo... 0 0 1 0 0 0
6085 Automated Formal Synthesis of Digital Controll... present sound automated approach synthesize sa... 1 0 0 0 0 0
6086 A constrained control-planning strategy for re... paper presents interconnected controlplanning ... 1 0 0 0 0 0
6087 Lagrangian for RLC circuits using analogy with... study formulate lagrangian lc rc rl rlc circui... 0 1 0 0 0 0
6088 A note on recent criticisms to Birnbaum's theorem note provide critical commentary two articles ... 0 0 1 1 0 0
6089 High efficiently numerical simulation of the T... paper focus numerical simulation phase separat... 0 1 0 0 0 0
6090 Entanglement verification protocols for distri... distributed systems based quantum recursive ne... 1 0 0 0 0 0
6091 On the radius of spatial analyticity for the q... lower bound rate decrease time uniform radius ... 0 0 1 0 0 0
6092 Calibrating Noise to Variance in Adaptive Data... datasets often used multiple times successive ... 1 0 0 0 0 0
6093 Testing Equality of Autocovariance Operators f... consider strictly stationary stochastic proces... 0 0 1 1 0 0
6094 The Lyman-alpha forest power spectrum from the... present lymanalpha flux power spectrum measure... 0 1 0 0 0 0
6095 AdS4 backgrounds with N>16 supersymmetries in ... explore warped adstimesw md backgrounds genera... 0 0 1 0 0 0
6096 Room Temperature Polariton Lasing in All-Inorg... polariton lasing coherent emission arising mac... 0 1 0 0 0 0
6097 Conditional Independence, Conditional Mean Ind... investigation reversibility directional hierar... 0 0 1 1 0 0
6098 Probabilistic Sensor Fusion for Ambient Assist... widelyaccepted need revise current forms healt... 1 0 0 1 0 0
6099 Bounded time computation on metric spaces and ... extend framework kawamura cook investigating c... 1 0 1 0 0 0
6100 Gradient descent GAN optimization is locally s... despite growing prominence generative adversar... 1 0 1 1 0 0
6101 Transition rates and radiative lifetimes of Ca I tabulate spontaneous emission rates possible e... 0 1 0 0 0 0
6102 Defect entropies and enthalpies in Barium Fluo... various experimental techniques revealed predo... 0 1 0 0 0 0
6103 Surprise-Based Intrinsic Motivation for Deep R... exploration complex domains key challenge rein... 1 0 0 0 0 0
6104 Local and collective magnetism of EuFe$_2$As$_2$ present experimental study local collective ma... 0 1 0 0 0 0
6105 Newton slopes for twisted Artin--Schreier--Wit... fix monic polynomial fx mathbb fqx finite fiel... 0 0 1 0 0 0
6106 Active model learning and diverse action sampl... objective work augment basic abilities robot l... 1 0 0 1 0 0
6107 End-to-end distance and contour length distrib... present computational method evaluate endtoend... 0 0 0 0 1 0
6108 Online Estimation of Multiple Dynamic Graphs i... many timeseries data including text movies bio... 1 0 0 1 1 0
6109 Fluid Communities: A Competitive, Scalable and... introduce community detection algorithm fluid ... 1 1 0 0 0 0
6110 Identification of Dynamic Systems with Interva... paper aims identify three electrical systems s... 1 0 0 0 0 0
6111 Four Fundamental Questions in Probability Theo... study purpose addressing four questions lie ba... 0 0 0 1 0 0
6112 Connections on parahoric torsors over curves define parahoric cgtorsors certain bruhattits ... 0 0 1 0 0 0
6113 On Reduced Input-Output Dynamic Mode Decomposi... identification reducedorder models highdimensi... 1 0 0 0 0 0
6114 Safety-Aware Apprenticeship Learning apprenticeship learning al kind learning demon... 1 0 0 0 0 0
6115 Solitary wave solutions and their interactions... effects surface tension fullynonlinear long su... 0 1 1 0 0 0
6116 Relative weak mixing of W*-dynamical systems v... characterization relative weak mixing wdynamic... 0 0 1 0 0 0
6117 An assessment of Fe XX - Fe XXII emission line... extreme ultraviolet variability experiment eve... 0 1 0 0 0 0
6118 Multi-Scale Spatially Weighted Local Histogram... weighting pixel contribution considering locat... 1 0 0 0 0 0
6119 A note on minimal dispersion of point sets in ... study dispersion point set notion closely rela... 1 0 0 0 0 0
6120 Limit theorems in bi-free probability theory paper additive bifree convolution defined gene... 0 0 1 0 0 0
6121 Axiomatisability and hardness for universal Ho... characterise finite axiomatisability intractab... 1 0 1 0 0 0
6122 Snyder Like Modified Gravity in Newton's Space... work focused searching geodesic interpretation... 0 1 0 0 0 0
6123 Dissipatively Coupled Waveguide Networks for C... photonic circuit generally described structure... 0 1 0 0 0 0
6124 Inadequate Risk Analysis Might Jeopardize The ... early researchers began focus security importa... 1 0 0 0 0 0
6125 Simultaneous determination of the drift and di... work consider onedimensional diffusion process... 0 0 1 0 0 0
6126 A compactness theorem for four-dimensional shr... haslhofer mller proved compactness theorem fou... 0 0 1 0 0 0
6127 Demand-Independent Optimal Tolls wardrop equilibria nonatomic congestion games ... 1 0 0 0 0 0
6128 An analytic formulation for positive-unlabeled... consider problem learning binary classifier po... 1 0 0 1 0 0
6129 Benchmarking Data Analysis and Machine Learnin... knights landing knl code name secondgeneration... 1 1 0 0 0 0
6130 A Proof of the Conjecture of Lehmer and of the... conjecture lehmer proved true proof mainly rel... 0 0 1 0 0 0
6131 Pseudo asymptotically periodic solutions for f... paper study existence uniqueness pseudo sasymp... 0 0 1 0 0 0
6132 Updating the silent speech challenge benchmark... silent speech challenge benchmark updated new ... 1 0 0 0 0 0
6133 Magnetic field control of cycloidal domains an... magnetic field induced rearrangement cycloidal... 0 1 0 0 0 0
6134 DepQBF 6.0: A Search-Based QBF Solver Beyond T... present latest major release version quantifie... 1 0 0 0 0 0
6135 On Optimization of Radiative Dipole Body Array... contribution present numerical experimental re... 0 1 0 0 0 0
6136 Speaking Style Authentication Using Suprasegme... importance speaking style authentication human... 1 0 0 0 0 0
6137 A fixed point formula and Harish-Chandra's cha... main result paper fixed point formula equivari... 0 0 1 0 0 0
6138 The phonon softening due to melting of the fer... study fundamental question lattice dynamics me... 0 1 0 0 0 0
6139 Decomposing manifolds into Cartesian products decomposability cartesian product two nondecom... 0 0 1 0 0 0
6140 Performance of the MAGIC telescopes under moon... magic system two imaging atmospheric cherenkov... 0 1 0 0 0 0
6141 Mastering Heterogeneous Behavioural Models heterogeneity one important feature complex sy... 1 0 0 0 0 0
6142 Approximation and Convergence Properties of Ge... generative adversarial networks gan approximat... 1 0 0 1 0 0
6143 Driver Distraction Identification with an Ense... world health organization reported million dea... 1 0 0 1 0 0
6144 Driver Action Prediction Using Deep (Bidirecti... advanced driver assistance systems adas signif... 1 0 0 1 0 0
6145 A simple neural network module for relational ... relational reasoning central component general... 1 0 0 0 0 0
6146 Computing low-rank approximations of large-sca... propose new algorithm computation singular val... 1 0 0 0 0 0
6147 Path Cover and Path Pack Inequalities for the ... capacitated fixedcharge network flows used mod... 1 0 1 0 0 0
6148 Bridging the Gap Between Value and Policy Base... establish new connection value policy based re... 1 0 0 1 0 0
6149 Chalcogenide Glass-on-Graphene Photonics twodimensional materials tremendous interest i... 0 1 0 0 0 0
6150 Speaker verification using end-to-end adversar... paper investigate use adversarial domain adapt... 1 0 0 0 0 0
6151 Real elliptic curves and cevian geometry study elliptic curve ea axyaxxyxx call geometr... 0 0 1 0 0 0
6152 Omni $n$-Lie algebras and linearization of hig... paper introduce notion omni nlie algebra show ... 0 0 1 0 0 0
6153 Musical Instrument Recognition Using Their Dis... study artificial neural network trained classi... 1 0 0 1 0 0
6154 Revealing structure components of the retina b... deep convolutional neural networks cnns demons... 0 0 0 1 0 0
6155 Generalized Yangians and their Poisson counter... generalized yangian mean yangianlike algebra o... 0 0 1 0 0 0
6156 Asymptotics of Hankel determinants with a one-... obtain asymptotics large hankel determinants w... 0 0 1 0 0 0
6157 Beyond linear galaxy alignments galaxy intrinsic alignments ia critical uncert... 0 1 0 0 0 0
6158 Modelling thermo-electro-mechanical effects in... paper introduce new mathematical model active ... 0 0 0 0 1 0
6159 Debt-Prone Bugs: Technical Debt in Software Ma... fixing bugs important phase software developme... 1 0 0 0 0 0
6160 Khovanov-Rozansky homology and higher Catalan ... give simple recursion computes triply graded k... 0 0 1 0 0 0
6161 New face of multifractality: Multi-branched le... develop extended multifractal analysis based l... 0 0 0 0 0 1
6162 Sliced-Wasserstein Flows: Nonparametric Genera... building recent theory established connection ... 0 0 0 1 0 0
6163 Dual Iterative Hard Thresholding: From Non-con... iterative hard thresholding iht class projecte... 1 0 0 1 0 0
6164 Binary Ensemble Neural Network: More Bits per ... binary neural networks bnn studied extensively... 0 0 0 1 0 0
6165 Generalized connected sum formula for the Arno... define generalized connected sum generic close... 0 0 1 0 0 0
6166 Smart patterned surfaces with programmable the... emissivity common materials remains constant t... 0 1 0 0 0 0
6167 STAR: Spatio-Temporal Altimeter Waveform Retra... satellite radar altimetry one powerful techniq... 0 1 0 0 0 0
6168 Magnetization jump in one dimensional $J-Q_{2}... investigate adiabatic magnetization process on... 0 1 0 0 0 0
6169 CoMID: Context-based Multi-Invariant Detection... cyberphysical software continually interacts p... 1 0 0 0 0 0
6170 Asymptotics of multivariate contingency tables... consider asymptotic distribution cell x x cont... 0 0 1 1 0 0
6171 On the Faithfulness of 1-dimensional Topologic... paper explores dimensional topological quantum... 0 0 1 0 0 0
6172 Distribution of the periodic points of the Far... expand cross section geodesic flow tangent bun... 0 0 1 0 0 0
6173 Marangoni effects on a thin liquid film coatin... study time evolution thin liquid film coating ... 0 1 0 0 0 0
6174 Fooling the classifier: Ligand antagonism and ... machine learning algorithms sensitive socalled... 0 0 0 1 1 0
6175 A Simplified Approach to Analyze Complementary... simplified approach proposed investigate conti... 1 0 0 0 0 0
6176 Comparing Graph Clusterings: Set partition mea... paper propose family graph partition similarit... 0 0 0 1 0 0
6177 Competitive Resource Allocation in HetNets: th... heterogeneous wireless networks smallcell depl... 1 0 0 0 0 0
6178 Gradient Reversal Against Discrimination methods currently exist making arbitrary neura... 0 0 0 1 0 0
6179 Non-commutative crepant resolutions for some t... give criterion existence noncommutative crepan... 0 0 1 0 0 0
6180 High temperature pairing in a strongly interac... observe manybody pairing twodimensional gas ul... 0 1 0 0 0 0
6181 Untangling the hairball: fitness based asympto... complex mathematical models interaction networ... 0 1 0 0 0 0
6182 Exotica and the status of the strong cosmic ce... immense class physical counterexamples four di... 0 0 1 0 0 0
6183 Centralities in Simplicial Complexes complex networks used represent complex system... 1 1 0 0 0 0
6184 The Samuel realcompactification uniform space x mu introduce realcompactificat... 0 0 1 0 0 0
6185 Segmented Terahertz Electron Accelerator and M... acceleration manipulation ultrashort electron ... 0 1 0 0 0 0
6186 The $2$-nd Hessian type equation on almost Her... paper derive second order estimate nd hessian ... 0 0 1 0 0 0
6187 Learning graphs from data: A signal representa... construction meaningful graph topology plays c... 1 0 0 1 0 0
6188 Universal edge transport in interacting Hall s... study edge transport properties interacting ha... 0 1 0 0 0 0
6189 Brownian dynamics of elongated particles in a ... demonstrate experimentally longrange hydrodyna... 0 1 0 0 0 0
6190 Photonic Band Structure of Two-dimensional Ato... twodimensional atomic arrays exhibit number in... 0 1 0 0 0 0
6191 Multifractal analysis of the time series of da... paper applied multifractal detrended fluctuati... 0 0 0 1 0 0
6192 Deep Episodic Value Iteration for Model-based ... present new deep meta reinforcement learner ca... 1 0 0 1 0 0
6193 Disproval of the validated planets K2-78b, K2-... transiting superearths orbiting bright stars s... 0 1 0 0 0 0
6194 Long-lived mesoscopic entanglement between two... consider two chains made n independent oscilla... 0 1 0 0 0 0
6195 Measured Multiseries and Integration paper bruno salvy author introduced measured m... 1 0 0 0 0 0
6196 Spectral Approach to Verifying Non-linear Arit... paper presents fast effective computer algebra... 1 0 0 0 0 0
6197 Signal-based Bayesian Seismic Monitoring detecting weak seismic events noisy sensors di... 1 1 0 0 0 0
6198 Multi-Label Learning with Global and Local Lab... wellknown exploiting label correlations import... 1 0 0 0 0 0
6199 Complexity of Verifying Nonblockingness in Mod... complexity analysis becomes common task superv... 1 0 0 0 0 0
6200 Predicting signatures of anisotropic resonance... resonance energy transfer ret inherently aniso... 0 1 0 0 0 0
6201 Matrix Completion and Performance Guarantees f... single individual haplotyping nphard problem e... 0 0 0 1 1 0
6202 Simulation and analysis of $γ$-Ni cellular gro... cellular dendritic microstructures result func... 0 1 0 0 0 0
6203 Localization of Extended Quantum Objects quantum system particles exist localized phase... 0 1 0 0 0 0
6204 The next-to-minimal weights of binary projecti... projective reedmuller codes introduced lachaud... 1 0 1 0 0 0
6205 Big Data Classification Using Augmented Decisi... present algorithm classification tasks big dat... 1 0 0 1 0 0
6206 Special tilting modules for algebras with posi... study set uniquely determined tilting cotiltin... 0 0 1 0 0 0
6207 The dynamical structure of political corruptio... corruptive behaviour politics limits economic ... 1 0 0 1 0 0
6208 Maxent-Stress Optimization of 3D Biomolecular ... knowing biomolecules structure inherently link... 1 1 0 0 0 0
6209 Enhanced Quantum Synchronization via Quantum M... study quantum synchronization pair twolevel sy... 1 0 0 1 0 0
6210 Engineering phonon leakage in nanomechanical r... propose experimentally demonstrate technique c... 0 1 0 0 0 0
6211 Entropy generation and momentum transfer in th... since discovery meissner effect superconductor... 0 1 0 0 0 0
6212 A Local Faber-Krahn inequality and Application... prove local faberkrahn inequality solutions u ... 0 0 1 0 0 0
6213 Étale groupoids and their $C^*$-algebras notes written supplementary material fivehour ... 0 0 1 0 0 0
6214 Semi-classical limit of the Levy-Lieb function... recent work bindini de pascale introduced regu... 0 1 1 0 0 0
6215 A characterization of cellular motivic spectra let alpha mathcalc mathcald symmetric monoidal... 0 0 1 0 0 0
6216 The Impedance of Flat Metallic Plates with Sma... summarizes recent work wakefields impedances f... 0 1 0 0 0 0
6217 The Computer Science and Physics of Community ... community detection graphs problem finding gro... 1 1 1 0 0 0
6218 Characterizing the spread of exaggerated news ... paper consider dataset comprising press releas... 1 0 0 0 0 0
6219 Aerodynamic noise from rigid trailing edges wi... paper investigates effects finite flat porous ... 0 1 1 0 0 0
6220 99% of Parallel Optimization is Inevitably a W... well known many optimization methods including... 1 0 0 1 0 0
6221 Tuning the effective spin-orbit coupling in mo... control spins spin charge conversion organics ... 0 1 0 0 0 0
6222 How Deep Are Deep Gaussian Processes? recent research shown potential utility deep g... 0 0 1 1 0 0
6223 Sparse Randomized Kaczmarz for Support Recover... single measurement vector smv models widely st... 1 0 0 0 0 0
6224 Exploiting ITO colloidal nanocrystals for ultr... dynamical materials capable responding optical... 0 1 0 0 0 0
6225 A quantum dynamic belief model to explain the ... categorization necessary many decision making ... 1 0 0 0 0 0
6226 Throughput Optimal Beam Alignment in Millimete... millimeter wave communications rely narrowbeam... 1 0 0 0 0 0
6227 Behavioural Change Support Intelligent Transpo... workshop invites researchers practitioners par... 1 0 0 0 0 0
6228 SU(2) Pfaffian systems and gauge theory motivated description nurowskis conformal stru... 0 0 1 0 0 0
6229 Correlation effects in superconducting quantum... study effect electron correlations system cons... 0 1 0 0 0 0
6230 Learning non-parametric Markov networks with m... propose method learning markov network structu... 1 0 0 1 0 0
6231 Online Adaptive Machine Learning Based Algorit... work design machine learning based method onli... 1 0 0 1 0 0
6232 Hybrid control strategy for a semi active susp... study proposes control strategy efficient semi... 1 0 0 0 0 0
6233 On the Use of Default Parameter Settings in th... demonstrate range stateoftheart machine learni... 1 0 0 1 0 0
6234 Coaction functors, II study application crossedproduct functors baum... 0 0 1 0 0 0
6235 Classification of Casimirs in 2D hydrodynamics describe complete list casimirs euler hydrodyn... 0 1 1 0 0 0
6236 Novel Compliant omnicrawler-wheel transforming... paper presents novel design crawler robot capa... 1 0 0 0 0 0
6237 Bifurcation of solutions to Hamiltonian bounda... bifurcation qualitative change family solution... 0 0 1 0 0 0
6238 Trespassing the Boundaries: Labeling Temporal ... manual annotations temporal bounds object inte... 1 0 0 0 0 0
6239 Dynamical transport measurement of the Lutting... onedimensional electron systems presence coulo... 0 1 0 0 0 0
6240 Controlling thermal emission of phonon by magn... experiment shows thermal emission phonon contr... 0 1 0 0 0 0
6241 Distributed Average Tracking of Heterogeneous ... paper addresses distributed average tracking p... 0 0 1 0 0 0
6242 Bound states of the two-dimensional Dirac equa... study twodimensional massless dirac equation p... 0 1 0 0 0 0
6243 Beyond Planar Symmetry: Modeling human percept... humans take advantage real world symmetries va... 1 0 0 1 0 0
6244 Sharp Threshold of Blow-up and Scattering for ... consider fractional hartree equation lsupercri... 0 0 1 0 0 0
6245 GP-SUM. Gaussian Processes Filtering of non-Ga... work studies problem stochastic dynamic filter... 1 0 0 1 0 0
6246 A Dynamic Programming Principle for Distributi... consider optimal stopping problem constraint p... 0 0 1 0 0 0
6247 Spectral algebra models of unstable v_n-period... give survey generalization quillensullivan rat... 0 0 1 0 0 0
6248 The length of excitable knots fitzhughnagumo equation provides simple mathem... 0 1 1 0 0 0
6249 The Bane of Low-Dimensionality Clustering paper give conditional lower bound nomegak run... 1 0 0 0 0 0
6250 Blue-detuned magneto-optical trap present properties advantages new magnetooptic... 0 1 0 0 0 0
6251 Polishness of some topologies related to word ... prove bchi topology automatic topology polish ... 1 0 1 0 0 0
6252 Emulating satellite drag from large simulation... obtaining accurate estimates satellite drag co... 0 0 0 1 0 0
6253 Rescaling and other forms of unsupervised prep... crossvalidation predictive models defacto stan... 1 0 0 1 0 0
6254 Causal Inference on Discrete Data via Estimati... paper deal problem inferring causal directions... 0 0 0 1 0 0
6255 A Class of Exponential Sequences with Shift-In... discriminator integer sequence sii introduced ... 1 0 1 0 0 0
6256 Contraction par Frobenius et modules de Steinberg reductive group g defined algebraically closed... 0 0 1 0 0 0
6257 SafeDrive: A Robust Lane Tracking System for A... present approach towards robust lane tracking ... 1 0 0 0 0 0
6258 On the analysis of personalized medication res... work provide couple contributions analysis lon... 0 0 0 1 0 0
6259 Exponential Integrators in Time-Dependent Dens... integrating factor exponential time differenci... 0 1 0 0 0 0
6260 A Distributed Scheduling Algorithm to Provide ... control multihop wireless networks distributed... 1 0 0 0 0 0
6261 A Multi-task Deep Learning Architecture for Ma... world global trading maritime safety security ... 0 0 0 1 0 0
6262 The CCI30 Index describe design cci cryptocurrency index 0 0 0 0 0 1
6263 Training Probabilistic Spiking Neural Networks... thirdgeneration neural networks spiking neural... 1 0 0 1 0 0
6264 An Effective Training Method For Deep Convolut... paper propose nonlinearity generation method s... 1 0 0 1 0 0
6265 A Multi-Layer K-means Approach for Multi-Senso... datatarget association important step multitar... 1 0 0 1 0 0
6266 Investigation of Monaural Front-End Processing... recent years monaural speech separation formul... 1 0 0 0 0 0
6267 Average treatment effects in the presence of u... investigate largesample properties treatment e... 0 0 1 1 0 0
6268 Spatial localization for nonlinear dynamical s... nonlinear dynamical stochastic models ubiquito... 0 0 1 1 0 0
6269 Nonlinear photoionization of transparent solid... provide nonperturbative theory photoionization... 0 1 0 0 0 0
6270 Quantifying the Model Risk Inherent in the Cal... focus two particular aspects model risk inabil... 0 0 0 0 0 1
6271 CN rings in full protoplanetary disks around y... bright ringlike structure emission cn molecule... 0 1 0 0 0 0
6272 A Trio Neural Model for Dynamic Entity Related... measuring entity relatedness fundamental task ... 0 0 0 1 0 0
6273 Dynamic k-Struve Sumudu Solutions for Fraction... present study investigate solutions fractional... 0 0 1 0 0 0
6274 Does mitigating ML's impact disparity require ... following related work law policy two notions ... 1 0 0 1 0 0
6275 Topological Terms and Phases of Sigma Models study boundary conditions topological sigma mo... 0 1 0 0 0 0
6276 A commuting-vector-field approach to some disp... prove pointwise decay solutions three linear e... 0 0 1 0 0 0
6277 The connected countable spaces of Bing and Rit... answering problem posed second author mathover... 0 0 1 0 0 0
6278 Dynamic Graph Convolutional Networks many different classification tasks need manag... 1 0 0 1 0 0
6279 Robust and Efficient Parametric Spectral Estim... atomic force microscope afm capable producing ... 0 0 0 1 0 0
6280 A Robotic Auto-Focus System based on Deep Rein... considering advantages dealing highdimensional... 1 0 0 0 0 0
6281 Wall modeling via function enrichment: extensi... extend approach wall modeling via function enr... 0 1 0 0 0 0
6282 Existence and uniqueness of periodic solution ... aim work study existence periodic solutions nt... 0 0 1 0 0 0
6283 A proof of Hilbert's theorem on ternary quarti... paper proposes totally constructive approach p... 1 0 1 0 0 0
6284 Data-driven Job Search Engine Using Skills and... according report online million unique users s... 1 0 0 0 0 0
6285 The universal DAHA of type $(C_1^\vee,C_1)$ an... leonard pair pair diagonalizable linear transf... 0 0 1 0 0 0
6286 Deep Learning for Computational Chemistry rise fall artificial neural networks well docu... 1 0 0 1 0 0
6287 Causal Interventions for Fairness approaches algorithmic fairness constrain mach... 0 0 0 1 0 0
6288 Analyzing Hypersensitive AI: Instability in Co... predictive geometric models deliver excellent ... 0 0 0 1 0 0
6289 Role of the orbital degree of freedom in iron-... almost decade passed since serendipitous disco... 0 1 0 0 0 0
6290 Perpetual points: New tool for localization of... perpetual points pps special critical points m... 0 1 0 0 0 0
6291 Loss Functions in Restricted Parameter Spaces ... squared error loss remains commonly used loss ... 0 0 1 1 0 0
6292 When Slepian Meets Fiedler: Putting a Focus on... study complex systems benefits graph models an... 1 0 0 0 0 0
6293 Colored Image Encryption and Decryption Using ... paper scheme encryption decryption colored ima... 1 0 0 0 0 0
6294 Self-Gluing formula of the monopole invariant ... given manifold hatm two homeomorphic surfaces ... 0 0 1 0 0 0
6295 An aptamer-biosensor for azole class antifunga... report describes development aptamer sensing a... 0 1 0 0 0 0
6296 Notes on "Einstein metrics on compact simple L... paper einstein metrics compact simple lie grou... 0 0 1 0 0 0
6297 Harmonic quasi-isometric maps II : negatively ... prove quasiisometric map generally coarse embe... 0 0 1 0 0 0
6298 Platform independent profiling of a QCD code supercomputing platforms available high perfor... 1 1 0 0 0 0
6299 DeepGauge: Multi-Granularity Testing Criteria ... deep learning dl defines new datadriven progra... 0 0 0 1 0 0
6300 J0906+6930: a radio-loud quasar in the early U... radioloud highredshift quasars hrqs although k... 0 1 0 0 0 0
6301 Adaptive Stochastic Dual Coordinate Ascent for... work investigates training conditional random ... 1 0 0 1 0 0
6302 Accelerating Innovation Through Analogy Mining availability large idea repositories eg us pat... 1 0 0 1 0 0
6303 $η$-Ricci solitons in $(\varepsilon)$-almost p... object paper study etaricci solitons varepsilo... 0 0 1 0 0 0
6304 Entropy facilitated active transport show active transport ions interpreted entropy... 0 1 0 0 0 0
6305 Consistency of the Predicative Calculus of Cum... order avoid wellknow paradoxes associated self... 1 0 0 0 0 0
6306 Private Information Retrieval from MDS Coded D... k n kc instance mdstpir problem comprised k me... 1 0 0 0 0 0
6307 ADaPTION: Toolbox and Benchmark for Training C... deep neural networks dnns convolutional neural... 1 0 0 0 0 0
6308 Graph Attention Networks present graph attention networks gats novel ne... 1 0 0 1 0 0
6309 Social Media Would Not Lie: Prediction of the ... prevalence online media attracted researchers ... 1 0 0 1 0 0
6310 The stratified micro-randomized trial design: ... technological advancements field mobile device... 0 0 0 1 0 0
6311 Multiplicative Convolution of Real Asymmetric ... singular values products standard complex gaus... 0 0 1 0 0 0
6312 An approach to Griffiths conjecture griffiths conjecture asserts every ample vecto... 0 0 1 0 0 0
6313 On Detecting Adversarial Perturbations machine learning deep learning particular adva... 1 0 0 1 0 0
6314 It's Time to Consider "Time" when Evaluating R... position paper question current practice calcu... 1 0 0 0 0 0
6315 Anomalous metals -- failed superconductors observation metallic ground states variety two... 0 1 0 0 0 0
6316 Energy Optimization of Automatic Hybrid Sailboat autonomous surface vehicles asvs provide effec... 1 0 0 0 0 0
6317 Estimating the Operating Characteristics of En... paper present technique using bootstrap estima... 0 0 0 1 0 0
6318 Plasma turbulence at ion scales: a comparison ... kineticrange turbulence magnetized plasmas par... 0 1 0 0 0 0
6319 Computational determination of the largest lat... lattice kpolytope convex hull set points dimen... 1 0 0 0 0 0
6320 A high resolution ion microscope for cold atoms report ionoptical system serves microscope ult... 0 1 0 0 0 0
6321 Lock-Free Parallel Perceptron for Graph-based ... dependency parsing important nlp task popular ... 1 0 0 0 0 0
6322 Finite groups with systems of $K$-$\frak{F}$-s... let frak f class group subgroup finite group g... 0 0 1 0 0 0
6323 Actions Speak Louder Than Goals: Valuing Playe... assessing impact individual actions performed ... 0 0 0 1 0 0
6324 Partitioning the Outburst Energy of a Low Eddi... active galaxy center virgo cluster ideal study... 0 1 0 0 0 0
6325 On the missing link between pressure drop, vis... decades experimental theoretical numerical res... 0 1 0 0 0 0
6326 Discrete Local Induction Equation local induction equation binormal flow space c... 0 1 1 0 0 0
6327 A sharp lower bound for the lifespan of small ... let tepsilon lifespan solution schrdinger equa... 0 0 1 0 0 0
6328 State Space Reduction for Reachability Graph o... classical ctl temporal logics built systems in... 1 0 0 0 0 0
6329 Permission Inference for Array Programs information memory locations accessed program ... 1 0 0 0 0 0
6330 Generating Query Suggestions to Support Task-B... address problem generating query suggestions s... 1 0 0 0 0 0
6331 Application of Spin-Exchange Relaxation-Free M... cosmic axion spin precession experiment casper... 0 1 0 0 0 0
6332 Symmetry and the Geometric Phase in Ultracold ... quantum reactive scattering calculations repor... 0 1 0 0 0 0
6333 Characterization and Photometric Performance o... subaru strategic program ssp ambitious multiba... 0 1 0 0 0 0
6334 Information Geometry Approach to Parameter Est... consider estimation hidden markovian process u... 0 0 1 1 0 0
6335 Parallel transport in principal 2-bundles nice differentialgeometric framework nonabelia... 0 0 1 0 0 0
6336 Gotta Learn Fast: A New Benchmark for Generali... report present new reinforcement learning rl b... 0 0 0 1 0 0
6337 Generative Adversarial Networks recover featur... observations astrophysical objects galaxies li... 0 1 0 1 0 0
6338 Trends in European flood risk over the past 15... flood risk changes time influenced natural soc... 0 0 0 1 0 0
6339 Kinetic Trans-assembly of DNA Nanostructures central dogma molecular biology principal fram... 0 0 0 0 1 0
6340 Synthesis and analysis in total variation regu... generalize bridge analysis synthesis estimator... 0 0 1 1 0 0
6341 The Leray transform: factorization, dual $CR$ ... compute exact norms leray transforms family ma... 0 0 1 0 0 0
6342 A Fast Quantum-safe Asymmetric Cryptosystem Us... paper gives definitions extra superincreasing ... 1 0 0 0 0 0
6343 Knowledge Transfer for Melanoma Screening with... knowledge transfer impacts performance deep le... 1 0 0 0 0 0
6344 Large odd order character sums and improvement... primitive dirichlet character chi modulo q def... 0 0 1 0 0 0
6345 Estimation under group actions: recovering orb... motivated geometric problems signal processing... 1 0 1 0 0 0
6346 Crystal field excitations from $\mathrm{Yb^{3+... pyrochlore magnet rm ybtio proposed quantum sp... 0 1 0 0 0 0
6347 HOUDINI: Lifelong Learning as Program Synthesis present neurosymbolic framework lifelong learn... 1 0 0 1 0 0
6348 Detecting Adversarial Examples via Key-based N... though deep neural networks achieved stateofth... 0 0 0 1 0 0
6349 Guessing Attacks on Distributed-Storage Systems secrecy distributedstorage system passwords st... 1 0 1 0 0 0
6350 Numerical analysis of nonlocal fracture models... work calculate convergence rate finite differe... 0 0 1 0 0 0
6351 Iterative Collaborative Filtering for Sparse M... sparse matrix estimation problem consists esti... 0 0 1 1 0 0
6352 Parameter Estimation in Finite Mixture Models ... short paper formulate parameter estimation fin... 1 0 0 1 0 0
6353 Robust parameter determination in epidemic mod... compartmental equations primary tools disease ... 0 0 0 0 1 0
6354 Direct observation of domain wall surface tens... surface energy magnetic domain wall dw strongl... 0 1 0 0 0 0
6355 Unified Halo-Independent Formalism From Convex... using fencheleggleston theorem convex hulls ex... 0 1 0 0 0 0
6356 Finite size effects for spiking neural network... study finitesize fluctuations network spiking ... 0 0 0 0 1 0
6357 Shape and fission instabilities of ferrofluids... study static distributions ferrofluid submitte... 0 1 0 0 0 0
6358 Encrypted accelerated least squares regression information stored encrypted format definition... 1 0 0 1 0 0
6359 Unified Model of Chaotic Inflation and Dynamic... large hierarchy planck scale weak scale explai... 0 1 0 0 0 0
6360 Tuplemax Loss for Language Identification many scenarios language identification task us... 1 0 0 0 0 0
6361 Sparse Data Driven Mesh Deformation examplebased mesh deformation methods powerful... 1 0 0 0 0 0
6362 Short Presburger arithmetic is hard study computational complexity short sentences... 1 0 1 0 0 0
6363 The Bias of the Log Power Spectrum for Discret... primary goal galaxy surveys tighten constraint... 0 1 0 0 0 0
6364 Consistent nonparametric change point detectio... weakly dependent time series regression model ... 0 0 1 1 0 0
6365 Nonlinear electric field effect on perpendicul... electric field effect magnetic anisotropy stud... 0 1 0 0 0 0
6366 Local Symmetry and Global Structure in Adaptiv... coevolving adaptive voter models avms natural ... 1 0 0 0 0 0
6367 A Weighted Model Confidence Set: Applications ... article provides weighted model confidence set... 0 0 0 1 0 0
6368 Poverty Mapping Using Convolutional Neural Net... mapping spatial distribution poverty developin... 1 0 0 1 0 0
6369 Network of sensitive magnetometers for urban s... magnetic signature urban environment investiga... 0 1 0 0 0 0
6370 Cooperative Hierarchical Dirichlet Processes: ... cooperative hierarchical structure common sign... 1 0 0 1 0 0
6371 The extended law of star formation: the combin... present model origin extended law star formati... 0 1 0 0 0 0
6372 Local and global similarity of holomorphic mat... r guralnick linear algebra appl proved two hol... 0 0 1 0 0 0
6373 WHInter: A Working set algorithm for High-dime... learning sparse linear models twoway interacti... 0 0 0 1 1 0
6374 On the Limitation of Convolutional Neural Netw... convolutional neural networks cnns achieved st... 1 0 0 1 0 0
6375 $\aleph_1$ and the modal $μ$-calculus regular cardinal kappa formula modal mucalculu... 1 0 1 0 0 0
6376 Optimal Service Elasticity in Large-Scale Dist... fundamental challenge largescale cloud network... 1 0 1 0 0 0
6377 Variational Monte Carlo study of spin dynamics... hourglasslike dispersion spin excitations comm... 0 1 0 0 0 0
6378 High brightness electron beam for radiation th... propose use high brightness electron beam mev ... 0 1 0 0 0 0
6379 Parabolic equations with divergence-free drift... paper study fundamental solution vargammatxtau... 0 0 1 0 0 0
6380 Translating Terminological Expressions in Know... work presented paper focuses translation termi... 1 0 0 0 0 0
6381 Detecting Arbitrary Attacks Using Continuous S... paper focuses byzantine attack detection gauss... 1 0 0 0 0 0
6382 Phase Transitions in the Pooled Data Problem paper study pooled data problem identifying la... 1 0 0 1 0 0
6383 Graph Convolutional Networks for Classificatio... usual practice ignore structural information u... 1 0 0 1 0 0
6384 Decoupling of graphene from Ni(111) via oxygen... combination surface science techniques stm xps... 0 1 0 0 0 0
6385 Model Risk Measurement under Wasserstein Distance paper proposes new approach model risk measure... 0 0 0 0 0 1
6386 Fast kNN mode seeking clustering applied to ac... significantly faster algorithm presented origi... 1 0 0 1 0 0
6387 Towards a Flow- and Path-Sensitive Information... paper investigates flow pathsensitive static i... 1 0 0 0 0 0
6388 Topic supervised non-negative matrix factoriza... topic models extensively used organize interpr... 1 0 0 1 0 0
6389 Low-temperature lattice effects in the spin-li... quasitwodimensional organic chargetransfer sal... 0 1 0 0 0 0
6390 ECO-AMLP: A Decision Support System using an E... advanced data analytical techniques efforts ac... 1 0 0 0 0 0
6391 Local approximation of non-holomorphic discs i... provide local approximation result nonholomorp... 0 0 1 0 0 0
6392 A Tutorial on Deep Learning for Music Informat... following success computer vision areas deep l... 1 0 0 0 0 0
6393 Modeling and control of modern wind turbine sy... chapter provides introduction modeling control... 1 0 0 0 0 0
6394 Linear algebraic analogues of the graph isomor... classical difficult isomorphism testing proble... 1 0 1 0 0 0
6395 A Family of Metrics for Clustering Algorithms give motivation scoring clustering algorithms ... 1 0 0 0 0 0
6396 A numerical scheme for an improved Green-Naghd... paper introduce new reformulation greennaghdi ... 0 0 1 0 0 0
6397 General Bayesian Updating and the Loss-Likelih... paper revisit weighted likelihood bootstrap me... 0 0 0 1 0 0
6398 Efficient Estimation of Generalization Error a... many applications ensemble base classifiers ef... 1 0 0 1 0 0
6399 Self-consistent calculation of the flux-flow c... framework keldyshusadel kinetic theory study t... 0 1 0 0 0 0
6400 Generalized weighted Ostrowski and Ostrowski-G... prove generalized weighted ostrowski ostrowski... 0 0 1 0 0 0
6401 "Found in Translation": Predicting Outcomes of... intuitive analogy organic chemists understandi... 1 0 0 1 0 0
6402 Efficient Decomposition of High-Rank Tensors tensors natural way express correlations among... 1 1 0 0 0 0
6403 Universality in Chaos: Lyapunov Spectrum and R... propose existence new universality classical c... 0 1 0 0 0 0
6404 Fixed points of competitive threshold-linear n... thresholdlinear networks tlns models neural ne... 0 0 0 0 1 0
6405 A Decision Procedure for Herbrand Formulae wit... paper describes decision procedure disjunction... 1 0 1 0 0 0
6406 The role of relativistic many-body theory in p... observation electric dipole moments edms atomi... 0 1 0 0 0 0
6407 Security Incident Recognition and Reporting (S... reports press releases highlight security inci... 1 0 0 0 0 0
6408 On attainability of optimal controls in coeffi... paper consider optimal control problem coupled... 0 0 1 0 0 0
6409 Adversarial Variational Bayes Methods for Twee... tweedie compound poissongamma model routinely ... 0 0 0 1 0 0
6410 Sampling of Temporal Networks: Methods and Biases temporal networks increasingly used model dive... 1 0 0 0 0 0
6411 Personalizing Path-Specific Effects unlike classical causal inference often averag... 0 0 0 1 0 0
6412 Bridge Programs as an approach to improving di... physical sciences students underrepresented mi... 0 1 0 0 0 0
6413 NEURAL: quantitative features for newborn EEG ... background newborn infants critical care conti... 0 1 0 1 0 0
6414 False Positive Reduction by Actively Mining Ne... generating large quantities quality labeled da... 0 0 0 1 0 0
6415 WASP-12b: A Mass-Losing Extremely Hot Jupiter waspb extreme hot jupiter day orbit suffering ... 0 1 0 0 0 0
6416 On the status of the Born-Oppenheimer expansio... shown adiabatic bornoppenheimer expansion sati... 0 1 0 0 0 0
6417 Computing Tropical Prevarieties in Parallel computation tropical prevariety first step app... 1 0 1 0 0 0
6418 3k-4 theorem for ordered groups recently g freiman herzog p longobardi maj pro... 0 0 1 0 0 0
6419 The Extinction Properties of and Distance to t... correction type ia supernova brightnesses exti... 0 1 0 0 0 0
6420 On Whitham and related equations aim paper study via theoretical analysis numer... 0 0 1 0 0 0
6421 Analytic Connectivity in General Hypergraphs paper extend known results analytic connectivi... 1 0 0 0 0 0
6422 Cosmological searches for a non-cold dark matt... explore extended cosmological scenario dark ma... 0 1 0 0 0 0
6423 F-pure threshold and height of quasi-homogeneo... consider quasihomogeneous polynomial f mathbbz... 0 0 1 0 0 0
6424 Optimal VWAP execution under transient price i... solve problem optimal liquidation volume weigh... 0 0 0 0 0 1
6425 Image-derived generative modeling of pseudo-ma... cellular electron cryotomography cect imaging ... 0 0 0 1 1 0
6426 Bayesian Alignments of Warped Multi-Output Gau... propose novel bayesian approach modelling nonl... 1 0 0 1 0 0
6427 Fast and unsupervised methods for multilingual... paper explore use unsupervised methods detecti... 1 0 0 0 0 0
6428 Structure, magnetic susceptibility and specifi... report structural susceptibility specific heat... 0 1 0 0 0 0
6429 Directed Information as Privacy Measure in Clo... consider cloudbased control scenarios clients ... 0 0 1 0 0 0
6430 Classification of simple linearly compact Kant... simple finite dimensional kantor triple system... 0 0 1 0 0 0
6431 Code-division multiplexed resistive pulse sens... spatial separation suspended particles based c... 0 0 0 1 0 0
6432 Navigability evaluation of complex networks by... network navigability key feature complex netwo... 1 0 0 0 0 0
6433 Fermion condensation and super pivotal categories study fermionic topological phases using techn... 0 1 1 0 0 0
6434 PIMKL: Pathway Induced Multiple Kernel Learning reliable identification molecular biomarkers e... 0 0 0 1 1 0
6435 pyRecLab: A Software Library for Quick Prototy... paper introduces pyreclab software library wri... 1 0 0 0 0 0
6436 A unified theory of adaptive stochastic gradie... formulate stochastic gradient descent sgd baye... 0 0 0 1 0 0
6437 Radiative effects during the assembly of direc... perform postprocessing radiative feedback anal... 0 1 0 0 0 0
6438 Spin-orbit interactions in optically active ma... investigate inherent influence light polarizat... 0 1 0 0 0 0
6439 Automatic White-Box Testing of First-Order Log... formal ontologies axiomatizations logicbased f... 1 0 0 0 0 0
6440 Critical values in Bak-Sneppen type models baksneppen model lowest fitness particle two n... 0 1 0 0 0 0
6441 On the correspondence of deviances and maximum... consider set categorical variables mathcalp le... 0 0 0 1 0 0
6442 ASIC Implementation of Time-Domain Digital Bac... consider timedomain digital backpropagation ch... 0 0 0 1 0 0
6443 A formalization of convex polyhedra based on t... present formalization convex polyhedra proof a... 1 0 1 0 0 0
6444 Weight Spectrum of Quasi-Perfect Binary Codes ... consider weight spectrum class quasiperfect bi... 1 0 0 0 0 0
6445 Ultra-High Electro-Optic Activity Demonstrated... efficient electrooptic eo modulators crucially... 0 1 0 0 0 0
6446 How the Experts Do It: Assessing and Explainin... aibased explanation system explain agents comp... 1 0 0 0 0 0
6447 Entanglement Entropy of Eigenstates of Quadrat... seminal paper n page phys rev lett page proved... 0 1 0 0 0 0
6448 Focusing light through dynamical samples using... describe fast closedloop optimization wavefron... 0 1 0 0 0 0
6449 The curvature estimates for convex solutions o... curvature estimates quotient curvature equatio... 0 0 1 0 0 0
6450 The Compressed Model of Residual CNDS convolutional neural networks achieved great s... 1 0 0 0 0 0
6451 Chow Rings of Mp_{0,2}(N,d) and Mbar_{0,2}(P^{... paper prove formulas represent twopointed grom... 0 0 1 0 0 0
6452 A Real-Time Autonomous Highway Accident Detect... due increasing urban population growing number... 1 0 0 1 0 0
6453 Asymptotic Eigenfunctions for a class of Diffe... analyze general class difference operators hva... 0 0 1 0 0 0
6454 Common Glass-Forming Spin-Liquid State in the ... despite wellordered pyrochlore crystal structu... 0 1 0 0 0 0
6455 Britannia Rule the Waves students introduced navigation general longitu... 0 1 0 0 0 0
6456 Error Forward-Propagation: Reusing Feedforward... introduce error forwardpropagation biologicall... 0 0 0 0 1 0
6457 CANA: A python package for quantifying control... logical models offer simple powerful means und... 1 0 0 0 1 0
6458 $α$-Variational Inference with Statistical Gua... propose family variational approximations baye... 0 0 1 1 0 0
6459 Stable monoenergetic ion acceleration by a two... past decades phenomenal progress development u... 0 1 0 0 0 0
6460 Experimental demonstration of an ultra-compact... demonstrated novel onchip polarization control... 0 1 0 0 0 0
6461 Letter-Based Speech Recognition with Gated Con... recent literature endtoend speech systems ofte... 1 0 0 0 0 0
6462 The Frequent Network Neighborhood Mapping of t... study human connectome vertices edges network ... 0 0 0 0 1 0
6463 Recurrent Neural Networks as Weighted Language... investigate computational complexity various p... 1 0 0 0 0 0
6464 Classifying and Qualifying GUI Defects graphical user interfaces guis integral parts ... 1 0 0 0 0 0
6465 A mechanistic model of connector hubs, modular... human brain network modularcomprised communiti... 0 0 0 0 1 0
6466 The OGLE Collection of Variable Stars. Over 45... present collection eclipsing ellipsoidal binar... 0 1 0 0 0 0
6467 The discrete moment problem with nonconvex sha... discrete moment problem foundational problem d... 0 0 1 1 0 0
6468 Some studies using capillary for flow control ... pilot unit closed loop gas cls mixing distribu... 0 1 0 0 0 0
6469 Optimal Tuning of Two-Dimensional Keyboards give new analysis tuning problem music theory ... 1 0 0 0 0 0
6470 Ultra Reliable Short Message Relaying with Wir... consider dualhop wireless network energy const... 1 0 0 1 0 0
6471 Verifiable Light-Weight Monitoring for Certifi... trust publicly verifiable certificate transpar... 1 0 0 0 0 0
6472 Chainspace: A Sharded Smart Contracts Platform chainspace decentralized infrastructure known ... 1 0 0 0 0 0
6473 On Certain Properties of Convex Functions note deals certain properties convex functions... 0 0 1 0 0 0
6474 The detection of variable radio emission from ... paper investigate multiwavelengths properties ... 0 1 0 0 0 0
6475 In silico optimization of critical currents in... many technological applications superconductor... 0 1 0 0 0 0
6476 Attracting sequences of holomorphic automorphi... basin attraction uniformly attracting sequence... 0 0 1 0 0 0
6477 Repulsive Fermi polarons with negative effecti... recent lens experiment fermi gas reported nega... 0 1 0 0 0 0
6478 Entropy Formula for Random $\mathbb{Z}^k$-actions paper entropies including measuretheoretic ent... 0 0 1 0 0 0
6479 Kohn anomalies in momentum dependence of magne... study question presence kohn points yielding l... 0 1 0 0 0 0
6480 Stability conditions, $τ$-tilting Theory and M... extending notion maximal green sequences abeli... 0 0 1 0 0 0
6481 The thermal phase curve offset on tidally- and... using shallow water model timedependent forcin... 0 1 0 0 0 0
6482 On Asymptotic Standard Normality of the Two Sa... asymptotic solution problem comparing means tw... 0 0 1 1 0 0
6483 Breakthrough revisited: investigating the requ... grain growth proceed effectively lead planet f... 0 1 0 0 0 0
6484 Extremely high magnetoresistance and conductiv... peculiar band structure semimetals exhibiting ... 0 1 0 0 0 0
6485 Density and current profiles in $U_q(A^{(1)}_2... stochastic r matrix uqan introduced recently g... 0 1 0 0 0 0
6486 Crystal structure, site selectivity, and elect... investigated crystal structure laobipbs using ... 0 1 0 0 0 0
6487 Responses of Pre-transitional Materials with S... considered generic case pretransitional materi... 0 1 0 0 0 0
6488 On The Robustness of Epsilon Skew Extension fo... burr iii distribution used wide variety fields... 0 0 1 1 0 0
6489 Logics for Word Transductions with Synthesis introduce logic called lt express properties t... 1 0 0 0 0 0
6490 Topology and strong four fermion interactions ... study massless fermions interacting particular... 0 1 0 0 0 0
6491 Augmentor: An Image Augmentation Library for M... generation artificial data based existing obse... 1 0 0 1 0 0
6492 Multilevel Sequential${}^2$ Monte Carlo for Ba... identification parameters mathematical models ... 0 0 0 1 0 0
6493 Multiparameter actuation of a neutrally-stable... designed tested experimentally morphing struct... 0 1 0 0 0 0
6494 An Evolutionary Game for User Access Mode Sele... fog radio access network fran promising paradi... 1 0 0 0 0 0
6495 Latent Estimation of GDP, GDP per capita, and ... concepts gross domestic product gdp gdp per ca... 0 0 0 1 0 0
6496 Portfolio Optimization under Fast Mean-reverti... fractional stochastic volatility models widely... 0 0 0 0 0 1
6497 Triangle Generative Adversarial Networks triangle generative adversarial network deltag... 1 0 0 1 0 0
6498 Learning Distributions of Meant Color speaker says name color color picture necessar... 1 0 0 0 0 0
6499 Bose - Einstein condensation of triplons with ... lowtemperature properties certain quantum magn... 0 1 0 0 0 0
6500 LPCNet: Improving Neural Speech Synthesis Thro... neural speech synthesis models recently demons... 1 0 0 0 0 0
6501 Coherent anti-Stokes Raman Scattering Lidar Us... theoretically investigate scheme backward cohe... 0 1 0 0 0 0
6502 Tests based on characterizations, and their ef... survey goodnessoffit symmetry tests based char... 0 0 1 1 0 0
6503 Hyperprior on symmetric Dirichlet distribution article introduce put vague hyperprior dirichl... 1 0 0 0 0 0
6504 On the interpretability and computational reli... comment paper study problems encountered grang... 0 0 1 1 0 0
6505 Artificial topological models based on a one-d... topological matter popular topic condensed mat... 0 1 0 0 0 0
6506 Ramsey expansions of metrically homogeneous gr... discuss ramsey property existence stationary i... 1 0 1 0 0 0
6507 Rapidly star-forming galaxies adjacent to quas... existence massive solar masses elliptical gala... 0 1 0 0 0 0
6508 Regular irreducible characters of a hyperspeci... parametrization irreducible unitary representa... 0 0 1 0 0 0
6509 Active Exploration Using Gaussian Random Field... work study problem exploring surfaces building... 1 0 0 0 0 0
6510 Doing good vs. avoiding bad in prosocial choic... prosociality fundamental human social life acc... 0 0 0 0 1 0
6511 Measuring Territorial Control in Civil Wars Us... territorial control key aspect shaping dynamic... 1 0 0 1 0 0
6512 Virtual quandle for links in lens spaces construct virtual quandle links lens spaces lp... 0 0 1 0 0 0
6513 Adaptation to Easy Data in Prediction with Lim... derive online learning algorithm improved regr... 0 0 0 1 0 0
6514 Why Bohr was (Mostly) Right discussion frauchigerrenner argument single wo... 0 1 0 0 0 0
6515 Generalizing Distance Covariance to Measure an... propose three measures mutual dependence multi... 0 0 1 1 0 0
6516 Simultaneous Inference for High Dimensional Me... let x ldots xninmathbbrp iid random vectors ai... 0 0 1 1 0 0
6517 Joint Routing, Scheduling and Power Control Pr... consider optimalefficient power allocation pol... 1 0 0 0 0 0
6518 Activation of Microwave Fields in a Spin-Torqu... action potentials basic unit information nervo... 0 1 0 0 0 0
6519 Responses in Large-Scale Structure introduce rigorous definition general powerspe... 0 1 0 0 0 0
6520 Graph isomorphisms in quasi-polynomial time let us given two graphs gamma gamma n vertices... 0 0 1 0 0 0
6521 Hardware-Aware Machine Learning: Modeling and ... recent breakthroughs deep learning dl applicat... 0 0 0 1 0 0
6522 On the unit distance problem erdh os unit distance conjecture plane says nu... 0 0 1 0 0 0
6523 Ordered states in the Kitaev-Heisenberg model:... study ground state kitaevheisenberg kh model u... 0 1 0 0 0 0
6524 Quadratic forms and Sobolev spaces of fraction... study quadratic functionals lmathbbrd generate... 0 0 1 0 0 0
6525 General Latent Feature Modeling for Data Explo... paper introduces general bayesian non parametr... 1 0 0 1 0 0
6526 The ALMA View of the OMC1 Explosion in Orion massive stars form dense clusters gravitationa... 0 1 0 0 0 0
6527 Neurology-as-a-Service for the Developing World electroencephalography eeg extensivelyused wel... 1 0 0 1 0 0
6528 Estimation of Low-Rank Matrices via Approximat... consider problem estimating lowrank symmetric ... 0 0 1 1 0 0
6529 Simultaneous diagonalisation of the covariance... recent developments quaternionvalued widely li... 1 0 0 0 0 0
6530 Arithmetic Siegel-Weil formula on $X_{0}(N)$ paper proved arithmetic siegelweil formula mod... 0 0 1 0 0 0
6531 Perturbation, Non-Gaussianity and Reheating in... motivated alphaattractor models paper consider... 0 1 0 0 0 0
6532 Experimental determination of the frequency an... magnetic nanoparticles promising systems biome... 0 1 0 0 0 0
6533 Training wide residual networks for deployment... fast energyefficient deployment trained deep n... 0 0 0 1 0 0
6534 IP Based Traffic Recovery: An Optimal Approach... passage time indulgence information technology... 1 0 0 0 0 0
6535 Performance of Optimal Data Shaping Codes data shaping coding technique proposed increas... 1 0 0 0 0 0
6536 Finding influential nodes for integration in b... global integration information brain results c... 0 0 0 0 1 0
6537 Automatic Music Highlight Extraction using Con... music highlights valuable contents music servi... 1 0 0 1 0 0
6538 On Oracle-Efficient PAC RL with Rich Observations study computational tractability pac reinforce... 0 0 0 1 0 0
6539 Noise induced transition in Josephson junction... show noiseinduced transition josephson junctio... 0 1 0 0 0 0
6540 Distributed Estimation of Principal Eigenspaces principal component analysis pca fundamental s... 0 0 1 1 0 0
6541 Invariant algebraic surfaces of the FitzHugh-N... paper characterize irreducible darboux polynom... 0 0 1 0 0 0
6542 Local and global boundary rigidity and the geo... paper analyze local global boundary rigidity p... 0 0 1 0 0 0
6543 Adversarial Source Identification Game with Co... study variant source identification game train... 1 0 0 1 0 0
6544 Toric actions and convexity in cosymplectic ge... prove convexity theorem hamiltonian torus acti... 0 0 1 0 0 0
6545 Localization and Stationary Phase Approximatio... given odd vector field q supermanifold qinvari... 0 0 1 0 0 0
6546 An Analytical Design Optimization Method for E... multicopters becoming increasingly important c... 1 0 0 0 0 0
6547 A Reassessment of Absolute Energies of the X-r... introduce new technique determining xray fluor... 0 1 0 0 0 0
6548 Limitations of Source-Filter Coupling In Phona... coupling vocal fold source vocal tract filter ... 1 0 0 0 0 0
6549 Correlation between clustering and degree in a... interested probability two randomly selected n... 1 0 0 0 0 0
6550 Automatic Disambiguation of French Discourse C... discourse connectives eg however terms explici... 1 0 0 0 0 0
6551 Predicting Financial Crime: Augmenting the Pre... financial crime rampant hidden threat spite pr... 1 0 0 0 0 0
6552 Polar codes with a stepped boundary consider explicit polar constructions blocklen... 1 0 0 0 0 0
6553 Resonant Scattering Characteristics of Homogen... present article classical problem electromagne... 0 1 0 0 0 0
6554 An efficient global optimization algorithm for... maximizing sum two generalized rayleigh quotie... 0 0 1 0 0 0
6555 Location Dependent Dirichlet Processes dirichlet processes dp widely applied bayesian... 1 0 0 1 0 0
6556 Poisson brackets symmetry from the pentagon-wh... kontsevich designed scheme generate infinitesi... 0 0 1 0 0 0
6557 Shadows of characteristic cycles, Verma module... chernschwartzmacpherson csm classes generalize... 0 0 1 0 0 0
6558 An Iterative Scheme for Leverage-based Approxi... current data explosion poses great challenges ... 1 0 0 0 0 0
6559 A Game of Martingales consider two player dynamic game played leq in... 0 0 0 0 0 1
6560 Effects of tunnelling and asymmetry for system... apply newly derived nonadiabatic goldenrule in... 0 1 0 0 0 0
6561 Self-Modifying Morphology Experiments with DyR... robots become ubiquitous need able adapt compl... 1 0 0 0 0 0
6562 Dropout is a special case of the stochastic de... multilayer neural networks lead remarkable per... 0 0 0 1 0 0
6563 Kernel Regression with Sparse Metric Learning kernel regression popular nonparametric fittin... 1 0 0 1 0 0
6564 Learning MSO-definable hypotheses on string study classification problems string data hypo... 1 0 0 0 0 0
6565 From semimetal to chiral Fulde-Ferrell superfl... recent realization twodimensional synthetic sp... 0 1 0 0 0 0
6566 TumorNet: Lung Nodule Characterization Using M... characterization lung nodules benign malignant... 1 0 0 1 0 0
6567 An apparatus architecture for femtosecond tran... motion electrons near solids liquids gases tra... 0 1 0 0 0 0
6568 HourGlass: Predictable Time-based Cache Cohere... present hardware mechanism called hourglass pr... 1 0 0 0 0 0
6569 Frictional Effects on RNA Folding: Speed Limit... investigated frictional effects folding rates ... 0 0 0 0 1 0
6570 Learning to Rank based on Analogical Reasoning object ranking learning rank important problem... 1 0 0 1 0 0
6571 Modeling Spatial Overdispersion with the Gener... modeling spatial overdispersion requires point... 0 0 1 1 0 0
6572 Adversarial examples for generative models explore methods producing adversarial examples... 0 0 0 1 0 0
6573 Sparse covariance matrix estimation in high-di... study estimation covariance matrix sigma pdime... 0 0 1 0 0 0
6574 Dynamic controllers for column synchronization... multiagent systems setting paper addresses con... 1 0 1 0 0 0
6575 The ELEGANT NMR Spectrometer compact portable insitu nmr spectrometers dipp... 0 1 0 0 0 0
6576 What Would a Graph Look Like in This Layout? A... using different methods laying graph lead diff... 1 0 0 1 0 0
6577 A sure independence screening procedure for ul... introduce twostep procedure context ultrahigh ... 0 0 1 1 0 0
6578 Unbiased Multi-index Monte Carlo introduce new class monte carlo based approxim... 0 0 0 1 0 0
6579 Hilbert Transformation and $r\mathrm{Spin}(n)+... paper study symmetry properties hilbert transf... 0 0 1 0 0 0
6580 Asymptotic limit and decay estimates for a cla... paper study largetime behavior solutions class... 0 0 1 0 0 0
6581 (G, μ)-displays and Rapoport-Zink spaces let g mu pair reductive group g padic integers... 0 0 1 0 0 0
6582 Selecting Representative Examples for Program ... program synthesis class regression problems on... 1 0 0 0 0 0
6583 Semistable rank 2 sheaves with singularities o... describe new irreducible components giesekerma... 0 0 1 0 0 0
6584 From jamming to collective cell migration thro... cell monolayers provide interesting example ac... 0 0 0 0 1 0
6585 An Approximate Bayesian Long Short-Term Memory... long shortterm memory networks trained gradien... 1 0 0 1 0 0
6586 Estimates of covering type and the number of v... covering type space x defined minimal cardinal... 0 0 1 0 0 0
6587 Principal Floquet subspaces and exponential se... paper deals study principal lyapunov exponents... 0 0 1 0 0 0
6588 DNA insertion mutations can be predicted by a ... generally difficult predict positions mutation... 0 1 0 0 0 0
6589 Machine Learning Molecular Dynamics for the Si... machine learning emerged invaluable tool many ... 0 1 0 1 0 0
6590 Statistically Optimal and Computationally Effi... article develop methods estimating low rank te... 0 0 1 1 0 0
6591 The cohomology of the full directed graph complex seminal paper formality conjecture kontsevich ... 0 0 1 0 0 0
6592 Model equations and structures formation for t... propose new types models appearance small larg... 0 1 0 0 0 0
6593 On the Support Recovery of Jointly Sparse Gaus... work provide nonasymptotic probabilistic guara... 1 0 0 0 0 0
6594 A Critical-like Collective State Leads to Long... transition singlecell multicellular behavior i... 0 0 0 0 1 0
6595 Twistor theory at fifty: from contour integral... review aspects twistor theory aims achievement... 0 1 1 0 0 0
6596 Strong convergence rates of probabilistic inte... probabilistic integration continuous dynamical... 0 0 1 1 0 0
6597 The G-centre and gradable derived equivalences propose generalisation notion centre algebra s... 0 0 1 0 0 0
6598 RFCDE: Random Forests for Conditional Density ... random forests common nonparametric regression... 0 0 0 1 0 0
6599 The symplectic approach of gauged linear $σ$-m... wittens gauged linear sigmamodel glsm unifies ... 0 0 1 0 0 0
6600 Analysis of nonsmooth stochastic approximation... paper address convergence stochastic approxima... 0 0 0 1 0 0
6601 Clicks and Cliques. Exploring the Soul of the ... paper analyze communities across united states... 0 0 0 1 0 0
6602 Quickest Change Detection under Transient Dyna... problem quickest change detection qcd transien... 0 0 1 1 0 0
6603 The Block Point Process Model for Continuous-T... many application settings involve analysis tim... 1 0 0 1 0 0
6604 Multi-Agent Deep Reinforcement Learning for Dy... work demonstrates potential deep reinforcement... 0 0 0 1 0 0
6605 Investor Reaction to Financial Disclosures Acr... paper provides holistic study stock prices var... 0 0 0 0 0 1
6606 Truncated Variational EM for Semi-Supervised N... inference learning probabilistic generative ne... 0 0 0 1 0 0
6607 The nature and origin of heavy tails in retwee... modern social media platforms facilitate rapid... 1 1 0 1 0 0
6608 Opinion Polarization by Learning from Social F... explore new mechanism explain polarization phe... 1 1 0 0 0 0
6609 Estimating Quality in Multi-Objective Bandits ... many realworld applications characterized numb... 1 0 0 1 0 0
6610 Adaptive IGAFEM with optimal convergence rates... consider adaptive algorithm finite element met... 0 0 1 0 0 0
6611 Spin dynamics of quadrupole nuclei in InGaAs q... photoluminescence polarization experimentally ... 0 1 0 0 0 0
6612 Calibration for Weak Variance-Alpha-Gamma Proc... weak variancealphagamma process multivariate l... 0 0 0 0 0 1
6613 Generalized Coordinated Transaction Scheduling... generalization coordinated transaction schedul... 0 0 1 0 0 0
6614 Boundaries as an Enhancement Technique for Phy... paper study receiver performance physical laye... 1 0 0 0 0 0
6615 Magnetically induced Ferroelectricity in Bi$_2... tetragonal copper oxide bicuo unusual crystal ... 0 1 0 0 0 0
6616 Probabilistic Matrix Factorization for Automat... order achieve stateoftheart performance modern... 0 0 0 1 0 0
6617 Stochastic Multi-objective Optimization on a B... design optimization engineering systems multip... 0 0 1 0 0 0
6618 Generation High resolution 3D model from natur... present method generating high resolution shap... 1 0 0 1 0 0
6619 A survey on policy search algorithms for learn... policy search algorithms require thousands tra... 1 0 0 1 0 0
6620 Non-linear Cyclic Codes that Attain the Gilber... prove exist nonlinear binary cyclic codes atta... 1 0 1 0 0 0
6621 Consistency of Lipschitz learning with infinit... study consistency lipschitz learning graphs li... 1 0 0 0 0 0
6622 On the Synthesis of Guaranteed-Quality Plans f... manufacturing increasing involvement autonomou... 1 0 0 0 0 0
6623 Geometrical morphology explore inflectional morphology example relati... 1 0 0 0 0 0
6624 A framework for cost-constrained genome rearra... study genome rearrangement many flavours someh... 0 0 0 0 1 0
6625 Dual combination combination multi switching s... paper novel scheme synchronizing four drive fo... 1 0 1 0 0 0
6626 An Optimization Based Control Framework for Ba... wholebody torque control framework adapted bal... 1 0 0 0 0 0
6627 Self-similar groups of type FP_{n} construct new classes selfsimilar groups sarit... 0 0 1 0 0 0
6628 Operator Fitting for Parameter Estimation of S... estimation parameters crucial part model devel... 0 0 1 1 0 0
6629 Binomial transform of products given two infinite sequences known binomial tr... 0 0 1 0 0 0
6630 Strength Factors: An Uncertainty System for a ... present new system handling uncertainty quanti... 1 0 0 0 0 0
6631 Binary companions of nearby supernova remnants... search runaway former companions progenitors n... 0 1 0 0 0 0
6632 Some Distributions on Finite Rooted Binary Trees introduce natural families distributions roote... 0 0 1 0 0 0
6633 Programmable DNA-mediated decision maker dnamediated computing novel technology seeks c... 1 0 0 0 0 0
6634 The Effects of Ram Pressure on the Cold Clouds... discuss effect ram pressure cold clouds center... 0 1 0 0 0 0
6635 Time-delayed SIS epidemic model with populatio... paper analyses dynamics infectious disease con... 0 1 0 0 0 0
6636 Determining Song Similarity via Machine Learni... task determining item similarity crucial one r... 1 0 0 1 0 0
6637 Uplink Performance Analysis in D2D-Enabled mmW... paper provide analytical framework analyze upl... 1 0 0 0 0 0
6638 A critical topology for $L^p$-Carleman classes... paper explain sharp phase transition phenomeno... 0 0 1 0 0 0
6639 The GAN Landscape: Losses, Architectures, Regu... generative adversarial networks gans class dee... 0 0 0 1 0 0
6640 An energy-based equilibrium contact angle boun... consider energybased boundary condition impose... 0 1 0 0 0 0
6641 Period polynomials, derivatives of $L$-functio... period polynomials long fruitful tools study v... 0 0 1 0 0 0
6642 Forming disc galaxies in major mergers II. The... context series papers study major merger two d... 0 1 0 0 0 0
6643 Measuring Systematic Risk with Neural Network ... paper measure systematic risk new nonparametri... 0 0 0 0 0 1
6644 Obstacle Avoidance Using Stereo Camera paper present novel method obstacle avoidance ... 1 0 0 0 0 0
6645 Detecting Outliers in Data with Correlated Mea... advances sensor technology enabled collection ... 0 0 0 1 0 0
6646 Active bialkali photocathodes on free-standing... hexagonal structure graphene gives rise proper... 0 1 0 0 0 0
6647 Reconstruction of a compact Riemannian manifol... given smooth nontrapping compact manifold stri... 0 0 1 0 0 0
6648 Lensing and the Warm Hot Intergalactic Medium correlation weak lensing cosmic microwave anis... 0 1 0 0 0 0
6649 Guaranteed Simultaneous Asymmetric Tensor Deco... consider asymmetric orthogonal tensor decompos... 0 0 0 1 0 0
6650 The average sizes of two-torsion subgroups in ... prove generalization result bhargava regarding... 0 0 1 0 0 0
6651 A Strongly Consistent Finite Difference Scheme... construct analyze strongly consistent secondor... 1 0 0 0 0 0
6652 Classification of $δ(2,n-2)$-ideal Lagrangian ... proven chen f dillen j van der veken l vrancke... 0 0 1 0 0 0
6653 Robust stability analysis of DC microgrids wit... paper studies stability analysis dc microgrids... 0 0 1 0 0 0
6654 Dimensional Analysis in Economics: A Study of ... fundamental purpose present research article i... 0 0 0 0 0 1
6655 A high precision semi-analytic mass function paper extending past works del popolo show hig... 0 1 0 0 0 0
6656 Fast Compressed Self-Indexes with Deterministi... introduce compressed suffix array representati... 1 0 0 0 0 0
6657 Solvability of the operator Riccati equation i... consider bounded block operator matrix form ll... 0 0 1 0 0 0
6658 Comparison results for first order linear oper... work devoted study first order operator xtmxt ... 0 0 1 0 0 0
6659 A remark on oscillatory integrals associated w... prove l bound oscillatory integral associated ... 0 0 1 0 0 0
6660 Quantitative stochastic homogenization and reg... develop quantitative theory stochastic homogen... 0 0 1 0 0 0
6661 On the periodicity problem of residual r-Fubin... positive integer r rfubini number parameter n ... 0 0 1 0 0 0
6662 Boundedness of the Bergman projection on gener... paper solve problem posed h bommierhato engli ... 0 0 1 0 0 0
6663 Support Vector Machines and generalisation in HEP review concept support vector machines svms di... 0 1 0 0 0 0
6664 A sequent calculus for the Tamari order introduce sequent calculus simple restriction ... 1 0 1 0 0 0
6665 A Measurement of CMB Cluster Lensing with SPT ... clusters galaxies gravitationally lens cosmic ... 0 1 0 0 0 0
6666 Seebeck Effect in Nanoscale Ferromagnets present theory seebeck effect nanoscale ferrom... 0 1 0 0 0 0
6667 Fast Asymmetric Fronts Propagation for Image S... paper introduce generalized asymmetric fronts ... 1 0 0 0 0 0
6668 Efficient injection from large telescopes into... photonic technologies offer numerous advantage... 0 1 0 0 0 0
6669 An upwind method for genuine weakly hyperbolic... article attempted develop upwind scheme based ... 0 0 1 0 0 0
6670 Semi-tied Units for Efficient Gating in LSTM a... gating key technique used integrating informat... 0 0 0 1 0 0
6671 A step towards Twist Conjecture assumption defining graph coxeter group admits... 0 0 1 0 0 0
6672 Achieveing reliable UDP transmission at 10 Gb/... user datagram protocol udp commonly used proto... 1 1 0 0 0 0
6673 Epidemic Threshold in Continuous-Time Evolving... current understanding critical outbreak condit... 0 1 0 0 0 0
6674 Demo Abstract: CDMA-based IoT Services with Sh... vision deployment massive internetofthings iot... 1 0 0 0 0 0
6675 Can Two-Way Direct Communication Protocols Be ... consider attacks twoway quantum key distributi... 1 0 0 0 0 0
6676 Using Deep Neural Network Approximate Bayesian... present new method approximate posterior proba... 0 0 0 1 0 0
6677 Simple Classification using Binary Data binary onebit representations data arise natur... 1 0 0 1 0 0
6678 Unstable normalized standing waves for the spa... stationary nonlinear schrdinger equation delta... 0 0 1 0 0 0
6679 Inverse regression for ridge recovery: A data-... parameter reduction enable otherwise infeasibl... 0 0 1 0 0 0
6680 Thermodynamics of Higher Order Entropy Correct... paper consider higher order correction entropy... 0 1 0 0 0 0
6681 Robust, high brightness, degenerate entangled ... report compact simple robust high brightness e... 0 1 0 0 0 0
6682 Emergence of superconductivity in the cuprates... pivotal step toward understanding unconvention... 0 1 0 0 0 0
6683 Exploiting Spatial Degrees of Freedom for High... propose demonstrate ultrasonic communication l... 1 1 0 0 0 0
6684 Global sensitivity analysis in the context of ... global sensitivity analysis aims determining u... 0 0 0 1 0 0
6685 Unexpected Enhancement of Three-Dimensional Lo... report inelastic neutron scattering measuremen... 0 1 0 0 0 0
6686 Agile Software Development Methods: Review and... agile denoting quality agile readiness motion ... 1 0 0 0 0 0
6687 Deep Learning: A Bayesian Perspective deep learning form machine learning nonlinear ... 1 0 0 1 0 0
6688 Tunnel-injected sub-260 nm ultraviolet light e... report tunnelinjected deep ultraviolet light e... 0 1 0 0 0 0
6689 Three-dimensional image reconstruction in J-PE... present method preliminary results image recon... 0 1 0 0 0 0
6690 Two-component domain decomposition scheme with... iterationfree method domain decomposition cons... 1 0 0 0 0 0
6691 On the representation of finite convex geometr... recently richter rogers proved convex geometry... 0 0 1 0 0 0
6692 Resolving ultrafast exciton migration in organ... effectiveness molecularbased light harvesting ... 0 1 0 0 0 0
6693 Transfer Learning across Low-Resource, Related... present simple method improve neural translati... 1 0 0 0 0 0
6694 Dynamical correlations in the electronic struc... using local density approximation plus dynamic... 0 1 0 0 0 0
6695 A Van-Der-Waals picture for metabolic networks... work maximum entropy distributions space stead... 0 1 0 0 0 0
6696 Robust Parameter Estimation of Regression Mode... paper consider linear regression model arp err... 0 0 0 1 0 0
6697 Measuring filament orientation: a new quantita... relative orientation filamentary structures mo... 0 1 0 0 0 0
6698 Controlled dynamic screening of excitonic comp... report combined theoreticalexperimental study ... 0 1 0 0 0 0
6699 Motions about a fixed point by hypergeometric ... study four problems dynamics body moving fixed... 0 0 1 0 0 0
6700 Spatial solitons in thermo-optical media from ... analyze theoretically schrodingerpoisson equat... 0 1 0 0 0 0
6701 Instrument-Armed Bandits extend classic multiarmed bandit mab model set... 1 0 0 1 0 0
6702 Deep learning Inversion of Seismic Data paper propose new method tackle mapping challe... 1 0 0 0 0 0
6703 Nopol: Automatic Repair of Conditional Stateme... propose nopol approach automatic repair buggy ... 1 0 0 0 0 0
6704 Parametric geometry of numbers in function fields parametric geometry numbers new theory recentl... 0 0 1 0 0 0
6705 Refined open intersection numbers and the Kont... study intersection theory moduli space riemann... 0 0 1 0 0 0
6706 SEIRS epidemics in growing populations seirs epidemic disease fatalities introduced g... 0 1 0 0 0 0
6707 A Multi-task Selected Learning Approach for So... paper studies new type bin packing problem bpp... 0 0 0 1 0 0
6708 Use of Docker for deployment and testing of as... describe preliminary investigations using dock... 1 1 0 0 0 0
6709 Label Embedding Network: Learning Label Repres... propose method called label embedding network ... 1 0 0 0 0 0
6710 On the Performance of Multi-Instrument Solar F... current fleet spacebased solar observatories o... 0 1 0 0 0 0
6711 A Feature Complete SPIKE Banded Algorithm and ... new features enhancements spike banded solver ... 1 0 0 0 0 0
6712 Dark Matter in the Local Group of Galaxies describe neutrino flavor e electron u muon tau... 0 1 0 0 0 0
6713 Effective Extensible Programming: Unleashing J... gpus accelerators popular devices accelerating... 1 0 0 0 0 0
6714 Finite Time Adaptive Stabilization of LQ Systems stabilization linear systems unknown dynamics ... 1 0 0 1 0 0
6715 On the composition of Berezin-Toeplitz operato... compute second coefficient composition two ber... 0 0 1 0 0 0
6716 Maximum and minimum operators of convex integr... given convex integrands gammai snto mathbbr fu... 0 0 1 0 0 0
6717 Approximate Kernel PCA Using Random Features: ... kernel methods powerful learning methodologies... 0 0 1 1 0 0
6718 A Heuristic Search Algorithm Using the Stabili... paper presents nonmanual design engineering me... 1 0 0 0 0 0
6719 SEDIGISM: Structure, excitation, and dynamics ... origin lifecycle molecular clouds still poorly... 0 1 0 0 0 0
6720 Imitating Driver Behavior with Generative Adve... ability accurately predict simulate human driv... 1 0 0 0 0 0
6721 Topological semimetals with double-helix nodal... topological nodal line semimetals characterize... 0 1 0 0 0 0
6722 Artificial Intelligence Assisted Power Grid Ha... paper artificial intelligence based grid harde... 1 0 0 0 0 0
6723 Computing isomorphisms and embeddings of finit... let mathbbfq finite field given two irreducibl... 1 0 1 0 0 0
6724 Analysis of the current-driven domain wall mot... currentdriven domain wall motion ratchet memor... 0 1 0 0 0 0
6725 On the Hilbert coefficients, depth of associat... let rmathfrakm ddimensional cohenmacaulay loca... 0 0 1 0 0 0
6726 End-to-End ASR-free Keyword Search from Speech endtoend ee systems achieved competitive resul... 1 0 0 0 0 0
6727 Tracking performance in high multiplicities en... lhc run alice increase data taking rate signif... 0 1 0 0 0 0
6728 Schatten class Hankel and $\overline{\partial}... let omega csmooth bounded pseudoconvex domain ... 0 0 1 0 0 0
6729 Cross-Sectional Variation of Intraday Liquidit... composition natural liquidity changing time an... 0 0 0 0 0 1
6730 An investigation of pulsar searching technique... present indepth study behaviour fast folding a... 0 1 0 0 0 0
6731 Symplectic stability on manifolds with cylindr... famous result jurgen moser states symplectic f... 0 0 1 0 0 0
6732 Making the Dzyaloshinskii-Moriya interaction v... brillouin light spectroscopy powerful robust t... 0 1 0 0 0 0
6733 Approximate Collapsed Gibbs Clustering with Ex... develop framework approximating collapsed gibb... 0 0 0 1 0 0
6734 Thermal graphene metamaterials and epsilon-nea... key feature thermophotovoltaic tpv emitter enh... 0 1 0 0 0 0
6735 Ferroionic states in ferroelectric thin films electric coupling surface ions bulk ferroelect... 0 1 0 0 0 0
6736 Quantum Chebyshev's Inequality and Applications paper provide new quantum algorithms polynomia... 0 0 0 1 0 0
6737 Learning Convex Regularizers for Optimal Bayes... propose datadriven algorithm maximum posterior... 1 0 0 1 0 0
6738 On the $L^p$ boundedness of wave operators for... let hdeltav schrdinger operator lmathbb r real... 0 0 1 0 0 0
6739 Data-driven Advice for Applying Machine Learni... bioinformatics field grows must keep pace new ... 1 0 0 1 0 0
6740 Bivariate Causal Discovery and its Application... mainstream research genetics epigenetics imagi... 0 0 0 0 1 0
6741 Revisiting Distillation and Incremental Classi... one key differences learning mechanism humans ... 0 0 0 1 0 0
6742 Intuitive Hand Teleoperation by Novice Operato... humanintheloop manipulation useful autonomous ... 1 0 0 0 0 0
6743 A Hierarchical Bayes Approach to Adjust for Se... american cities devote significant resources i... 0 0 0 1 0 0
6744 Cavitation near the oscillating piezoelectric ... known gas bubbles surface bounding fluid flow ... 0 1 0 0 0 0
6745 Revised Note on Learning Algorithms for Quadra... inverse problems correspond certain type optim... 1 0 0 1 0 0
6746 On Completeness Results of Hoare Logic Relativ... general completeness problem hoare logic relat... 1 0 0 0 0 0
6747 Shift-Coupling of Random Rooted Graphs and Net... paper present result similar shiftcoupling res... 0 0 1 0 0 0
6748 Fast Automated Analysis of Strong Gravitationa... quantifying image distortions caused strong gr... 0 1 0 0 0 0
6749 Adversarial Examples, Uncertainty, and Transfe... deep neural networks dnns excellent representa... 0 0 0 1 0 0
6750 Elliptic regularization of the isometric immer... introduce elliptic regularization pde system r... 0 0 1 0 0 0
6751 A Debris Backwards Flow Simulation System for ... paper presents system based twoway particletra... 1 1 0 0 0 0
6752 End-to-End Task-Completion Neural Dialogue Sys... one major drawbacks modularized taskcompletion... 1 0 0 0 0 0
6753 Improving power of genetic association studies... extreme phenotype sampling selective genotypin... 0 0 0 1 0 0
6754 Energy network: towards an interconnected ener... fundamental theory energy networks different e... 0 1 0 0 0 0
6755 Invitation to Alexandrov geometry: CAT[0] spaces idea demonstrate beauty power alexandrov geome... 0 0 1 0 0 0
6756 Smoothing of transport plans with fixed margin... prove rigorously exact nelectron hohenbergkohn... 0 0 1 0 0 0
6757 The extension of some D(4)-pairs paper illustrate use results proving dtriple b... 0 0 1 0 0 0
6758 Standards for enabling heterogeneous IaaS clou... technology market continuing rapid growth phas... 1 0 0 0 0 0
6759 Grid-based Approaches for Distributed Data Min... data mining field important source largescale ... 1 0 0 0 0 0
6760 Transforming acoustic characteristics to decei... automatic speaker verification asv systems use... 1 0 0 0 0 0
6761 LoopInvGen: A Loop Invariant Generator based o... describe loopinvgen tool generating loop invar... 1 0 0 0 0 0
6762 Dimensional crossover of effective orbital dyn... topologically protected superfluid phases allo... 0 1 0 0 0 0
6763 Low frequency spectral energy distributions of... present lowfrequency spectral energy distribut... 0 1 0 0 0 0
6764 Scalable Spectrum Allocation and User Associat... scalable framework developed allocate radio re... 1 0 1 0 0 0
6765 On Geometry and Symmetry of Kepler Systems. I study kepler metrics kepler manifolds point vi... 0 0 1 0 0 0
6766 The collisional frequency shift of a trapped-i... collisions background gas perturb transition f... 0 1 0 0 0 0
6767 Continuity properties for Born-Jordan operator... show weyl symbol bornjordan operator class bor... 0 0 1 0 0 0
6768 IoT Data Analytics Using Deep Learning deep learning popular machine learning approac... 1 0 0 0 0 0
6769 Viscous Dissipation in One-Dimensional Quantum... develop theory viscous dissipation onedimensio... 0 1 0 0 0 0
6770 On the existence of homoclinic type solutions ... study existence homoclinic type solutions seco... 0 0 1 0 0 0
6771 Correcting Two Deletions and Insertions in Rac... racetrack memory nonvolatile memory engineered... 1 0 0 0 0 0
6772 Limits of Yang-Mills α-connections spirit recent work lamm malchiodi micallef set... 0 0 1 0 0 0
6773 Online Robust Principal Component Analysis wit... robust pca methods typically batch algorithms ... 1 0 0 1 0 0
6774 Reactive User Behavior and Mobility Models paper present set simulation models realistica... 1 0 0 0 0 0
6775 How production networks amplify economic growth technological improvement important cause long... 0 0 0 0 0 1
6776 The Minimal Resolution Conjecture on a general... musta given conjecture graded betti numbers mi... 0 0 1 0 0 0
6777 Exact density functional obtained via the Levy... stochastic minimization method realspace wavef... 0 1 0 0 0 0
6778 Compile-Time Symbolic Differentiation Using C+... template metaprogramming popular technique imp... 1 0 0 0 0 0
6779 On Multilingual Training of Neural Dependency ... show recently proposed neural dependency parse... 1 0 0 0 0 0
6780 Autocommuting probability of a finite group let g finite group autg automorphism group g a... 0 0 1 0 0 0
6781 Inside-Out Planet Formation. IV. Pebble Evolut... systems tightlypacked inner planets stips comm... 0 1 0 0 0 0
6782 SilhoNet: An RGB Method for 3D Object Pose Est... autonomous robot manipulation often involves e... 1 0 0 0 0 0
6783 Collapsed Tetragonal Phase Transition in LaRu$... structural properties larup external pressure ... 0 1 0 0 0 0
6784 Bayesian Nonparametric Unmixing of Hyperspectr... hyperspectral imaging important tool remote se... 1 0 0 0 0 0
6785 Dynamical control of electron-phonon interacti... work addresses onedimensional problem bloch el... 0 1 0 0 0 0
6786 Controlling the thermoelectric effect by mecha... thermoelectric voltage developed across atomic... 0 1 0 0 0 0
6787 The time geography of segregation during worki... understanding segregation essential develop pl... 1 0 0 1 0 0
6788 Improving Protein Gamma-Turn Prediction Using ... protein gammaturn prediction useful protein fu... 0 0 0 0 1 0
6789 Image transformations on locally compact spaces image defined set either open closed image tra... 0 0 1 1 0 0
6790 From Half-metal to Semiconductor: Electron-cor... performed electronic structure calculations ba... 0 1 0 0 0 0
6791 Non-exponential decoherence of radio-frequency... precision experiments search electric dipole m... 0 1 0 0 0 0
6792 On the fundamental group of semi-Riemannian ma... paper presents investigation relation positivi... 0 0 1 0 0 0
6793 Flow-Sensitive Composition of Thread-Modular A... propose constraintbased flowsensitive static a... 1 0 0 0 0 0
6794 Momentum Control of Humanoid Robots with Serie... humanoid robots may require degree compliance ... 1 0 1 0 0 0
6795 SRN: Side-output Residual Network for Object S... paper establish baseline object symmetry detec... 1 0 0 0 0 0
6796 Time-Optimal Trajectories of Generic Control-A... consider paper regularity problem timeoptimal ... 0 0 1 0 0 0
6797 Wikipedia for Smart Machines and Double Deep M... important breakthroughs data centric deep lear... 1 0 0 0 0 0
6798 A binary main belt comet asteroids primitive solar system bodies evolve... 0 1 0 0 0 0
6799 Dynamic Clustering Algorithms via Small-Varian... bayesian nonparametrics class probabilistic mo... 0 0 0 1 0 0
6800 Deep Depth From Focus depth focus dff one classical illposed inverse... 1 0 0 0 0 0
6801 Deep Text Classification Can be Fooled paper present effective method craft text adve... 1 0 0 0 0 0
6802 Two-Stream 3D Convolutional Neural Network for... remains challenge efficiently extract spatialt... 1 0 0 0 0 0
6803 Strong Bayesian Evidence for the Normal Neutri... configuration three neutrino masses take two f... 0 1 0 0 0 0
6804 A fast reconstruction algorithm for geometric ... paper concerned detection objects immersed ani... 0 0 1 0 0 0
6805 Tomographic X-ray data of carved cheese documentation tomographic xray data carved che... 0 1 0 0 0 0
6806 SMARTies: Sentiment Models for Arabic Target E... consider entitylevel sentiment analysis arabic... 1 0 0 0 0 0
6807 Quantile Markov Decision Process paper consider problem optimizing quantiles cu... 1 0 0 0 0 0
6808 Explaining the elongated shape of 'Oumuamua by... photometry minor body extrasolar origin u oumu... 0 1 0 0 0 0
6809 Generation of $1/f$ noise motivated by a model... present model generate power spectrum noise in... 0 1 0 0 0 0
6810 On the lattice of the $σ$-permutable subgroups... let sigma sigmai iin partition set primes bbbp... 0 0 1 0 0 0
6811 The geometry of the generalized algebraic Ricc... paper analyzes properties solutions generalize... 0 0 1 0 0 0
6812 High Order Numerical Integrators for Relativis... paper extend several time reversible numerical... 0 1 0 0 0 0
6813 Astrophotonics: molding the flow of light in a... since emergence two decades ago astrophotonics... 0 1 0 0 0 0
6814 Towards quantitative methods to assess network... assessing generative models easy task generati... 1 0 0 0 0 0
6815 Soliton groups as the reason for extreme stati... results probabilistic analysis direct numerica... 0 1 0 0 0 0
6816 Stack Overflow: A Code Laundering Platform? developers use question answer qa websites exc... 1 0 0 0 0 0
6817 New Abilities and Limitations of Spectral Grap... spectral based heuristics belong wellknown com... 1 0 0 0 0 0
6818 Deep Residual Learning for Accelerated MRI usi... accelerated magnetic resonance mr scan acquisi... 0 0 0 1 0 0
6819 Quantification of market efficiency based on i... since question whether markets efficient contr... 0 0 0 0 0 1
6820 A critical analysis of resampling strategies f... analyze performance different resampling strat... 0 0 1 1 0 0
6821 Geometry of the free-sliding Bernoulli beam variational problem comes boundary conditions ... 0 0 1 0 0 0
6822 Note on equivalences for degenerations of Cala... note studies equivalencies among convergences ... 0 0 1 0 0 0
6823 Improving DNN-based Music Source Separation us... music source separation deep neural networks t... 1 0 0 0 0 0
6824 Rapid, User-Transparent, and Trustworthy Devic... mobile crowdsourcing promising service paradig... 1 0 0 0 0 0
6825 liquidSVM: A Fast and Versatile SVM package liquidsvm package written c provides svmtype s... 0 0 0 1 0 0
6826 Thermalizing sterile neutrino dark matter sterile neutrinos produced oscillations well m... 0 1 0 0 0 0
6827 Information Elicitation for Bayesian Auctions paper design information elicitation mechanism... 1 0 0 0 0 0
6828 Partially chaotic orbits in a perturbed cubic ... three types orbits theoretically possible auto... 0 1 0 0 0 0
6829 Measurable process selection theorem and non-a... semiprocess analog semiflow nonautonomous diff... 0 1 1 0 0 0
6830 Just-infinite C*-algebras and their invariants justinfinite calgebras ie infinite dimensional... 0 0 1 0 0 0
6831 A Large-scale Dataset and Benchmark for Simila... trademark retrieval tr become important yet ch... 1 0 0 0 0 0
6832 Tracing Networks of Knowledge in the Digital Age emergence new digital technologies allowed stu... 1 1 0 0 0 0
6833 Observational evidence of galaxy assembly bias analyze spectra luminous red galaxies lrgs ste... 0 1 0 0 0 0
6834 Data-Driven Tree Transforms and Metrics consider analysis high dimensional data given ... 1 0 0 1 0 0
6835 NotiMind: Utilizing Responses to Smart Phone N... todays mobile phone users faced large numbers ... 1 0 0 0 0 0
6836 Aktuelle Entwicklungen in der Automatischen Mu... paper present current trends realtime music tr... 1 0 0 0 0 0
6837 Blind Demixing and Deconvolution at Near-Optim... consider simultaneous blind deconvolution r so... 1 0 0 0 0 0
6838 A Visualization of the Classical Musical Tradi... study around musical compositions western clas... 0 0 0 1 0 0
6839 Multivariate Locally Stationary Wavelet Proces... paper describes r package mvlsw package contai... 0 0 0 1 0 0
6840 Using Posters to Recommend Anime and Mangas in... item coldstart classical issue recommender sys... 1 0 0 1 0 0
6841 Generalized least squares can overcome the cri... order sample marginalized andor hardtoreach po... 0 0 1 1 0 0
6842 Electron-Hole Symmetry Breaking in Charge Tran... graphitic nitrogendoped graphene excellent pla... 0 1 0 0 0 0
6843 Micro-sized cold atmospheric plasma source for... microsized cold atmospheric plasma ucap develo... 0 0 0 0 1 0
6844 How Many Random Seeds? Statistical Power Analy... consistently checking statistical significance... 0 0 0 1 0 0
6845 Training Quantized Nets: A Deeper Understanding currently deep neural networks deployed lowpow... 1 0 0 1 0 0
6846 Some Sharpening and Generalizations of a resul... let pzaazazazcdotsanzn polynomial degree n riv... 0 0 1 0 0 0
6847 Computational Aided Design for Generating a Mo... developing appropriate design process conceptu... 1 0 0 0 0 0
6848 Reaction-Diffusion Systems in Epidemiology key problem modelling evolution dynamics infec... 0 0 1 0 0 0
6849 Is charge order induced near an antiferromagne... investigate interplay charge order superconduc... 0 1 0 0 0 0
6850 Commissioning and performance results of the W... prototype imaging spectrograph coronagraphic e... 0 1 0 0 0 0
6851 Metal nanospheres under intense continuous wav... show standard perturbative ie cubic descriptio... 0 1 0 0 0 0
6852 Revealing strong bias in common measures of ga... accurate measurement galaxy structures prerequ... 0 1 0 0 0 0
6853 Behind Every Great Tree is a Great (Phylogenet... francis steel shown exists nontrivial networks... 0 0 1 0 0 0
6854 Cosmic-ray induced destruction of CO in star-f... explore effects expected higher cosmic ray cr ... 0 1 0 0 0 0
6855 News Session-Based Recommendations using Deep ... news recommender systems aimed personalize use... 0 0 0 1 0 0
6856 Online Nonparametric Anomaly Detection based o... consider online nonparametric detection abrupt... 0 0 0 1 0 0
6857 Learning latent structure of large random graphs paper estimate distribution hidden nodes weigh... 0 0 1 1 0 0
6858 Loop Tiling in Large-Scale Stencil Codes at Ru... key common bottleneck stencil codes data movem... 1 0 0 0 0 0
6859 Second differentials in the Quillen spectral s... algebraic variety x introduce generalized firs... 0 0 1 0 0 0
6860 General Dynamics of Spinors paper consider general twistedcurved spacetime... 0 1 0 0 0 0
6861 PT-Spike: A Precise-Time-Dependent Single Spik... one exciting advancements ai last decade wide ... 0 0 0 0 1 0
6862 Learning to Represent Edits introduce problem learning distributed represe... 1 0 0 0 0 0
6863 Semiclassical Prediction of Large Spectral Flu... plenty results obtained singleparticle quantum... 0 1 0 0 0 0
6864 If it ain't broke, don't fix it: Sparse metric... many modern dataintensive computational proble... 1 0 0 1 0 0
6865 Optimal one-shot quantum algorithm for EQUALIT... study computation complexity boolean functions... 1 0 0 0 0 0
6866 Photon-gated spin transistor spinpolarized fieldeffect transistor spinfet d... 0 1 0 0 0 0
6867 Polarisation of submillimetre lines from inter... magnetic fields play important roles many astr... 0 1 0 0 0 0
6868 Two bosonic quantum walkers in one-dimensional... dynamical properties two bosonic quantum walke... 0 1 0 0 0 0
6869 Photometric Redshifts with the LSST: Evaluatin... paper present characterize nearestneighbors co... 0 1 0 0 0 0
6870 Modelling diverse sources of Clostridium diffi... clostridium difficile infections cdis affect p... 0 0 0 0 1 0
6871 Quivers with potentials for cluster varieties ... let c simply laced generalized cartan matrix g... 0 0 1 0 0 0
6872 Effect of stellar flares on the upper atmosphe... stellar flares frequent occurrence young lowma... 0 1 0 0 0 0
6873 Gross-Hopkins Duals of Higher Real K-theory Sp... determine grosshopkins duals certain higher re... 0 0 1 0 0 0
6874 A Projection Method for Metric-Constrained Opt... outline new approach solving optimization prob... 1 0 0 1 0 0
6875 Calibrating the Planck Cluster Mass Scale with... measure planck cluster mass bias using dynamic... 0 1 0 0 0 0
6876 Curie: Policy-based Secure Data Exchange data sharing among partnersusers organizations... 1 0 0 0 0 0
6877 Boundedness in a fully parabolic chemotaxis sy... paper study zeroflux chemotaxissystem beginequ... 0 0 1 0 0 0
6878 Gemini/GMOS Transmission Spectral Survey: Comp... present complete optical transmission spectrum... 0 1 0 0 0 0
6879 From Infinite to Finite Programs: Explicit Err... consider linear programming lp problems infini... 1 0 1 0 0 0
6880 An overview and comparative analysis of Recurr... key component forecasting demand consumption r... 1 0 0 0 0 0
6881 Periods of abelian differentials and dynamics given closed oriented surface describe cohomol... 0 0 1 0 0 0
6882 Existence of regular solutions for a certain t... concerned existence regular solutions nonnewto... 0 0 1 0 0 0
6883 Multiferroic Quantum Criticality zerotemperature limit continuous phase transit... 0 1 0 0 0 0
6884 Carbon Nanotube Wools Directly from CO2 By Mol... climate mitigation comprehensive solution pres... 0 1 0 0 0 0
6885 Rock-Paper-Scissors Random Walks on Temporal M... study diffusion multilayer network contact dyn... 1 0 0 0 0 0
6886 Marginally compact fractal trees with semiflex... study marginally compact macromolecular trees ... 0 1 0 0 0 0
6887 Deep Neural Networks for Physics Analysis on l... considerable recent activity applying deep con... 1 0 0 0 0 0
6888 Time-frequency analysis of ship wave patterns ... spectrogram ship wake heat map visualises time... 0 1 0 0 0 0
6889 HARE: Supporting efficient uplink multi-hop co... emergence lowpower wide area networks lpwans n... 1 0 0 0 0 0
6890 Tensor tomography in periodic slabs xray transform periodic slab timesmathbb tn ng... 0 0 1 0 0 0
6891 Central limit theorem for linear spectral stat... paper consider separable covariance model play... 0 0 1 1 0 0
6892 Malnormality and join-free subgroups in right-... paper prove finitely generated malnormal subgr... 0 0 1 0 0 0
6893 Mapping the Americanization of English in Spac... global political preeminence gradually shifted... 1 0 0 1 0 0
6894 Robot Localisation and 3D Position Estimation ... many works collaborative robotics humanrobot i... 1 0 0 0 0 0
6895 Meromorphic Jacobi Forms of Half-Integral Inde... work consider association meromorphic jacobi f... 0 0 1 0 0 0
6896 Active Hypothesis Testing: Beyond Chernoff-Stein active hypothesis testing problem formulated p... 1 0 1 1 0 0
6897 Data-driven regularization of Wasserstein bary... present framework simultaneously align smooth ... 0 0 0 1 0 0
6898 BCS quantum critical phenomena theoretically recently showed scaling relation... 0 1 0 0 0 0
6899 Action preserving (weak) topologies on the cat... let mathcalc finitely complete small category ... 0 0 1 0 0 0
6900 Learning to detect chest radiographs containin... machine learning approaches hold great potenti... 0 0 0 1 0 0
6901 New conformal map for the Sinc approximation f... sinc approximation shown high efficiency numer... 1 0 0 0 0 0
6902 Evidence synthesis for stochastic epidemic models recent years role epidemic models informing pu... 0 0 0 1 0 0
6903 The multi-resonant Lugiato-Lefever model introduce new model describing multiple resona... 0 1 0 0 0 0
6904 Scalable Bayesian shrinkage and uncertainty qu... bayesian shrinkage methods generated lot recen... 0 0 0 1 0 0
6905 Inclusion and Majorization Properties of Certa... object present paper study certain properties ... 0 0 1 0 0 0
6906 Tameness in least fixed-point logic and McColm... investigate fundamental modeltheoretic dividin... 1 0 1 0 0 0
6907 Enhanced activity of the Southern Taurids in 2... paper presents analysis polish fireball networ... 0 1 0 0 0 0
6908 Comparing anticyclotomic Selmer groups of posi... study variation iwasawa invariants anticycloto... 0 0 1 0 0 0
6909 Predicting the Results of LTL Model Checking u... paper study predict results ltl model checking... 1 0 0 0 0 0
6910 Magnetoelectric properties of the layered room... properties two thcrsitype materials discussed ... 0 1 0 0 0 0
6911 Discrete Spectrum Reconstruction using Integra... inverse problem spectroscopy considered object... 0 0 1 0 0 0
6912 Tackling Over-pruning in Variational Autoencoders variational autoencoders vae directed generati... 1 0 0 0 0 0
6913 Elastic collision and molecule formation of sp... consider statics dynamics stable mobile threed... 0 1 0 0 0 0
6914 From Query-By-Keyword to Query-By-Example: Lin... one key challenge talent search translate comp... 1 0 0 0 0 0
6915 Cyber-Physical System for Energy-Efficient Sta... environmental impacts medium large scale build... 1 0 0 0 0 0
6916 On Bayesian Exponentially Embedded Family for ... paper derive bayesian model order selection ru... 0 0 0 1 0 0
6917 Estimating solar flux density at low radio fre... sky models used past calibrate individual low ... 0 1 0 0 0 0
6918 Revisiting Activation Regularization for Langu... recurrent neural networks rnns serve fundament... 1 0 0 0 0 0
6919 Non-equilibrium time dynamics of genetic evolu... biological systems typically highly open noneq... 0 0 0 0 1 0
6920 On the scaling of entropy viscosity in high or... work outline entropy viscosity method discuss ... 0 0 1 0 0 0
6921 An Architecture Combining Convolutional Neural... convolutional neural networks cnns similar ord... 1 0 0 1 0 0
6922 Derivation of the cutoff length from the quant... ultraviolet selfinteraction energies field the... 0 1 0 0 0 0
6923 Exact MAP Inference by Avoiding Fractional Ver... given graphical model one essential problem ma... 1 0 0 1 0 0
6924 Study on a Poisson's Equation Solver Based On ... work investigated feasibility applying deep le... 1 1 0 0 0 0
6925 On the compressibility of the transition-metal... dtransitionmetals carbides zrc nbc nitrides zr... 0 1 0 0 0 0
6926 On multifractals: a non-linear study of actigr... work aimed determine characteristics activity ... 0 1 0 1 0 0
6927 Exact semi-separation of variables in waveguid... series expansions unknown fields phisumvarphin... 0 0 1 0 0 0
6928 Universality for eigenvalue algorithms on samp... prove universal limit theorem halting time ite... 0 0 1 0 0 0
6929 Dynamical Isometry is Achieved in Residual Net... demonstrate residual neural networks resnets d... 0 0 0 1 0 0
6930 Similarity-based Multi-label Learning multilabel classification important learning p... 1 0 0 1 0 0
6931 Burst Synchronization in A Scale-Free Neuronal... concerned burst synchronization bs related neu... 0 0 0 0 1 0
6932 The Arrow of Time in the collapse of collision... collapse collisionless selfgravitating system ... 0 1 0 0 0 0
6933 Numerical Observation of Parafermion Zero Mode... possibility realizing nonabelian excitations n... 0 1 0 0 0 0
6934 Stochastic Optimal Control of Epidemic Process... approach development models control strategies... 1 0 0 0 0 0
6935 Improved upper bounds in the moving sofa problem moving sofa problem posed l moser asks planar ... 0 0 1 0 0 0
6936 Neural correlates of episodic memory in the Me... introductionthe free cued selective reminding ... 0 0 0 0 1 0
6937 Neighborhood-Based Label Propagation in Large ... understanding protein function one keys unders... 1 0 0 0 0 0
6938 Compressive Sensing with Cross-Validation and ... compressive sensing powerful technique recover... 0 1 0 1 0 0
6939 Closure Properties in the Class of Multiple Co... show class groups kmultiple contextfree word p... 1 0 1 0 0 0
6940 Random gauge models of the superconductor-insu... study numerically superconductorinsulator tran... 0 1 0 0 0 0
6941 Extended quantum field theory, index theory an... use techniques functorial quantum field theory... 0 1 1 0 0 0
6942 Learning Graphical Models Using Multiplicative... give simple multiplicativeweight update algori... 1 0 1 1 0 0
6943 Neutron response of PARIS phoswich detector studied neutron response paris phoswich labrce... 0 1 0 0 0 0
6944 Swarm robotics in wireless distributed protoco... mine detection unexplored area optimization pr... 1 0 0 0 0 0
6945 A polynomial time knot polynomial present strongest known knot invariant compute... 0 0 1 0 0 0
6946 Corruption-free scheme of entering into contra... main purpose paper formalize modelling process... 0 0 0 0 0 1
6947 Geometric Biplane Graphs I: Maximal Graphs study biplane graphs drawn finite planar point... 1 0 0 0 0 0
6948 A Multiobjective Approach to Multimicrogrid Sy... main goal paper design market operator mo dist... 1 0 0 0 0 0
6949 Neural Architecture for Question Answering Usi... web search entityseeking queries often trigger... 1 0 0 0 0 0
6950 Calculating the closed ordinal Ramsey number $... show rclomegacdot equal omegacdot 0 0 1 0 0 0
6951 A spatially explicit capture recapture model f... spatially explicit capture recapture secr mode... 0 0 0 1 0 0
6952 Unsupervised Anomaly Detection with Generative... obtaining models capture imaging markers relev... 1 0 0 0 0 0
6953 ZOOpt: Toolbox for Derivative-Free Optimization recent advances derivativefree optimization al... 0 0 0 1 0 0
6954 Non-Gaussian Stochastic Volatility Model with ... work propose model estimating volatility finan... 0 0 0 0 0 1
6955 Smart Guiding Glasses for Visually Impaired Pe... overcome travelling difficulty visually impair... 1 0 0 0 0 0
6956 Recurrent Poisson Factorization for Temporal R... poisson factorization probabilistic model user... 1 0 0 1 0 0
6957 Categorification of sign-skew-symmetric cluste... using unfolding method given citehl prove conj... 0 0 1 0 0 0
6958 Capacitated Bounded Cardinality Hub Routing Pr... paper address bounded cardinality hub location... 0 0 1 0 0 0
6959 Large Kernel Matters -- Improve Semantic Segme... one recent trends network architec ture design... 1 0 0 0 0 0
6960 Is ram-pressure stripping an efficient mechani... study gas sample galaxies e msun clusters obta... 0 1 0 0 0 0
6961 Hidden Fluid Mechanics: A Navier-Stokes Inform... present hidden fluid mechanics hfm physics inf... 0 0 0 1 0 0
6962 Testing Network Structure Using Relations Betw... study problem testing structure networks using... 1 0 1 1 0 0
6963 A 3D MHD simulation of SN 1006: a polarized em... three dimensional magnetohydrodynamical simula... 0 1 0 0 0 0
6964 Hierarchical Detail Enhancing Mesh-Based Shape... automatic meshbased shape generation great int... 1 0 0 0 0 0
6965 Combined analysis of galaxy cluster number cou... sunyaevzeldovich sz effect powerful probe evol... 0 1 0 0 0 0
6966 On short cycle enumeration in biregular bipart... number recent works used variety combinatorial... 1 0 1 0 0 0
6967 Exhaled breath barbotage: a new method for pul... exhaled air contains aerosol submicron droplet... 0 1 0 0 0 0
6968 A Computational Study of the Role of Tonal Ten... expressive variations tempo dynamics important... 1 0 0 0 0 0
6969 On the least upper bound for the settling time... paper deals convergence time analysis class fi... 1 0 0 0 0 0
6970 Self-organization and the Maximum Empower Prin... selforganization process order whole system ar... 1 1 0 0 0 0
6971 Nonequilibrium Work and its Hamiltonian Connec... nonequilibrium workhamiltonian connection micr... 0 1 0 0 0 0
6972 Thick Subcategories of the stable category of ... study thick subcategories defined modules comp... 0 0 1 0 0 0
6973 Planet-driven spiral arms in protoplanetary di... examine whether various characteristics planet... 0 1 0 0 0 0
6974 Ideal structure and pure infiniteness of ample... paper study ideal structure reduced calgebras ... 0 0 1 0 0 0
6975 Nonparametric mean curvature type flows of gra... paper study nonparametric mean curvature type ... 0 0 1 0 0 0
6976 Multilevel Sequential Monte Carlo with Dimensi... article develop new sequential monte carlo smc... 0 0 0 1 0 0
6977 Spontaneous symmetry breaking as a triangular ... formulate nambugoldstone theorem triangular re... 0 1 0 0 0 0
6978 Differentially Private Dropout large data collections required training neura... 1 0 0 1 0 0
6979 On (in)stabilities of perturbations in mimetic... usually applying mimetic model early universe ... 0 1 0 0 0 0
6980 Quantitative Connection Between Ensemble Therm... equilibrium thermodynamic kinetic information ... 0 1 0 0 0 0
6981 Non-parametric estimation of Jensen-Shannon Di... generative adversarial networks gans become wi... 0 0 0 1 0 0
6982 METAGUI 3: a graphical user interface for choo... molecular dynamics md simulations allow explor... 0 1 0 0 0 0
6983 Model compression as constrained optimization,... consider problem deep neural net compression q... 1 0 1 1 0 0
6984 Three Skewed Matrix Variate Distributions threeway data conveniently modelled using matr... 0 0 1 1 0 0
6985 Anticipating Persistent Infection explore emergence persistent infection closed ... 0 0 0 0 1 0
6986 The first global-scale 30 m resolution mangrov... highresolution canopy height map exists global... 0 1 0 0 0 0
6987 Direct Estimation of Regional Wall Thicknesses... accurate estimation regional wall thicknesses ... 1 0 0 0 0 0
6988 Non-dipole recollision-gated double ionization... using threedimensional semiclassical model stu... 0 1 0 0 0 0
6989 A Survey of Active Attacks on Wireless Sensor ... lately wireless sensor networks wsns become em... 1 0 0 0 0 0
6990 A Deterministic Nonsmooth Frank Wolfe Algorith... present new frankwolfe fw type algorithm appli... 1 0 0 1 0 0
6991 The problem of boundary conditions for the sha... problem choice boundary conditions discussed c... 0 1 0 0 0 0
6992 The exit time finite state projection scheme: ... introduce exit time finite state projection et... 0 0 0 0 1 0
6993 Ontological Multidimensional Data Models and C... data quality assessment data cleaning contextd... 1 0 0 0 0 0
6994 Time-Assisted Authentication Protocol authentication first step toward establishing ... 1 0 0 0 0 0
6995 Improved Bounds for Online Dominating Sets of ... online dominating set problem online variant m... 1 0 0 0 0 0
6996 Systematical design and three-dimensional simu... shanghai coherent light facility sclf quasicw ... 0 1 0 0 0 0
6997 Who is the infector? Epidemic models with symp... role asymptomatically infected individuals pla... 0 0 0 0 1 0
6998 Calibration of a two-state pitch-wise HMM meth... many methods automatic music transcription inv... 1 0 0 1 0 0
6999 Action-depedent Control Variates for Policy Op... policy gradient methods achieved remarkable su... 1 0 0 1 0 0
7000 Even denominator fractional quantum Hall state... magnetic fields quench kinetic energy two dime... 0 1 0 0 0 0
7001 Reverse approximation of gradient flows as Min... consider cauchy problem gradient flow beginequ... 0 0 1 0 0 0
7002 Linking de novo assembly results with long DNA... currently thirdgeneration sequencing technique... 0 0 0 0 1 0
7003 ReBNet: Residual Binarized Neural Network paper proposes rebnet endtoend framework train... 1 0 0 0 0 0
7004 Prime geodesic theorem for the modular surface generalized lindelf hypothesis exponent error ... 0 0 1 0 0 0
7005 Multiple regimes and coalescence timescales fo... discuss latest results numerical simulations f... 0 1 0 0 0 0
7006 The Molecular Gas Environment in the 20 km s$^... recently reported population protostellar cand... 0 1 0 0 0 0
7007 Spatio-Temporal Backpropagation for Training H... compared artificial neural networks anns spiki... 1 0 0 1 0 0
7008 Inverse of a Special Matrix and Application matrix inversion interesting topic algebra mat... 1 0 0 0 0 0
7009 Incompressible fluid problems on embedded surf... governing equations motion viscous incompressi... 0 1 1 0 0 0
7010 Gaiotto's Lagrangian subvarieties via loop groups purpose note give simple proof fact certain su... 0 0 1 0 0 0
7011 Geohyperbolic Routing and Addressing Schemes key requirement routing telecommunication netw... 1 1 0 0 0 0
7012 Conical: an extended module for computing a nu... conical functions appear large number applicat... 1 0 1 0 0 0
7013 Online to Offline Conversions, Universality an... present approach towards convex optimization r... 1 0 1 1 0 0
7014 Kondo Length in Bosonic Lattices motivated fact lowenergy properties kondo mode... 0 1 0 0 0 0
7015 RVP-FLMS : A Robust Variable Power Fractional ... paper propose adaptive framework variable powe... 0 0 1 1 0 0
7016 Dichotomy for Digraph Homomorphism Problems (t... update issue found correctness algorithm worki... 1 0 0 0 0 0
7017 Macro-molecular data storage with petabyte/cm^... digital information encoded buildingblock sequ... 1 1 0 0 0 0
7018 Design and implementation of lighting control ... artificial lighting responsible large portion ... 1 0 0 0 0 0
7019 Independence in generic incidence structures study theory tmn existentially closed incidenc... 0 0 1 0 0 0
7020 Propagation of regularity for the MHD system i... study problem propagation regularity solutions... 0 1 1 0 0 0
7021 On the link between atmospheric cloud paramete... herewith attempt investigate cosmic rays behav... 0 1 0 0 0 0
7022 To Compress, or Not to Compress: Characterizin... recent advances deep neural networks dnns make... 1 0 0 0 0 0
7023 Universal Scaling Laws for Correlation Spreadi... study spreading information wide class quantum... 0 1 0 0 0 0
7024 Examples of plane rational curves with two Gal... present four new examples plane rational curve... 0 0 1 0 0 0
7025 Optimal Kullback-Leibler Aggregation in Mixtur... study maximum likelihood estimator density n i... 0 0 1 1 0 0
7026 Non-asymptotic theory for nonparametric testing consider nonparametric testing nonasymptotic f... 0 0 1 1 0 0
7027 Classification of out-of-time-order correlators space npoint correlation functions possible ti... 0 1 0 0 0 0
7028 Hierarchical Reinforcement Learning: Approxima... work provide theoretical guarantees reward dec... 0 0 0 1 0 0
7029 End-to-End Musical Key Estimation Using a Conv... present endtoend system musical key estimation... 1 0 0 0 0 0
7030 Approximate Optimal Designs for Multivariate P... introduce new approach aiming computing approx... 0 0 1 1 0 0
7031 Determinants of public cooperation in multiple... synergies evolutionary game theory statistical... 1 1 0 0 0 0
7032 Variational Encoding of Complex Dynamics often analysis timedependent chemical biophysi... 0 1 0 1 0 0
7033 Accelerating Imitation Learning with Predictiv... sample efficiency critical solving realworld r... 0 0 0 1 0 0
7034 Neural Networks for Predicting Algorithm Runti... many stateoftheart algorithms solving hard com... 1 0 0 0 0 0
7035 Large-scale Datasets: Faces with Partial Occlu... face detection methods relied face datasets tr... 1 0 0 0 0 0
7036 Small Hankel operators on generalized Fock spaces consider fock spaces fpellalpha entire functio... 0 0 1 0 0 0
7037 Efficient enumeration of solutions produced by... paper address problem generating elements obta... 1 0 0 0 0 0
7038 Compressive Sensing via Convolutional Factor A... solve compressive sensing problem via convolut... 1 0 0 1 0 0
7039 Exact Dimensionality Selection for Bayesian PCA present bayesian model selection approach esti... 0 0 1 1 0 0
7040 Multi-Dialect Speech Recognition With A Single... sequencetosequence models provide simple elega... 1 0 0 0 0 0
7041 Exponential convergence of testing error for s... consider binary classification problems positi... 1 0 0 1 0 0
7042 What is a hierarchically hyperbolic space? first part survey heuristic nontechnical discu... 0 0 1 0 0 0
7043 What makes a gesture a gesture? Neural signatu... previous work area gesture production made ass... 1 0 0 0 0 0
7044 Neural networks and rational functions neural networks rational functions efficiently... 1 0 0 1 0 0
7045 Local Structure Theorems for Erdos Renyi Graph... analyze local properties sparse erdosrenyi gra... 1 0 0 0 0 0
7046 DeepCloak: Masking Deep Neural Network Models ... recent studies shown deep neural networks dnn ... 1 0 0 0 0 0
7047 Automatic Pill Reminder for Easy Supervision paper present working model automatic pill rem... 1 0 0 0 0 0
7048 Chaotic dynamics of movements stochastic insta... registration tremor performed two groups subje... 0 0 0 0 1 0
7049 Deep Learning for Real Time Crime Forecasting accurate real time crime prediction fundamenta... 1 0 0 1 0 0
7050 Unpredictable sequences and Poincaré chaos make research chaos friendly discrete equation... 0 1 0 0 0 0
7051 Scaling of the Detonation Product State with R... submissions withdrawn arxiv administrators sub... 0 1 0 0 0 0
7052 Lumping of Degree-Based Mean Field and Pair Ap... contact processes form large highly interestin... 1 1 0 0 0 0
7053 Almost automorphic functions on the quantum ti... paper first propose two types concepts almost ... 0 0 1 0 0 0
7054 Stochastic Game in Remote Estimation under DoS... paper studies remote state estimation denialof... 1 0 0 0 0 0
7055 VLocNet++: Deep Multitask Learning for Semanti... semantic understanding localization fundamenta... 1 0 0 0 0 0
7056 On Decidability of the Ordered Structures of N... ordered structures natural integer rational re... 1 0 1 0 0 0
7057 Finite $p$-groups of conjugate type $\{ 1, p^3... classify finite pgroups upto isoclinism two co... 0 0 1 0 0 0
7058 Betting on Quantum Objects dutch book arguments applied beliefs outcomes ... 0 1 0 0 0 0
7059 Casimir-Polder size consistency -- a constrain... key goal quantum chemistry methods whether ab ... 0 1 0 0 0 0
7060 A combinatorial proof of Bass's determinant fo... give elementary combinatorial proof basss dete... 1 0 0 0 0 0
7061 Electron-Muon Ranger: hardware characterization electronmuon ranger emr fullyactive trackingca... 0 1 0 0 0 0
7062 Photometric Redshifts for Hyper Suprime-Cam Su... photometric redshifts key component many scien... 0 1 0 0 0 0
7063 Shallow Updates for Deep Reinforcement Learning deep reinforcement learning drl methods deep q... 1 0 0 1 0 0
7064 Survey on Additive Manufacturing, Cloud 3D Pri... cloud manufacturing cm concept using manufactu... 1 0 0 0 0 0
7065 Barnacles and Gravity theories one vacuum allow quantum transitions ... 0 1 0 0 0 0
7066 A note on some constants related to the zeta-f... paper new series first second stieltjes consta... 0 0 1 0 0 0
7067 Thresholding Bandit for Dose-ranging: The Impa... analyze sample complexity thresholding bandit ... 0 0 1 1 0 0
7068 Spin - Phonon Coupling in Nickel Oxide Determi... nickel oxide nio studied extensively various a... 0 1 0 0 0 0
7069 A Univariate Bound of Area Under ROC area roc auc important metric binary classific... 0 0 0 1 0 0
7070 On the Role of Text Preprocessing in Neural Ne... text preprocessing often first step pipeline n... 1 0 0 0 0 0
7071 Evidences against cuspy dark matter halos in l... develop apply new techniques order uncover gal... 0 1 0 0 0 0
7072 A Hybrid Framework for Multi-Vehicle Collision... recent surge interest uavs civilian services i... 0 0 1 0 0 0
7073 On the zeros of Riemann $Ξ(z)$ function riemann xiz function even z admits fourier tra... 0 0 1 0 0 0
7074 On Topologized Fundamental Groups with Small L... paper introducing kind small loop transfer spa... 0 0 1 0 0 0
7075 The boundary value problem for Yang--Mills--Hi... show existence yangmillshiggs ymh fields riema... 0 0 1 0 0 0
7076 Polish Topologies for Graph Products of Groups give strong necessary conditions admissibility... 0 0 1 0 0 0
7077 Iterated failure rate monotonicity and orderin... stochastic ordering distributions random varia... 0 0 1 1 0 0
7078 Quantum depletion of a homogeneous Bose-Einste... measured quantum depletion interacting homogen... 0 1 0 0 0 0
7079 A Deep Generative Model for Graphs: Supervised... creating modeling realworld graphs crucial pro... 1 0 0 1 0 0
7080 Analytic Combinatorics in Several Variables: E... field analytic combinatorics studies asymptoti... 1 0 0 0 0 0
7081 Speaking the Same Language: Matching Machine t... strong progress made image captioning last yea... 1 0 0 0 0 0
7082 A Transferable Pedestrian Motion Prediction Mo... paper presents novel framework accurate pedest... 1 0 0 1 0 0
7083 Generating GraphQL-Wrappers for REST(-like) APIs graphql query language thereuponbased paradigm... 1 0 0 0 0 0
7084 GXNOR-Net: Training deep neural networks with ... pressing need build architecture could subsume... 1 0 0 1 0 0
7085 The growth of carbon chains in IRC+10216 mappe... linear carbon chains common various types astr... 0 1 0 0 0 0
7086 Thermoelectric Transport Coefficients from Cha... present work study charged black hole solution... 0 1 0 0 0 0
7087 A unified method for maximal truncated Calderó... note give simple proofs several results involv... 0 0 1 0 0 0
7088 Evaluating Quality of Chatbots and Intelligent... chatbots one class intelligent conversational ... 1 0 0 0 0 0
7089 Fast and Lightweight Rate Control for Onboard ... predictive coding attractive compression hyper... 1 0 0 0 0 0
7090 Quantum-continuum calculation of the surface s... wide range electrochemical reactions practical... 0 1 0 0 0 0
7091 Simulation study of signal formation in positi... segmented silicon detectors micropixel microst... 0 1 0 0 0 0
7092 Re-DPoctor: Real-time health data releasing wi... wearable devices enable users collect health d... 1 0 0 0 0 0
7093 Efficient Computation of the Stochastic Behavi... paper computational aspects probability calcul... 0 0 0 1 0 0
7094 Laser electron acceleration on curved surfaces electron acceleration relativistically intense... 0 1 0 0 0 0
7095 A Physicist's view on Chopin's Études propose use specific dynamical processes gener... 0 1 0 0 0 0
7096 Thermalization after holographic bilocal quench study thermalization holographic dimensional c... 0 1 0 0 0 0
7097 A mean-field approach to Kondo-attractive-Hubb... purpose investigating coexistence magnetic ord... 0 1 0 0 0 0
7098 Endpoint Sobolev and BV continuity for maximal... paper investigate questions related continuity... 0 0 1 0 0 0
7099 Quantum models as classical cellular automata synopsis offered properties discrete integerva... 0 1 1 0 0 0
7100 K-closedness of weighted Hardy spaces on the t... proved certain restrictions weights pair weigh... 0 0 1 0 0 0
7101 Self-paced Convolutional Neural Network for Co... tissue characterization long important compone... 1 0 0 1 0 0
7102 PS-DBSCAN: An Efficient Parallel DBSCAN Algori... present psdbscan communication efficient paral... 1 0 0 0 0 0
7103 Non-singular spacetimes with a negative cosmol... use elliptic system equations complex coeffici... 0 0 1 0 0 0
7104 Non-Negative Matrix Factorization Test Cases nonnegative matrix factorization nmf prob lem ... 1 0 1 0 0 0
7105 Inequalities for the fundamental Robin eigenva... document consists two papers submitted supplem... 0 0 1 0 0 0
7106 Non-Hamiltonian isotopic Lagrangians on the on... show two hamiltonian isotopic lagrangians cpom... 0 0 1 0 0 0
7107 Berezinskii-Kosterlitz-Thouless Type Scenario ... spin relaxation chromium spinel oxides acro mg... 0 1 0 0 0 0
7108 Continuum percolation theory of epimorphic reg... biophysical model epimorphic regeneration base... 0 1 0 0 0 0
7109 Multiplicity of solutions for a nonhomogeneous... established existence multiplicity solution re... 0 0 1 0 0 0
7110 Mahonian STAT on rearrangement class of words babson steingrmsson generalized notion permuta... 1 0 0 0 0 0
7111 A bibliometric approach to Systematic Mapping ... critical analysis state art necessary task ide... 1 1 0 0 0 0
7112 SPEW: Synthetic Populations and Ecosystems of ... agentbased models abms simulate interactions a... 0 1 0 1 0 0
7113 Bayesian hierarchical weighting adjustment and... combine bayesian prediction weighted inference... 0 0 0 1 0 0
7114 Comparison of the h-index for Different Fields... important disadvantage hindex typically cannot... 1 0 0 1 0 0
7115 Impact of Intervals on the Emotional Effect in... every art form ultimately aims invoke emotiona... 1 0 0 0 1 0
7116 Nonlocal Pertubations of Fractional Choquard E... study equation beginequation deltasuvxu ialpha... 0 0 1 0 0 0
7117 Clustering Patients with Tensor Decomposition paper present method unsupervised clustering h... 1 0 0 1 0 0
7118 Posterior distribution existence and error con... generalize results citecapistran expected baye... 0 0 1 1 0 0
7119 High-$T_c$ mechanism through analysis of diver... order clarify hightc mechanism inhomogeneous c... 0 1 0 0 0 0
7120 The Long Term Fréchet distribution: Estimation... paper new longterm survival distribution propo... 0 0 1 1 0 0
7121 Active Expansion Sampling for Learning Feasibl... many engineering problems require identifying ... 1 0 0 1 0 0
7122 On diagrams of simplified trisections and mapp... simplified trisection trisection map manifold ... 0 0 1 0 0 0
7123 Look No Further: Adapting the Localization Sen... many localization algorithms use spatiotempora... 1 0 0 0 0 0
7124 The Gaia-ESO Survey: Dynamical models of flatt... present family selfconsistent axisymmetric rot... 0 1 0 0 0 0
7125 A two-dimensional data-driven model for traffi... based experimental traffic data obtained germa... 0 1 0 0 0 0
7126 Cut Finite Element Methods for Elliptic Proble... develop finite element method laplacebeltrami ... 0 0 1 0 0 0
7127 The rationality problem for forms of $\overlin... let x del pezzo surface degree defined field f... 0 0 1 0 0 0
7128 The p-adic Kummer-Leopoldt constant - Normaliz... padic kummerleopoldt constant kappak number fi... 0 0 1 0 0 0
7129 Regularization Learning Networks: Deep Learnin... despite impressive performance deep neural net... 0 0 0 1 0 0
7130 Numerical dimension and locally ample curves paper citelau shown restriction pseudoeffectiv... 0 0 1 0 0 0
7131 Local-global principles in circle packings generalize work bourgainkontorovich zhang prov... 0 0 1 0 0 0
7132 Underscreening in concentrated electrolytes screening surface charge electrolyte resulting... 0 1 0 0 0 0
7133 Asymptotics for Small Nonlinear Price Impact: ... provide asymptotic expansion value function mu... 0 0 0 0 0 1
7134 Data-driven Probabilistic Atlases Capture Whol... probabilistic atlases provide essential spatia... 0 0 0 1 1 0
7135 Learning to Communicate: A Machine Learning Fr... present machine learning framework multiagent ... 1 0 0 0 0 0
7136 Optimal investment-consumption problem post-re... study optimal investmentconsumption problem me... 0 0 0 0 0 1
7137 Parametrices for the light ray transform on Mi... consider restricted light ray transforms arisi... 0 0 1 0 0 0
7138 Derivative Principal Component Analysis for Re... propose nonparametric method explicitly model ... 0 0 1 1 0 0
7139 Stokes phenomenon and confluence in non-autono... article studies confluence pair regular singul... 0 0 1 0 0 0
7140 A General Sequential Delay-Doppler Estimation ... sequential estimation delay doppler parameters... 1 0 1 0 0 0
7141 The independence number of the Birkhoff polyto... maximally recoverable codes codes designed dis... 1 0 1 0 0 0
7142 Spin Angular Momentum of Proton Spin Puzzle in... paper focuses considering special precessional... 0 1 0 0 0 0
7143 Physics-Informed Regularization of Deep Neural... paper presents novel physicsinformed regulariz... 1 0 0 0 0 0
7144 Gradient-based Filter Design for the Dual-tree... wavelet transform seen success incorporated ne... 0 0 0 1 0 0
7145 Assimilated LVEF: A Bayesian technique combini... cardiologists main tool measuring systolic hea... 0 0 0 1 0 0
7146 DBSCAN: Optimal Rates For Density Based Cluste... study problem optimal estimation density clust... 0 0 1 1 0 0
7147 Steganographic Generative Adversarial Networks steganography collection methods hide secret i... 1 0 0 1 0 0
7148 Minimal Sum Labeling of Graphs graph g called sum graph socalled sum labeling... 1 0 0 0 0 0
7149 Provably efficient RL with Rich Observations v... study exploration problem episodic mdps rich o... 1 0 0 1 0 0
7150 Markov Chain Lifting and Distributed ADMM time converge steady state finite markov chain... 1 0 1 1 0 0
7151 Deep Encoder-Decoder Models for Unsupervised L... generating versatile appropriate synthetic spe... 1 0 0 1 0 0
7152 Fast failover of multicast sessions in softwar... rapid growth services stream groups users come... 1 0 0 0 0 0
7153 AI Safety Gridworlds present suite reinforcement learning environme... 1 0 0 0 0 0
7154 Maximality of Galois actions for abelian varie... let rhoellell system elladic representations a... 0 0 1 0 0 0
7155 An Application of Multi-band Forced Photometry... apply tractor image modeling code improve upon... 0 1 0 0 0 0
7156 Stacked Structure Learning for Lifted Relation... lifted relational neural networks lrnns descri... 1 0 0 1 0 0
7157 Spec-QP: Speculative Query Planning for Joins ... organisations store huge amounts data multiple... 1 0 0 0 0 0
7158 SurfClipse: Context-Aware Meta Search in the IDE despite various debugging supports existing id... 1 0 0 0 0 0
7159 Chomp on numerical semigroups consider twoplayer game chomp posets associate... 1 0 1 0 0 0
7160 Single Index Latent Variable Models for Networ... semiparametric nonlinear regression model pres... 0 0 0 1 0 0
7161 Quadratically-Regularized Optimal Transport on... optimal transportation provides means lifting ... 1 0 1 0 0 0
7162 Discussion on "Random-projection ensemble clas... discussion randomprojection ensemble classific... 0 0 1 1 0 0
7163 Deep Asymmetric Multi-task Feature Learning propose deep asymmetric multitask feature lear... 1 0 0 1 0 0
7164 Sub-nanometre resolution of atomic motion duri... phasechange materials based gesbte alloys wide... 0 1 0 0 0 0
7165 A Density Result for Real Hyperelliptic Curves let infty infty two points infty real hyperell... 0 0 1 0 0 0
7166 On a class of integrable systems of Monge-Ampè... investigate class multidimensional twocomponen... 0 1 1 0 0 0
7167 When is the mode functional the Bayes classifier? classification problems mode conditional proba... 0 0 1 1 0 0
7168 Unsupervised Motion Artifact Detection in Wris... one main benefits wristworn computer ability c... 1 0 0 0 0 0
7169 CredSaT: Credibility Ranking of Users in Big S... widespread use big social data pointed researc... 1 0 0 0 0 0
7170 On singular Finsler foliation paper introduce concept singular finsler folia... 0 0 1 0 0 0
7171 Early Experiences with Crowdsourcing Airway An... measuring airways chest computed tomography ct... 1 0 0 0 0 0
7172 Convergent Iteration in Sobolev Space for Time... time dependent quantum systems become indispen... 0 0 1 0 0 0
7173 Prototyping and Experimentation of a Closed-Lo... systematic design adaptive waveform wireless p... 1 0 0 0 0 0
7174 Image-based immersed boundary model of the aor... year approximately heart valve repair replacem... 1 1 0 0 0 0
7175 Large-Scale Cox Process Inference using Variat... gaussian process modulated poisson processes p... 0 0 0 1 0 0
7176 Buildings-to-Grid Integration Framework paper puts forth mathematical framework buildi... 1 0 1 0 0 0
7177 Oxygen Partial Pressure during Pulsed Laser De... recent trends miniaturizing oxidebased devices... 0 1 0 0 0 0
7178 A Data-Driven Analysis of the Influence of Car... objective test hypothesis variation care coord... 1 0 0 0 0 0
7179 Construction of Non-asymptotic Confidence Sets... paper consider probabilistic setting probabili... 0 0 1 1 0 0
7180 Limits on statistical anisotropy from BOSS DR1... measure statistically anisotropic signatures i... 0 1 0 0 0 0
7181 A Central Limit Theorem for Wasserstein type d... article dedicated estimation wasserstein dista... 0 0 1 1 0 0
7182 Confidence Intervals for Stochastic Arithmetic quantifying errors losses due use floatingpoin... 1 0 0 1 0 0
7183 Contaminated speech training methods for robus... despite significant progress made last years s... 1 0 0 0 0 0
7184 Co-segmentation for Space-Time Co-located Coll... present cosegmentation technique spacetime col... 1 0 0 0 0 0
7185 Speaker Diarization with LSTM many years ivector based audio embedding techn... 1 0 0 1 0 0
7186 Almost h-conformal semi-invariant submersions ... generalization riemannian submersions horizont... 0 0 1 0 0 0
7187 Use of Source Code Similarity Metrics in Softw... recent years defect prediction received great ... 1 0 0 0 0 0
7188 Connecting pairwise spheres by depth: DCOPS extend classical notion spherical depth mathbb... 0 0 1 1 0 0
7189 Estimating the spectral gap of a trace-class M... utility markov chain monte carlo algorithm lar... 0 0 1 1 0 0
7190 Tidal synchronization of an anelastic multi-la... paper presents one analytical tidal theory vis... 0 1 0 0 0 0
7191 On Lie algebras responsible for zero-curvature... zerocurvature representations zcrs one main to... 0 1 1 0 0 0
7192 TRAMP: Tracking by a Real-time AMbisonic-based... article presents multiple sound source localiz... 1 0 0 0 0 0
7193 Scalable Surface Reconstruction from Point Clo... paper present scalable approach robustly compu... 1 0 0 0 0 0
7194 General Bounds for Incremental Maximization propose theoretical framework capture incremen... 1 0 1 0 0 0
7195 Arrangements of pseudocircles on surfaces pseudocircle simple closed curve surface arran... 1 0 1 0 0 0
7196 Scalable methods for Bayesian selective inference modeled along truncated approach panigrahi sel... 0 0 0 1 0 0
7197 Modified Recursive Cholesky (Rchol) Algorithm:... cholesky decomposition plays important role fi... 0 0 1 0 0 0
7198 A Utility-Driven Multi-Queue Admission Control... combination recent emerging technologies netwo... 1 0 0 0 0 0
7199 Statistical inference for network samples usin... consider network observation collection observ... 1 0 0 1 0 0
7200 Spectral Method and Regularized MLE Are Both O... paper concerned problem topk ranking pairwise ... 1 0 1 1 0 0
7201 One-Shot Reinforcement Learning for Robot Navi... recently modelfree reinforcement learning algo... 1 0 0 0 0 0
7202 Data Race Detection on Compressed Traces consider problem detecting data races program ... 1 0 0 0 0 0
7203 Model and Integrate Medical Resource Availabil... improving effectiveness safety patient care ul... 1 0 0 0 0 0
7204 Two-Party Function Computation on the Reconcil... paper initiate study new problem termed functi... 1 0 0 0 0 0
7205 On Calabi-Yau compactifications of toric Landa... toric landauginzburg models giventals type fan... 0 0 1 0 0 0
7206 Halo assembly bias and the tidal anisotropy of... study role local tidal environment determining... 0 1 0 0 0 0
7207 Towards a general theory for non-linear locall... paper general theory presented locally station... 0 0 1 1 0 0
7208 Self-Learning Monte Carlo Method: Continuous-T... recentlyintroduced selflearning monte carlo me... 0 1 0 0 0 0
7209 Single-cell diffraction tomography with optofl... optical diffraction tomography odt tomographic... 0 0 0 0 1 0
7210 Non-Linear Least-Squares Optimization of Ratio... rational filter functions used improve converg... 1 0 0 0 0 0
7211 Maps on statistical manifolds exactly reduced ... maps parameter space expressing distribution f... 0 1 0 0 0 0
7212 Discontinuous classical ground state magnetic ... classical ground state magnetic response heise... 0 1 0 0 0 0
7213 Sparse Matrix Multiplication On An Associative... sparse matrix multiplication important compone... 1 0 0 0 0 0
7214 On the intersection of tame subgroups in group... let g group acting tree finite edge stabilizer... 0 0 1 0 0 0
7215 A Lagrangian scheme for the solution of nonlin... lagrangian numerical scheme solving nonlinear ... 0 0 1 0 0 0
7216 Optimal Control for Multi-Mode Systems with Di... paper studies optimal timebounded control mult... 1 0 0 0 0 0
7217 Digital Advertising Traffic Operation: Flow Ma... web advertising traffic operation trafficking ... 1 0 1 0 0 0
7218 Addressing Class Imbalance in Classification P... randomizing fouriertransform ft phases tempora... 0 0 0 1 1 0
7219 Generating global network structures by triad ... paper addresses question whether possible gene... 0 0 1 1 0 0
7220 Simultaneous smoothness and simultaneous stabi... paper investigate simultaneous properties conv... 0 0 1 0 0 0
7221 Adaptive quadrature by expansion for layer pot... solving partial differential equations using b... 0 0 1 0 0 0
7222 Anomalous transport effects on switching curre... explore effect noise ballistic graphenebased s... 0 1 0 0 0 0
7223 Fixed-Parameter Tractable Sampling for RNA Des... design multistable rna molecules important app... 0 0 0 0 1 0
7224 On the relevance of generalized disclinations ... utility notion generalized disclinations mater... 0 1 0 0 0 0
7225 PbTe(111) Sub-Thermionic Photocathode: A Route... emission properties pbte single crystal extens... 0 1 0 0 0 0
7226 Envy-free Matchings with Lower Quotas every instance hospitalsresidents problem admi... 1 0 0 0 0 0
7227 Characterizing Feshbach resonances in ultracol... describe procedures converging characterizing ... 0 1 0 0 0 0
7228 Interacting Multi-particle Classical Szilard E... szilard enginesze one best example information... 0 1 0 0 0 0
7229 Speeding-up Object Detection Training for Robo... latest deep learning methods object detection ... 1 0 0 0 0 0
7230 Graph of Virtual Actors (GOVA): a Big Data Ana... emergence cloud computing sensor technologies ... 1 0 0 0 0 0
7231 A Variation of the $q$-Painlevé System with Af... recently certain qpainlev type system obtained... 0 1 1 0 0 0
7232 Statics and dynamics of a self-bound dipolar m... study statics dynamics stable mobile selfbound... 0 1 0 0 0 0
7233 Riemannian geometry in infinite dimensional sp... lay foundations subject title build another pa... 0 0 1 0 0 0
7234 Finite Blaschke products with prescribed criti... determination finite blaschke product critical... 0 0 1 0 0 0
7235 The Stochastic Processes Generation in OpenMod... background componentbased modeling language mo... 1 1 0 0 0 0
7236 MIT SuperCloud Portal Workspace: Enabling HPC ... mit supercloud portal workspace enables secure... 1 0 0 0 0 0
7237 Estimator of Prediction Error Based on Approxi... propose estimator prediction error using appro... 0 0 0 1 0 0
7238 Faster Multiplication for Long Binary Polynomials set new speed records multiplying long polynom... 1 0 1 0 0 0
7239 Full-angle Negative Reflection with An Ultrath... metasurface gradient phase response offers new... 0 1 0 0 0 0
7240 Semigroup C*-algebras and toric varieties let finitely generated subsemigroup z derive g... 0 0 1 0 0 0
7241 Error analysis for small-sample, high-variance... recent advances molecular simulations allow di... 0 0 0 1 0 0
7242 Computing Influence of a Product through Uncer... understanding influence product crucially impo... 1 0 0 0 0 0
7243 Effect of Heterogeneity in Models of El-Niño S... emergence oscillations models elnio effect utm... 0 1 0 0 0 0
7244 A branch-and-price approach with MILP formulat... clustering undirected graph paper presents exa... 1 0 1 0 0 0
7245 Survey of Gravitationally-lensed Objects in HS... hyper suprimecam subaru strategic program hsc ... 0 1 0 0 0 0
7246 Learning Sparse Neural Networks through $L_0$ ... propose practical method l norm regularization... 1 0 0 1 0 0
7247 The relationships between PM2.5 and meteorolog... interactions pm meteorological factors play cr... 0 1 0 0 0 0
7248 Rank-two Milnor idempotents for the multipullb... kgroup calgebra multipullback quantum complex ... 0 0 1 0 0 0
7249 Lost Relatives of the Gumbel Trick gumbel trick method sample discrete probabilit... 1 0 0 1 0 0
7250 Sequential Randomized Matrix Factorization for... paper presents sequential randomized lowrank m... 1 0 0 1 0 0
7251 Large-scale dynamos in rapidly rotating plane ... context convectivelydriven flows play crucial ... 0 1 0 0 0 0
7252 Statistical inference for misspecified ergodic... paper deals estimation problem misspecified er... 0 0 1 1 0 0
7253 Bar formation in the Milky Way type galaxies many barred galaxies possibly including milky ... 0 1 0 0 0 0
7254 TLR: Transfer Latent Representation for Unsupe... domain adaptation refers process learning pred... 0 0 0 1 0 0
7255 Automated and Robust Quantification of Colocal... colocalization powerful tool study interaction... 0 0 0 1 0 0
7256 On the MISO Channel with Feedback: Can Infinit... consider communication multipleinput singleout... 1 0 0 0 0 0
7257 Structural Analysis and Optimal Design of Dist... paper investigate performance analysis synthes... 1 0 1 0 0 0
7258 Subadditivity and additivity of the Yang-Mills... formulate notions subadditivity additivity yan... 0 0 1 0 0 0
7259 Sensivity of the Hermite rank hermite rank appears limit theorems involving ... 0 0 1 1 0 0
7260 Specifying a positive threshold function via e... extremal point positive threshold boolean func... 1 0 0 0 0 0
7261 Link Mining for Kernel-based Compound-Protein ... virtual screening vs widely used computational... 1 0 0 1 0 0
7262 Using Stock Prices as Ground Truth in Sentimen... increasing availability big large volume socia... 0 0 0 0 0 1
7263 A novel approach to fractional calculus: utili... definition fractional integral may codified ri... 0 0 1 0 0 0
7264 When does every definable nonempty set have a ... assertion every definable set definable elemen... 0 0 1 0 0 0
7265 An exploration to visualize finite element dat... scientific community use pdes model range prob... 1 0 0 0 0 0
7266 Measurement and Analysis of Quality of Service... enhanced quality service qos satisfaction mobi... 1 0 0 0 0 0
7267 On the uncertainty of temperature estimation i... rapid compression machines rcms widely used co... 0 1 0 0 0 0
7268 Abelian varieties isogenous to a power of an e... given elliptic curve ek galois extension kk co... 0 0 1 0 0 0
7269 Radiative nonrecoil nuclear finite size correc... basis quasipotential method quantum electrodyn... 0 1 0 0 0 0
7270 Improved Training of Wasserstein GANs generative adversarial networks gans powerful ... 1 0 0 1 0 0
7271 A cancellation theorem for Milnor-Witt corresp... show finite milnorwitt correspondences satisfy... 0 0 1 0 0 0
7272 Wind Riemannian spaceforms and Randers metrics... recently wind riemannian structures wrs introd... 0 0 1 0 0 0
7273 Developing a Purely Visual Based Obstacle Dete... solution implemented frame duckietown goal duc... 1 0 0 0 0 0
7274 Weak Keys and Cryptanalysis of a Cold War Bloc... cipher used encryption governmental communicat... 1 0 0 0 0 0
7275 Dynamic Optimization of Neural Network Structu... deep neural networks dnns powerful machine lea... 0 0 0 1 0 0
7276 Spectroscopy of Ultra-diffuse Galaxies in the ... present spectra ultradiffuse galaxies udgs vic... 0 1 0 0 0 0
7277 On Robust Tie-line Scheduling in Multi-Area Po... tieline scheduling problem multiarea power sys... 0 0 1 0 0 0
7278 Novel Phases of Semi-Conducting Silicon Nitrid... paper predicted stabilities several twodimensi... 0 1 0 0 0 0
7279 Schwarz-Christoffel: piliero en rivero (a pill... la transformoj de schwarzchristoffel mapas kon... 0 0 1 0 0 0
7280 Towards Audio to Scene Image Synthesis using G... humans imagine scene sound want machines using... 1 0 0 0 0 0
7281 Data-Mining Research in Education interdisciplinary discipline data mining dm po... 1 0 0 1 0 0
7282 Stochastic Input Models in Online Computing paper study twelve stochastic input models onl... 1 0 1 1 0 0
7283 Generating Visual Representations for Zero-Sho... paper addresses task learning image classifier... 1 0 0 0 0 0
7284 Online Learning Rate Adaptation with Hypergrad... introduce general method improving convergence... 1 0 0 1 0 0
7285 Mitigating radiation damage of single photon d... singlephoton detectors space must retain usefu... 0 1 0 0 0 0
7286 The Parameterized Complexity of Positional Games study parameterized complexity several positio... 1 0 0 0 0 0
7287 Lunar laser ranging in infrfared at hte Grasse... many years lunar laser ranging llr observation... 0 1 0 0 0 0
7288 An exact solution to a Stefan problem with var... article proved existence similarity solutions ... 0 0 1 0 0 0
7289 State-of-the-art Speech Recognition With Seque... attentionbased encoderdecoder architectures li... 1 0 0 1 0 0
7290 Bayesian inference for Stable Levy driven Stoc... article consider parametric bayesian inference... 0 0 1 1 0 0
7291 The Evolution of Reputation-Based Cooperation ... despite recent advances reputation technologie... 1 1 0 0 0 0
7292 Cocycles of nilpotent quotients of free groups focus cohomology kth nilpotent quotient free g... 0 0 1 0 0 0
7293 The ABCD of topological recursion kontsevich soibelman reformulated slightly gen... 0 0 1 0 0 0
7294 Evaluating Compositionality in Sentence Embedd... important challenge humanlike ai compositional... 0 0 0 1 0 0
7295 A rigourous demonstration of the validity of B... boltzmann provided scenario explain individual... 0 1 1 0 0 0
7296 Half-range lattice Boltzmann models for the si... threedimensional couette flow parallel plates ... 0 1 0 0 0 0
7297 A Nonlinear Dimensionality Reduction Framework... existing dimensionality reduction methods adep... 1 0 0 1 0 0
7298 Analyzing and improving maximal attainable acc... pipelined krylov subspace methods avoid commun... 1 0 0 0 0 0
7299 Associated Graded Rings and Connected Sums ananthnarayan avramov moore gave new construct... 0 0 1 0 0 0
7300 Trigonometric integrators for quasilinear wave... trigonometric time integrators introduced clas... 0 0 1 0 0 0
7301 La leggenda del quanto centenario around year centenary plancks thermal radiatio... 0 1 0 0 0 0
7302 A Highly Efficient Polarization-Independent Me... highlyefficient multiresonant rf energyharvest... 0 1 0 0 0 0
7303 Mixed Graphical Models for Causal Analysis of ... graphical causal models important tool knowled... 1 0 0 1 0 0
7304 Estimation of quantile oriented sensitivity in... paper concerns quantile oriented sensitivity a... 0 0 1 1 0 0
7305 Electromagnetically Induced Transparency (EIT)... intensity noise crosscorrelation polarization ... 0 1 0 0 0 0
7306 Deep Robust Framework for Protein Function Pre... amino acid sequence portrays intrinsic form pr... 0 0 0 0 1 0
7307 Helicity of convective flows from localized he... experimental numerical study steadystate cyclo... 0 1 0 0 0 0
7308 Tunable $φ$-Josephson junction with a quantum ... theoretically study josephson current supercon... 0 1 0 0 0 0
7309 What kind of content are you prone to tweet? M... according tastes person could show preference ... 1 0 0 0 0 0
7310 Fine-Gray competing risks model with high-dime... purpose paper construct confidence intervals r... 0 0 1 1 0 0
7311 The Godunov Method for a 2-Phase Model consider godunov numerical method phasetransit... 0 0 1 0 0 0
7312 Cartan's Conjecture for Moving Hypersurfaces let f holomorphic curve mathbbpnmathbbc let ma... 0 0 1 0 0 0
7313 Safe Active Feature Selection for Sparse Learning present safe active incremental feature select... 0 0 0 1 0 0
7314 Cobwebs from the Past and Present: Extracting ... social graph construction various sources inte... 1 1 0 0 0 0
7315 A Fluid-Flow Interpretation of SCED Scheduling show fluidflow interpretation service curve ea... 1 0 0 0 0 0
7316 Emergence of Topological Nodal Lines and Type ... using firstprinciples density functional calcu... 0 1 0 0 0 0
7317 Number-conserving interacting fermion models w... present method construct numberconserving hami... 0 1 0 0 0 0
7318 JFLEG: A Fluency Corpus and Benchmark for Gram... present new parallel corpus jhu fluencyextende... 1 0 0 0 0 0
7319 Scheduling with regular performance measures a... address single machine problems optional jobs ... 1 0 0 0 0 0
7320 Data-Driven Stochastic Robust Optimization: A ... novel datadriven stochastic robust optimizatio... 1 0 1 0 0 0
7321 Algebraic multiscale method for flow in hetero... paper introduces algebraic multiscale method s... 1 1 0 0 0 0
7322 From Pragmatic to Systematic Software Process ... software processes improvement spi challenging... 1 0 0 0 0 0
7323 A Bayesian Mixture Model for Clustering on the... analysis bayesian mixture model matrix langevi... 0 0 0 1 0 0
7324 Discrete Cycloids from Convex Symmetric Polygons cycloids hipocycloids epicycloids often forgot... 0 0 1 0 0 0
7325 Multi-color image compression-encryption algor... paper algorithm multicolor image compressionen... 1 0 0 0 0 0
7326 Gaussian Graphical Models: An Algebraic and Ge... gaussian graphical models used throughout natu... 0 0 1 1 0 0
7327 The Dynamical History of Chariklo and its Rings chariklo small solar system body confirmed rin... 0 1 0 0 0 0
7328 THAP: A Matlab Toolkit for Learning with Hawke... powerful tool asynchronous event sequence anal... 1 0 0 1 0 0
7329 Studies of the Response of the SiD Silicon-Tun... studies response sid silicontungsten electroma... 0 1 0 0 0 0
7330 Multiple Hypothesis Tracking Algorithm for Mul... study multiple hypothesis tracking mht algorit... 1 0 0 0 0 0
7331 Smooth positon solutions of the focusing modif... nfold darboux transformation tn focusing real ... 0 1 0 0 0 0
7332 On discrimination between two close distributi... goodnessoffit test discrimination two tail dis... 0 0 1 1 0 0
7333 Belief Propagation Min-Sum Algorithm for Gener... belief propagation algorithms instruments used... 1 0 0 1 0 0
7334 Sharper and Simpler Nonlinear Interpolants for... interpolation jointly infeasible predicates pl... 1 0 0 0 0 0
7335 Quantized Laplacian growth, III: On conformal ... oneparametric stochastic dynamics interface qu... 0 1 0 0 0 0
7336 Supervised Saliency Map Driven Segmentation of... lesion segmentation first step automatic melan... 1 0 0 0 0 0
7337 The Mean and Median Criterion for Automatic Ke... support vector data description svdd popular t... 1 0 0 1 0 0
7338 Understanding the Impact of Label Granularity ... recent years supervised learning using convolu... 1 0 0 0 0 0
7339 Monte Carlo modified profile likelihood in mod... main focus analysts deal clustered data usuall... 0 0 0 1 0 0
7340 Anisotropic spin-density distribution and magn... magnetic anisotropies ferromagnetic thin films... 0 1 0 0 0 0
7341 An Annotated Corpus of Relational Strategies i... create release first publicly available commer... 1 0 0 0 0 0
7342 Putting gravity in control aim present manuscript present novel proposal ... 0 0 1 0 0 0
7343 Towards Interpretable Deep Neural Networks by ... sometimes enough dnn produce outcome example a... 1 0 0 1 0 0
7344 Learning a Hierarchical Latent-Variable Model ... propose variational shape learner vsl generati... 1 0 0 0 0 0
7345 Maximally rotating waves in AdS and on spheres study cubic wave equation adsd closely related... 0 1 1 0 0 0
7346 Taming Wild High Dimensional Text Data with a ... bag words bow represents corpus matrix whose e... 1 0 0 1 0 0
7347 Spatial structure of shock formation formation singularity compressible gas describ... 0 1 1 0 0 0
7348 How far are we from solving the 2D & 3D Face A... paper investigates far deep neural network att... 1 0 0 0 0 0
7349 Inhabitants of interesting subsets of the Bous... set bousfield classes important subsets distri... 0 0 1 0 0 0
7350 A Framework for Implementing Machine Learning ... potential benefits applying machine learning m... 0 0 0 0 1 0
7351 Actively Calibrated Line Mountable Capacitive ... class actively calibrated line mounted capacit... 0 1 0 0 0 0
7352 AirCode: Unobtrusive Physical Tags for Digital... present aircode technique allows user tag phys... 1 0 0 0 0 0
7353 Identifying Condition-Action Statements in Med... paper advances state art text understanding me... 1 0 0 0 0 0
7354 Adversarial Learning for Neural Dialogue Gener... paper drawing intuition turing test propose us... 1 0 0 0 0 0
7355 On the impact origin of Phobos and Deimos III:... origin phobos deimos giant impact generated di... 0 1 0 0 0 0
7356 Dealing with the Dimensionality Curse in Dynam... sales applications characterized competition l... 0 0 0 0 0 1
7357 Interleaved Group Convolutions for Deep Neural... paper present simple modularized neural networ... 1 0 0 0 0 0
7358 Lower Bounding Diffusion Constant by the Curva... establish general connection ballistic diffusi... 0 1 0 0 0 0
7359 Face Detection using Deep Learning: An Improve... report present new face detection scheme using... 1 0 0 0 0 0
7360 Transferring End-to-End Visuomotor Control fro... endtoend control robot manipulation grasping e... 1 0 0 0 0 0
7361 The cosmic spiderweb: equivalence of cosmic, a... twenty years term cosmic web guided understand... 0 1 0 0 0 0
7362 Data-driven polynomial chaos expansion for mac... present regression technique data driven probl... 0 0 0 1 0 0
7363 Robust Implicit Backpropagation arguably biggest challenge applying neural net... 0 0 0 1 0 0
7364 Experimental and Theoretical Study of Magnetoh... magnetohydrodynamic mhd ships represent clear ... 0 1 0 0 0 0
7365 Ratio Utility and Cost Analysis for Privacy Pr... rapidly increasing number devices connected in... 0 0 0 1 0 0
7366 Time-optimal control strategies in SIR epidemi... investigate timeoptimal control problem sir su... 0 0 1 0 0 0
7367 On the validity of the formal Edgeworth expans... consider fundamental open problem parametric b... 0 0 1 1 0 0
7368 DADAM: A Consensus-based Distributed Adaptive ... adaptive gradientbased optimization methods ad... 1 0 0 1 0 0
7369 Paramagnetic Meissner effect in ZrB12 single c... magnetic response related paramagnetic meissne... 0 1 0 0 0 0
7370 Credal Networks under Epistemic Irrelevance credal network epistemic irrelevance generalis... 1 0 1 0 0 0
7371 Resonance fluorescence in the resolvent operat... mollow spectrum light scattered driven twoleve... 0 1 0 0 0 0
7372 On the the Berge Conjecture for tunnel number ... paper use approach based dynamics prove ksubse... 0 0 1 0 0 0
7373 EMRIs and the relativistic loss-cone: The curi... extreme mass ratio inspiral emri events vulner... 0 1 0 0 0 0
7374 Investigating the configurations in cross-shar... companies populating stock market along connec... 0 0 0 0 0 1
7375 The Enemy Among Us: Detecting Hate Speech with... offensive antagonistic language targeted indiv... 1 0 0 0 0 0
7376 Linear Programming Formulations of Determinist... paper devoted study infinite horizon optimal c... 0 0 1 0 0 0
7377 Exact diagonalization of cubic lattice models ... present general analytical formalism determine... 0 1 0 0 0 0
7378 Non-normality, reactivity, and intrinsic stoch... intrinsic stochasticity induce highly nontrivi... 0 0 0 0 1 0
7379 Latent Gaussian Mixture Models for Nationwide ... five year posttransplant survival rate importa... 0 0 0 1 0 0
7380 Small nonlinearities in activation functions c... investigate loss surface neural networks prove... 0 0 0 1 0 0
7381 Poisson brackets with prescribed family of fun... well known functions involution respect poisso... 0 0 1 0 0 0
7382 No Need for a Lexicon? Evaluating the Value of... decades contextdependent phonemes dominant sub... 1 0 0 1 0 0
7383 Stabilization Bounds for Linear Finite Dynamic... common problem applications linear finite dyna... 0 0 1 0 0 0
7384 Magneto-thermopower in the Weak Ferromagnetic ... measured resistivity thermopower specific heat... 0 1 0 0 0 0
7385 Experimental Two-dimensional Quantum Walk on a... quantum walks virtue coherent superposition qu... 0 1 0 0 0 0
7386 Dispersive Magnetic and Electronic Excitations... resonant inelastic xray scattering rixs experi... 0 1 0 0 0 0
7387 Reaction-Diffusion Models for Glioma Tumor Growth mathematical modelling tumor growth one useful... 0 1 0 0 0 0
7388 On reducing the communication cost of the diff... rise digital mobile communications recently ma... 1 0 0 1 0 0
7389 Teaching computer code at school todays education systems deep concern importan... 1 0 0 0 0 0
7390 Statistical Inference on Panel Data Models: A ... propose statistical inferential procedures pan... 0 0 1 1 0 0
7391 Nonconvex penalties with analytical solutions ... onebit measurements widely exist real world us... 1 0 0 1 0 0
7392 How to Scale Up Kernel Methods to Be As Good A... computational complexity kernel methods often ... 1 0 0 0 0 0
7393 Benchmarking Automatic Machine Learning Framew... automl serves bridge varying levels expertise ... 0 0 0 1 0 0
7394 Layered Based Augmented Complex Kalman Filter ... presence renewable resources distribution netw... 0 0 0 1 0 0
7395 Multiscale mixing patterns in networks assortative mixing networks tendency nodes att... 1 0 0 0 0 0
7396 Single-Queue Decoding for Neural Machine Trans... neural machine translation models rely beam se... 1 0 0 0 0 0
7397 Simulation of Parabolic Flow on an Eye-Shaped ... upstroke normal eye blink upper lid moves pain... 0 0 1 0 0 0
7398 Faster algorithms for 1-mappability of a sequence kmappability problem given string x length n i... 1 0 0 0 0 0
7399 PerformanceNet: Score-to-Audio Music Generatio... music creation typically composed two parts co... 1 0 0 0 0 0
7400 Simulation optimization: A review of algorithm... simulation optimization refers optimization ob... 1 0 1 0 0 0
7401 Learning Disentangled Representations with Sem... variational autoencoders vaes learn representa... 1 0 0 1 0 0
7402 Meteorites from Phobos and Deimos at Earth? examine conditions material martian moons phob... 0 1 0 0 0 0
7403 Computational Aspects of Optimal Strategic Net... diffusion information widely modeled stochasti... 1 0 0 0 0 0
7404 Watermark Signal Detection and Its Application... propose fundamental techniques obtain effectiv... 1 0 0 0 0 0
7405 Loop-augmented forests and a variant of the Fo... loopaugmented forest labeled rooted forest loo... 0 0 1 0 0 0
7406 Replication issues in syntax-based aspect extr... reproducing experiments important instrument v... 1 0 0 0 0 0
7407 Manifold Adversarial Learning recently proposed adversarial training methods... 0 0 0 1 0 0
7408 An Extension of Proof Graphs for Disjunctive P... parameterised boolean equation system pbes set... 1 0 0 0 0 0
7409 A direct measure of free electron gas via the ... present measurement kinematic sunyaevzeldovich... 0 1 0 0 0 0
7410 Scalable Structure Learning for Probabilistic ... statistical relational frameworks markov logic... 0 0 0 1 0 0
7411 A mode-coupling theory analysis of the rotatio... contrast simple monatomic alkali halide ions c... 0 1 0 0 0 0
7412 Regulating Access to System Sensors in Coopera... modern operating systems android ios windows p... 1 0 0 0 0 0
7413 Identification of Treatment Effects under Cond... conditional independence treatment assignment ... 0 0 0 1 0 0
7414 First demonstration of emulsion multi-stage sh... describe first ever implementation emulsion mu... 0 1 0 0 0 0
7415 Deep Generative Adversarial Networks for Compr... magnetic resonance image mri reconstruction se... 1 0 0 1 0 0
7416 On multiplicative independence of rational fun... give lower bounds degree multiplicative combin... 0 0 1 0 0 0
7417 Haptic Assembly and Prototyping: An Expository... important application haptic technology digita... 1 0 0 0 0 0
7418 On links between horocyclic and geodesic orbit... study topological dynamics horocycle flow hmat... 0 0 1 0 0 0
7419 Waist size for cusps in hyperbolic 3-manifolds II waist size cusp orientable hyperbolic manifold... 0 0 1 0 0 0
7420 Landau levels from neutral Bogoliubov particle... motivated recent work straininduced pseudomagn... 0 1 0 0 0 0
7421 Modular Labelled Sequent Calculi for Abstract ... abstract separation logics family extensions h... 1 0 0 0 0 0
7422 Affine maps between quadratic assignment polyt... consider two polytopes quadratic assignment po... 1 0 1 0 0 0
7423 LinXGBoost: Extension of XGBoost to Generalize... xgboost often presented algorithm wins every m... 1 0 0 1 0 0
7424 Superfluidity and relaxation dynamics of a las... investigate superfluid behavior twodimensional... 0 1 0 0 0 0
7425 Measuring Player Retention and Monetization us... game analytics supports game development provi... 0 0 0 1 0 0
7426 Bohemian Upper Hessenberg Toeplitz Matrices look bohemian matrices specifically entries sp... 1 0 0 0 0 0
7427 A Study of Energy Trading in a Low-Voltage Net... past years distributed energy resources der ob... 1 0 0 0 0 0
7428 Evidence Logics with Relational Evidence dynamic evidence logics logics reasoning evide... 1 0 0 0 0 0
7429 Review of methods for assessing the causal eff... researchers often interested assessing impact ... 0 0 0 1 0 0
7430 On the Difference Between Closest, Furthest, a... point location problems n points ddimensional ... 1 0 0 0 0 0
7431 Efficient Nonparametric Bayesian Inference For... consider statistical inverse problem recoverin... 0 0 1 1 0 0
7432 Glass-Box Program Synthesis: A Machine Learnin... recently proposed models learn write computer ... 1 0 0 1 0 0
7433 Cable-Driven Actuation for Highly Dynamic Robo... paper presents design experimental evaluations... 1 0 0 0 0 0
7434 Improved $A_1-A_\infty$ and related estimates ... aainfty estimate improving previous result arx... 0 0 1 0 0 0
7435 Ramsey Classes with Closure Operations (Select... state ramsey property classes ordered structur... 1 0 1 0 0 0
7436 On Optimal Spectrum Access of Cognitive Relay ... investigate cognitive radio system secondary u... 1 0 0 0 0 0
7437 Visibility of minorities in social networks homophily put minority groups disadvantage res... 1 1 0 0 0 0
7438 Interpreted Formalisms for Configurations imprecise incomplete specification system text... 1 0 0 0 0 0
7439 Solvability and microlocal analysis of the fra... discuss unique existence microlocal regularity... 0 0 1 0 0 0
7440 High-Mobility OFDM Downlink Transmission with ... correspondence propose new receiver design hig... 1 0 1 0 0 0
7441 Feature Enhancement in Visually Impaired Images one major open problems computer vision detect... 1 1 0 0 0 0
7442 Heavy-Tailed Universality Predicts Trends in T... given two deep neural networks dnns similar ar... 1 0 0 1 0 0
7443 Confidence Interval Estimators for MOS Values quantification qoe subjects often provide indi... 1 0 0 0 0 0
7444 Atmospheric Circulation and Cloud Evolution on... observations highlyeccentric e hotjupiter hd b... 0 1 0 0 0 0
7445 Removal of Batch Effects using Generative Adve... many biological data analysis processes like c... 1 0 0 1 0 0
7446 The Current-Phase Relation of Ferromagnetic Jo... study josephson effect rmt f junction consisti... 0 1 0 0 0 0
7447 SpreadCluster: Recovering Versioned Spreadshee... version information plays important role sprea... 1 0 0 0 0 0
7448 Field-induced coexistence of $s_{++}$ and $s_{... multiband systems ironbased superconductors su... 0 1 0 0 0 0
7449 Superregular grammars do not provide additiona... pervasive belief regard differences human lang... 0 0 0 0 1 0
7450 Deep Learning based Large Scale Visual Recomme... paper present unified endtoend approach build ... 1 0 0 0 0 0
7451 The effect of inhomogeneous phase on the criti... critical temperature tc mgb one key factors li... 0 1 0 0 0 0
7452 Journal of Open Source Software (JOSS): design... article describes motivation design progress j... 1 0 0 0 0 0
7453 Sample Complexity of Estimating the Policy Gra... reinforcement learning promising approach lear... 1 0 0 1 0 0
7454 NDSHA: robust and reliable seismic hazard asse... neodeterministic seismic hazard assessment nds... 0 1 0 0 0 0
7455 Syllable-aware Neural Language Models: A Failu... syllabification seem improve wordlevel rnn lan... 1 0 0 1 0 0
7456 Persistent Entropy for Separating Topological ... persistent homology studies evolution kdimensi... 1 0 0 0 0 0
7457 Intrinsic alignment of redMaPPer clusters: clu... measure alignment shapes galaxy clusters trace... 0 1 0 0 0 0
7458 A note on degenerate stirling polynomials of t... paper consider degenerate stirling polynomials... 0 0 1 0 0 0
7459 Active learning machine learns to create new q... useful machine learning quantum laboratory rai... 1 0 0 1 0 0
7460 The Gaia-ESO Survey: radial distribution of ab... spatial distribution elemental abundances disc... 0 1 0 0 0 0
7461 The deterioration of materials from air pollut... doseresponse functions drfs widely used estima... 0 1 0 0 0 0
7462 In-situ Optical Characterization of Noble Meta... present work addressed thesis introduces first... 0 1 0 0 0 0
7463 Persistent Monitoring of Stochastic Spatio-tem... paper presents solution persistent monitoring ... 1 0 0 1 0 0
7464 Guaranteed Sufficient Decrease for Variance Re... paper propose novel sufficient decrease techni... 1 0 1 1 0 0
7465 Unified Gas-kinetic Scheme with Multigrid Conv... unified gas kinetic scheme ugks direct modelin... 0 1 0 0 0 0
7466 Learning agile and dynamic motor skills for le... legged robots pose one greatest challenges rob... 1 0 0 1 0 0
7467 Optimal partition problems for the fractional ... work prove existence result optimal partition ... 0 0 1 0 0 0
7468 Entire holomorphic curves into projective spac... note establish following second main theorem t... 0 0 1 0 0 0
7469 New results on sum-product type growth over fi... prove range new sumproduct type growth estimat... 0 0 1 0 0 0
7470 Precision matrix expansion - efficient use of ... computing inverse covariance matrix precision ... 0 1 0 0 0 0
7471 Structural and electronic properties of german... date germanene synthesized metallic substrates... 0 1 0 0 0 0
7472 Fractional quiver W-algebras introduce quiver gauge theory associated nonsi... 0 0 1 0 0 0
7473 Vortex creep at very low temperatures in singl... image vortex creep low temperatures using scan... 0 1 0 0 0 0
7474 Intention Games strategic interactions competitive entities ge... 1 0 0 0 0 0
7475 Utilizing Lexical Similarity between Related, ... investigate pivotbased translation related lan... 1 0 0 0 0 0
7476 Multiband Electronic Structure of Magnetic Qua... semiconductor quantum dots qds doped magnetic ... 0 1 0 0 0 0
7477 Advances in Detection and Error Correction for... chapter show use differential coding presence ... 1 0 0 0 0 0
7478 Risk-Averse Classification develop new approach solving classification pr... 0 0 0 1 0 0
7479 Scattered Sentences have Few Separable Randomi... paper randomizations scattered sentences keisl... 0 0 1 0 0 0
7480 Zero divisor and unit elements with support of... kaplansky zero divisor conjecture states g tor... 0 0 1 0 0 0
7481 G2 instantons and the Seiberg-Witten monopoles describe relation mostly conjectural seibergwi... 0 0 1 0 0 0
7482 Multimodal Word Distributions word embeddings provide point representations ... 1 0 0 1 0 0
7483 Efficient Policy Learning many areas practitioners seek use observationa... 0 0 1 1 0 0
7484 Optimization by a quantum reinforcement algorithm reinforcement algorithm solves classical optim... 1 1 0 0 0 0
7485 Fast Image Processing with Fully-Convolutional... present approach accelerating wide variety ima... 1 0 0 0 0 0
7486 Revealing patterns in HIV viral load data and ... hiv rna viral load vl important outcome variab... 0 0 0 1 1 0
7487 Superintegrable relativistic systems in spacet... consider relativistic charged particle backgro... 0 1 1 0 0 0
7488 Distributed Stochastic Model Predictive Contro... paper presents distributed stochastic model pr... 1 0 1 0 0 0
7489 Formalization of Transform Methods using HOL L... transform methods like laplace fourier frequen... 1 0 0 0 0 0
7490 The Velocity of the Decoding Wave for Spatiall... consider dynamics belief propagation decoding ... 1 0 1 0 0 0
7491 In Search of an Entity Resolution OASIS: Optim... entity resolution er presents unique challenge... 1 0 0 1 0 0
7492 Evidence of chaotic modes in the analysis of f... since corot observations unveiled low amplitud... 0 1 0 0 0 0
7493 Analytical Representations of Divisors of Inte... certain analytical expressions feel divisors n... 0 0 1 0 0 0
7494 Semiparametrical Gaussian Processes Learning o... paper presents problem model learning purpose ... 1 0 0 1 0 0
7495 Vestigial nematic order and superconductivity ... topological insulator bise doped electrons sup... 0 1 0 0 0 0
7496 On the semi-continuity problem of normalized v... show mathbbqgorenstein flat family klt singula... 0 0 1 0 0 0
7497 Non-Generic Unramified Representations in Meta... let gr denote metaplectic covering group linea... 0 0 1 0 0 0
7498 A Generalization of Convolutional Neural Netwo... paper introduces generalization convolutional ... 1 0 0 1 0 0
7499 Implications of right-handed neutrinos in $B-L... investigate standard model sm ubl gauge extens... 0 1 0 0 0 0
7500 Robust Adversarial Reinforcement Learning deep neural networks coupled fast simulation i... 1 0 0 0 0 0
7501 Dynamic behaviour of Multilamellar Vesicles un... surfactant solutions exhibit multilamellar sur... 0 1 0 0 0 0
7502 Approximate fixed points and B-amenable groups topological group g bamenable every continuous... 0 0 1 0 0 0
7503 Radiation hardness of small-pitch 3D pixel sen... new generation silicon pixel detectors small p... 0 1 0 0 0 0
7504 Simulating Cosmic Microwave Background anisotr... microwave kinetic inductance devices mkids poi... 0 1 0 0 0 0
7505 Optimized State Space Grids for Abstractions practical impact abstractionbased controller s... 1 0 0 0 0 0
7506 Dictionary Learning and Sparse Coding-based De... propose novel denoising framework task functio... 1 0 0 1 0 0
7507 Optimal control of a Vlasov-Poisson plasma by ... consider three dimensional vlasovpoisson syste... 0 0 1 0 0 0
7508 Lensless Photography with only an image sensor photography usually requires optics conjunctio... 1 1 0 0 0 0
7509 Truth-Telling Mechanism for Secure Two-Way Rel... paper brings novel idea paying utility winning... 1 0 0 0 0 0
7510 Prediction of Individual Outcomes for Asthma S... consider problem individualspecific medication... 0 0 0 1 0 0
7511 Bayesian Probabilistic Numerical Methods emergent field probabilistic numerics thus far... 1 0 1 1 0 0
7512 The evolution of the temperature field during ... study effect cavity collapse nonideal explosiv... 0 1 0 0 0 0
7513 Quantile Regression for Qualifying Match of GE... present simple quantile regressionbased foreca... 0 0 0 1 0 0
7514 Strong Local Nondeterminism of Spherical Fract... let b left bleft xright xin mathbbsright fract... 0 0 1 1 0 0
7515 Sparse Named Entity Classification using Facto... named entity classification task classifying t... 1 0 0 0 0 0
7516 Exploration of Large Networks with Covariates ... latent space models effective tools statistica... 1 0 0 1 0 0
7517 Distant Supervision for Topic Classification o... tackle challenge topic classification tweets c... 1 0 0 0 0 0
7518 Relationship Maintenance in Software Language ... context research testing building software sys... 1 0 0 0 0 0
7519 The Emptiness Problem for Valence Automata ove... work studies storage mechanisms automata permi... 1 0 1 0 0 0
7520 On the Optimization Landscape of Tensor Decomp... nonconvex optimization local search heuristics... 1 0 1 1 0 0
7521 Estimate of Joule Heating in a Flat Dechirper performed joule power loss calculations flat d... 0 1 0 0 0 0
7522 Accurate Kernel Learning for Linear Gaussian M... report exact likelihood computation linear gau... 0 0 0 1 0 0
7523 Near-Optimal Discrete Optimization for Experim... experimental design problem concerns selection... 1 0 0 1 0 0
7524 Positive semi-definite embedding for dimension... machine learning statistics often desirable re... 1 0 0 1 0 0
7525 Bounded Projective Functions and Hyperbolic Me... establish correspondence riemann surface hyper... 0 0 1 0 0 0
7526 A State-Space Approach to Dynamic Nonnegative ... nonnegative matrix factorization nmf actively ... 1 0 0 1 0 0
7527 Active Inductive Logic Programming for Code Se... modern search techniques either cannot efficie... 1 0 0 0 0 0
7528 Dense families of modular curves, prime number... obtain new uniform bounds symmetric tensor ran... 0 0 1 0 0 0
7529 Continued fraction algorithms and Lagrange's t... present several continued fraction algorithms ... 0 0 1 0 0 0
7530 Scaling and bias codes for modeling speaker-ad... neuralnetwork based speakeradaptive acoustic m... 1 0 0 1 0 0
7531 Bayesian Network Regularized Regression for Mo... paper considers problem statistical inference ... 0 0 0 1 0 0
7532 Similarity forces and recurrent components in ... show social dynamics responsible formation con... 1 0 0 0 0 0
7533 CELLO-3D: Estimating the Covariance of ICP in ... fusion iterative closest point icp reg istrati... 1 0 0 0 0 0
7534 Projection Theorems Using Effective Dimension paper use theory computing study fractal dimen... 1 0 1 0 0 0
7535 Exotic pairing symmetry of interacting Dirac f... pairing symmetry interacting dirac fermions pi... 0 1 0 0 0 0
7536 Learning Causal Structures Using Regression In... study causal inference multienvironment settin... 1 0 0 1 0 0
7537 Linear Exponential Comonads without Symmetry notion linear exponential comonads symmetric m... 1 0 1 0 0 0
7538 Multi-speaker Recognition in Cocktail Party Pr... paper proposes original statistical decision t... 1 0 0 0 0 0
7539 A DIRT-T Approach to Unsupervised Domain Adapt... domain adaptation refers problem leveraging la... 0 0 0 1 0 0
7540 Robust valley polarization of helium ion modif... atomically thin semiconductors dimensions comm... 0 1 0 0 0 0
7541 Sustained sensorimotor control as intermittent... conceptual computational framework proposed mo... 1 0 0 0 0 0
7542 COLOSSUS: A python toolkit for cosmology, larg... paper introduces colossus public opensource py... 0 1 0 0 0 0
7543 Generalized Similarity U: A Non-parametric Tes... second generation sequencing technologies incr... 0 0 0 1 1 0
7544 Hydra: An Accelerator for Real-Time Edge-Aware... many modern video processing pipelines rely ed... 1 0 0 0 0 0
7545 Non-Convex Weighted Lp Nuclear Norm based ADMM... since matrix formed nonlocal similar patches n... 1 0 0 0 0 0
7546 A Contextual Bandit Approach for Stream-Based ... contextual bandit algorithms class multiarmed ... 1 0 0 0 0 0
7547 Localization of ions within one-, two- and thr... demonstrate lightinduced localization coulombi... 0 1 0 0 0 0
7548 Joint Modeling of Event Sequence and Time Seri... variety realworld processes networks produce s... 1 0 0 0 0 0
7549 Low Auto-correlation Binary Sequences explored... search binary sequences low autocorrelations l... 0 1 0 0 0 0
7550 Estimation of the marginal expected shortfall ... study asymptotic behavior marginal expected sh... 0 0 1 1 0 0
7551 Downgrade Attack on TrustZone securitycritical tasks require proper isolatio... 1 0 0 0 0 0
7552 Robust Inference under the Beta Regression Mod... data rates percentages proportions arise frequ... 0 0 0 1 0 0
7553 PageRank in Undirected Random Graphs pagerank numerous applications information ret... 0 0 1 0 0 0
7554 Room temperature line lists for CO\2 symmetric... remote sensing experiments require highaccurac... 0 1 0 0 0 0
7555 The GIT moduli of semistable pairs consisting ... discuss git moduli semistable pairs consisting... 0 0 1 0 0 0
7556 On the Genus of the Moonshine Module provide novel simple description schellekens s... 0 0 1 0 0 0
7557 A Deep Learning-based Reconstruction of Cosmic... describe method reconstructing air showers ind... 0 1 0 0 0 0
7558 The unexpected resurgence of Weyl geometry in ... weyls original scale geometry purely infinites... 0 1 1 0 0 0
7559 Discrete Dynamic Causal Modeling and Its Relat... paper explores discrete dynamic causal modelin... 0 0 0 1 0 0
7560 Two-step approach to scheduling quantum circuits effort scale existing quantum hardware proceed... 1 0 0 0 0 0
7561 A Study of the Allan Variance for Constant-Mea... allan variance av widely used quantity areas f... 0 0 1 1 0 0
7562 Foresight: Recommending Visual Insights current tools exploratory data analysis eda re... 1 0 0 0 0 0
7563 Fast Stochastic Variance Reduced ADMM for Stoc... consider stochastic composition optimization p... 1 0 0 1 0 0
7564 Hierarchical Behavioral Repertoires with Unsup... enabling artificial agents automatically learn... 1 0 0 0 0 0
7565 Indirect Image Registration with Large Diffeom... paper adapts large deformation diffeomorphic m... 1 0 1 0 0 0
7566 Morphological estimators on Sunyaev--Zel'dovic... determination morphology galaxy clusters impor... 0 1 0 0 0 0
7567 Hierarchy of exchange interactions in the tria... spin triangular lattice antiferromagnet ybmgga... 0 1 0 0 0 0
7568 Pulsar braking and the P-Pdot diagram location radio pulsars periodperiod derivative... 0 1 0 0 0 0
7569 Uniqueness of stable capillary hypersurfaces i... paper prove immersed stable capillary hypersur... 0 0 1 0 0 0
7570 A Potential Recoiling Supermassive Black Hole ... carried systematic search recoiling supermassi... 0 1 0 0 0 0
7571 WLAN Performance Analysis Ibrahim Group of ind... days several organizations moving lan foundati... 1 0 0 0 0 0
7572 Archetypes for Representing Data about the Bra... brazilian ministry health selected openehr mod... 1 0 0 0 0 0
7573 Global linear convergent algorithm to compute ... minimum volume enclosing ellipsoid mvee proble... 0 0 1 0 0 0
7574 Asymptotic behavior of memristive circuits and... interest memristors risen due possible applica... 1 1 0 0 0 0
7575 Contrasting information theoretic decompositio... biological artificial neural systems composed ... 0 0 0 1 1 0
7576 Recommendations for Marketing Campaigns in Tel... major investment made telecom operator goes in... 1 0 0 0 0 0
7577 Enhancing The Reliability of Out-of-distributi... consider problem detecting outofdistribution i... 1 0 0 1 0 0
7578 Two-fermion Bethe-Salpeter Equation in Minkows... possibility solving bethesalpeter equation min... 0 1 0 0 0 0
7579 Fractional Laplacians on the sphere, the Minak... paper show novel underlying connections fracti... 0 0 1 0 0 0
7580 Nef partitions for codimension 2 weighted comp... prove smooth well formed fano weighted complet... 0 0 1 0 0 0
7581 Integrating sentiment and social structure to ... examine relationship social structure sentimen... 1 1 0 0 0 0
7582 Tailoring symmetric metallic and magnetic edge... fabrication atomic scale metallic wire remains... 0 1 0 0 0 0
7583 The Ramsey theory of the universal homogeneous... universal homogeneous trianglefree graph const... 0 0 1 0 0 0
7584 Restriction of representations of metaplectic ... let f nonarchimedean local field study restric... 0 0 1 0 0 0
7585 Five-dimensional Perfect Simplices let qnn unit cube mathbb rn n mathbb n nondege... 0 0 1 0 0 0
7586 Quantum Fluctuations in Mesoscopic Systems recent experimental results point existence co... 0 1 0 0 0 0
7587 Big Data Model Simulation on a Graph Database ... sensors present various forms around world mob... 1 0 0 0 0 0
7588 EmbedJoin: Efficient Edit Similarity Joins via... study problem edit similarity joins given set ... 1 0 0 0 0 0
7589 Construction of curve pairs and their applicat... study introduce new approach curve pairs using... 0 0 1 0 0 0
7590 Solution of linear ill-posed problems by model... consider general statistical linear inverse pr... 0 0 1 0 0 0
7591 Simulation studies for dielectric wakefield pr... short high charge electron bunches drive high ... 0 1 0 0 0 0
7592 Long-range dynamical magnetic order and spin t... magnetic systems spins sitting lattice corner ... 0 1 0 0 0 0
7593 The Frobenius morphism in invariant theory let r homogeneous coordinate ring grassmannian... 0 0 1 0 0 0
7594 A General Probabilistic Approach for Quantitat... wasserstein metric introduced probabilistic me... 0 1 0 0 0 0
7595 Sentiment Analysis by Joint Learning of Word E... word embeddings representations individual wor... 1 0 0 1 0 0
7596 Normal-state Properties of a Unitary Bose-Ferm... theoretically investigate normalstate properti... 0 1 0 0 0 0
7597 A glass-box interactive machine learning appro... goal machine learning automatically learn data... 1 0 0 1 0 0
7598 Verification Studies for the Noh Problem using... noh verification test problem extended beyond ... 1 1 0 0 0 0
7599 Motivic zeta functions and infinite cyclic covers associate infinite cyclic cover punctured neig... 0 0 1 0 0 0
7600 End-to-end semantic face segmentation with con... recent years seen sharp increase number relate... 1 0 0 0 0 0
7601 Bayesian Coreset Construction via Greedy Itera... coherent uncertainty quantification key streng... 0 0 0 1 0 0
7602 Practical Bayesian optimization in the presenc... inference presence outliers important field re... 1 0 0 1 0 0
7603 Is there any polynomial upper bound for the un... universal labeling graph g labeling edge set g... 1 0 1 0 0 0
7604 An Empirical Study on Team Formation in Online... online games provide rich recording interactio... 1 0 0 0 0 0
7605 Nematic superconductivity in Cu$_{x}$Bi$_{2}$S... study theoretically topological surface states... 0 1 0 0 0 0
7606 The structure of a minimal $n$-chart with two ... given crossing minimal chart gamma minimal cha... 0 0 1 0 0 0
7607 Generating Shared Latent Variables for Robots ... assistive robotics particularly robot coaches ... 1 0 0 0 0 0
7608 Superconvergence analysis of linear FEM based ... study superconvergence property linear finite ... 0 0 1 0 0 0
7609 Semi-blind source separation with multichannel... paper proposes multichannel source separation ... 0 0 0 1 0 0
7610 Quantitative characterization of pore structur... pore space characteristics biochars may vary d... 0 1 0 0 0 0
7611 First-principles-based method for electron loc... present firstprinciplesbased manybody typical ... 0 1 0 0 0 0
7612 Compressed H$_3$S: inter-sublattice Coulomb co... upon thermal annealing room temperature rt hig... 0 1 0 0 0 0
7613 A physiology--based parametric imaging method ... parametric imaging compartmental approach proc... 0 1 1 0 0 0
7614 Item Recommendation with Evolving User Prefere... current recommender systems exploit user item ... 1 0 0 1 0 0
7615 On some integrals of Hardy consider properties integrals considered hardy... 0 0 1 0 0 0
7616 Complexity of short generating functions give complexity analysis class short generatin... 1 0 1 0 0 0
7617 Finite-Size Effects in Non-Neutral Two-Dimensi... thermodynamic potential neutral twodimensional... 0 1 0 0 0 0
7618 Type Safe Redis Queries: A Case Study of Type-... redis inmemory data structure store often used... 1 0 0 0 0 0
7619 Ground state solutions for a nonlinear Choquar... discuss existence ground state solutions choqu... 0 0 1 0 0 0
7620 Ultrashort dark solitons interactions and nonl... present study dark soliton dynamics inhomogeno... 0 1 0 0 0 0
7621 Long-range p-d exchange interaction in a ferro... exchange interaction magnetic ions charge carr... 0 1 0 0 0 0
7622 Parsec-scale Faraday rotation and polarization... perform polarimetry analysis active galactic n... 0 1 0 0 0 0
7623 Positive scalar curvature and connected sums let n closed enlargeable manifold sense gromov... 0 0 1 0 0 0
7624 Optical computing by injection-locked lasers programmable optical computer remained elusive... 1 0 0 0 0 0
7625 On the joint asymptotic distribution of the re... main theorem jain et aljain k singh sharma str... 0 0 1 1 0 0
7626 Rotational spectroscopy, tentative interstella... nmethylformamide chnhcho may important molecul... 0 1 0 0 0 0
7627 Dynamic anisotropy in MHD turbulence induced b... paper study development anisotropy strong mhd ... 0 1 0 0 0 0
7628 Dealing with the exponential wall in electroni... alternative density functional theory wavefunc... 0 1 0 0 0 0
7629 Influence maximization on correlated networks ... identification minimal set nodes maximizes pro... 1 1 0 0 0 0
7630 Conformal metrics with prescribed fractional s... let x g asymptotically hyperbolic manifold hat... 0 0 1 0 0 0
7631 A Short Review of Ethical Challenges in Clinic... clinical nlp immense potential contributing cl... 1 0 0 0 0 0
7632 kd-switch: A Universal Online Predictor with a... propose novel online predictor discrete labels... 1 0 0 1 0 0
7633 A Heat Equation on some Adic Completions of Q ... article deals markov process related fundament... 0 0 1 0 0 0
7634 A simple alteration of the peridynamics corres... look enhancement correspondence model peridyna... 0 1 0 0 0 0
7635 Interpretable Active Learning active learning long topic study machine learn... 1 0 0 1 0 0
7636 Orbital-Free Density-Functional Theory Simulat... report orbitalfree densityfunctional theory df... 0 1 0 0 0 0
7637 Binary systems with an RR Lyrae component - pr... contribution summarize progress made investiga... 0 1 0 0 0 0
7638 Covering and tiling hypergraphs with tight cycles given leq k leq say kuniform hypergraph cks ti... 0 0 1 0 0 0
7639 DNA methylation markers to assess biological age among different biomarkers aging based omics c... 0 0 0 0 1 0
7640 Towards Building an Intelligent Anti-Malware S... effective efficient mitigation malware longtim... 0 0 0 1 0 0
7641 Exponential profiles from stellar scattering o... holes clumps interstellar gas dwarf irregular ... 0 1 0 0 0 0
7642 Visualizations for an Explainable Planning Agent paper report visualization capabilities explai... 1 0 0 0 0 0
7643 Generative adversarial interpolative autoencod... present neural network architecture based upon... 0 0 0 1 0 0
7644 Attribute-Guided Face Generation Using Conditi... interested attributeguided face generation giv... 1 0 0 1 0 0
7645 Objective-Reinforced Generative Adversarial Ne... unsupervised data generation tasks besides gen... 1 0 0 1 0 0
7646 Pluripotential theory on the support of closed... extend certain classical theorems pluripotenti... 0 0 1 0 0 0
7647 Inconsistency of Measure-Theoretic Probability... report inconsistency found probability theory ... 0 0 1 0 0 0
7648 Robustness of Quasiparticle Interference Test ... recently test signchanging gap function candid... 0 1 0 0 0 0
7649 Adaptive User Perspective Rendering for Handhe... handheld augmented reality commonly implements... 1 0 0 0 0 0
7650 A distributed primal-dual algorithm for comput... paper propose distributed primaldual algorithm... 1 0 1 0 0 0
7651 Inverse dynamic and spectral problems for the ... consider inverse dynamic spectral problems one... 0 0 1 0 0 0
7652 Extensions of isomorphisms of subvarieties in ... let x quasiaffine algebraic variety isomorphic... 0 0 1 0 0 0
7653 Frequentist coverage and sup-norm convergence ... gaussian process gp regression powerful interp... 0 0 1 1 0 0
7654 Most Probable Evolution Trajectories in a Gene... study probable trajectories concentration evol... 0 0 0 0 1 0
7655 Simplified derivation of the collision probabi... many topics planetary studies demand estimate ... 0 1 0 0 0 0
7656 Optically Coupled Methods for Microwave Impeda... scanning microwave impedance microscopy mim me... 0 1 0 0 0 0
7657 Generalized feedback vertex set problems on bo... long known feedback vertex set solved time mat... 1 0 0 0 0 0
7658 Electron-phonon coupling mechanisms for hydrog... mechanisms strong electronphonon coupling pred... 0 1 0 0 0 0
7659 Competitive Equilibrium For almost All Incomes competitive equilibrium equal incomes ceei wel... 1 0 0 0 0 0
7660 Converting of algebraic Diophantine equations ... author showed homogeneous algebraic diophantin... 0 0 1 0 0 0
7661 A Deep Learning Approach with an Attention Mec... automatic sleep staging challenging problem st... 0 0 0 0 1 0
7662 Laser Wakefield Accelerators onedimensional wakefield generation equations ... 0 1 0 0 0 0
7663 Permutation complexity of images of Sturmian w... show permutation complexity image sturmian wor... 1 0 0 0 0 0
7664 Three principles of data science: predictabili... propose predictability computability stability... 1 0 0 1 0 0
7665 The Elasticity of Puiseux Monoids let atomic monoid let x nonunit element elasti... 0 0 1 0 0 0
7666 Barcode Embeddings for Metric Graphs stable topological invariants cornerstone pers... 0 0 1 0 0 0
7667 On the extremal extensions of a non-negative J... consider minimal nonnegative jacobi operator p... 0 0 1 0 0 0
7668 Note on the geodesic Monte Carlo geodesic monte carlo gmc powerful algorithm ba... 0 0 0 1 0 0
7669 Google Scholar and the gray literature: A repl... recently review concluded google scholar gs su... 1 0 0 0 0 0
7670 A Next-Best-Smell Approach for Remote Gas Dete... problem gas detection relevant many realworld ... 1 0 0 0 0 0
7671 KZ-Calogero correspondence revisited discuss correspondence knizhnikzamolodchikov e... 0 1 1 0 0 0
7672 Spectral up- and downshifting of Akhmediev bre... experimentally numerically investigate effect ... 0 1 0 0 0 0
7673 High Rate LDPC Codes from Difference Covering ... paper presents combinatorial construction lowd... 1 0 1 0 0 0
7674 Bootstrapping spectral statistics in high dime... statistics derived eigenvalues sample covarian... 0 0 0 1 0 0
7675 On parabolic subgroups of Artin-Tits groups of... show artintits group spherical type intersecti... 0 0 1 0 0 0
7676 A statistical test for the Zipf's law by devia... explore probabilistic model artistic text word... 0 0 1 1 0 0
7677 Weakly Supervised Classification in High Energ... machine learning algorithms become increasingl... 0 1 0 1 0 0
7678 Profit Driven Decision Trees for Churn Prediction customer retention campaigns increasingly rely... 1 0 0 1 0 0
7679 Carrier loss mechanisms in textured crystallin... quite general device analysis method allows di... 0 1 0 0 0 0
7680 The generating function for the Airy point pro... wide class hermitian random matrices limit dis... 0 0 1 0 0 0
7681 Gradient-based Training of Slow Feature Analys... paper proposes power slow feature analysis gra... 0 0 0 1 0 0
7682 Quantum Critical Behavior in the Asymptotic Li... behavior matter near quantum critical point qc... 0 1 0 0 0 0
7683 Multilayer Network Modeling of Integrated Biol... biological systems cell human brain inherently... 0 0 0 0 1 0
7684 Fast, Autonomous Flight in GPS-Denied and Clut... one challenging tasks flying robot autonomousl... 1 0 0 0 0 0
7685 Accumulation Bit-Width Scaling For Ultra-Low P... efforts reduce numerical precision computation... 1 0 0 1 0 0
7686 The Berkovich realization for rigid analytic m... prove functor associating rigid analytic varie... 0 0 1 0 0 0
7687 Rates of estimation for determinantal point pr... determinantal point processes dpps wideranging... 0 0 1 1 0 0
7688 Negative refraction in Weyl semimetals theoretically propose weyl semimetals may exhi... 0 1 0 0 0 0
7689 Towards Object Life Cycle-Based Variant Genera... variability management process models major ch... 1 0 0 0 0 0
7690 Detection of sub-MeV Dark Matter with Three-Di... propose use threedimensional dirac materials t... 0 1 0 0 0 0
7691 Formation of Local Resonance Band Gaps in Fini... objective paper use transfer functions compreh... 0 1 1 0 0 0
7692 Online Multi-Label Classification: A Label Com... many modern applications deal multilabel data ... 0 0 0 1 0 0
7693 Mutual Alignment Transfer Learning training robots operation real world complex t... 1 0 0 0 0 0
7694 Tangent: Automatic differentiation using sourc... need efficiently calculate first higherorder d... 1 0 0 0 0 0
7695 Scalar and Tensor Parameters for Importing Ten... paper propose method importing tensor index no... 1 0 0 0 0 0
7696 Evidence for coherent spicule oscillations by ... wave theories heating chromosphere corona sola... 0 1 0 0 0 0
7697 Dynamics and transverse relaxation of an uncon... unconventional spinrotation mode emerging quan... 0 1 0 0 0 0
7698 Opinion diversity and community formation in a... interesting significant importance investigate... 1 1 0 0 0 0
7699 On the local and global comparison of generali... given two continuous functions fgitomathbbr g ... 0 0 1 0 0 0
7700 Torsion of elliptic curves and unlikely inters... study effective versions unlikely intersection... 0 0 1 0 0 0
7701 BoostJet: Towards Combining Statistical Aggreg... recommenders become widely popular recent year... 1 0 0 1 0 0
7702 Fixed points of diffeomorphisms on nilmanifold... let nilmanifold fundamental group free step ni... 0 0 1 0 0 0
7703 Offloading Execution from Edge to Cloud: a Dyn... fog computing enables use cases data produced ... 1 0 0 0 0 0
7704 A nested sampling code for targeted searches f... document describes code perform parameter esti... 0 1 0 0 0 0
7705 Using Big Data to Enhance the Bosch Production... paper describes approach bosch production line... 1 0 0 0 0 0
7706 Golden Elliptical Orbits in Newtonian Gravitation spherical symmetry radial coordinate r classic... 0 1 0 0 0 0
7707 Learning Sparse Adversarial Dictionaries For M... audio events quite often overlapping nature pr... 1 0 0 0 0 0
7708 Matter-wave solutions in the Bose-Einstein con... study exact solutions quasionedimensional gros... 0 1 1 0 0 0
7709 Histogram Transform-based Speaker Identification novel textindependent speaker identification s... 1 0 0 1 0 0
7710 Towards self-adaptable robots: from programmin... argue hardware modularity plays key role conve... 1 0 0 0 0 0
7711 Incidence Results and Bounds of Trilinear and ... give new bound number collinear triples two ar... 0 0 1 0 0 0
7712 Comment on "Kinetic decoupling of WIMPs: Analy... visinelli gondolo hereafter vg derived analyti... 0 1 0 0 0 0
7713 Dimension preserving resolutions of singularit... poisson structures admit resolutions symplecti... 0 0 1 0 0 0
7714 Comparison of hidden Markov chain models and h... interest replace computed tomography ct images... 0 0 0 1 0 0
7715 Spin-charge split pairing in underdoped cuprat... calculate specific heat weakly interacting dil... 0 1 0 0 0 0
7716 Iterative Amortized Inference inference models key component scaling variati... 0 0 0 1 0 0
7717 Rethinking probabilistic prediction in the wak... many statisticians citizens outcome recent us ... 0 0 1 1 0 0
7718 $L^1$ solutions to one-dimensional BSDEs with ... paper aims solving onedimensional backward sto... 0 0 1 0 0 0
7719 Magnifying the early episodes of star formatio... study spectrophotometric properties highly mag... 0 1 0 0 0 0
7720 Ergodicity of a system of interacting random w... study n interacting random walks positive inte... 0 0 1 0 0 0
7721 Extreme value statistics for censored data wit... paper addresses problem estimating presence ra... 0 0 1 1 0 0
7722 Response to "Counterexample to global converge... recent note author provides counterexample glo... 1 0 0 1 0 0
7723 Thermal memristor and neuromorphic networks fo... memristor one four fundamental twoterminal sol... 0 1 0 0 0 0
7724 Asymptotic Distribution and Simultaneous Confi... ratio medians suitable quantiles two distribut... 0 0 0 1 0 0
7725 A Topological proof that $O_2$ is $2$-MCFL give new proof salvatis theorem group language... 1 0 1 0 0 0
7726 Projected Variational Integrators for Degenera... propose compare several projection methods app... 0 1 0 0 0 0
7727 Boosted Generative Models propose novel approach using unsupervised boos... 1 0 0 1 0 0
7728 The Geometry of Strong Koszul Algebras koszul algebras quadratic groebner bases calle... 0 0 1 0 0 0
7729 Overlapping community detection using superior... community discovery social network one tremend... 1 0 0 0 0 0
7730 Debugging Transactions and Tracking their Prov... debugging transactions understanding execution... 1 0 0 0 0 0
7731 How LinkedIn Economic Graph Bonds Information ... linkedin salary product launched late goal pro... 1 0 0 0 0 0
7732 Fast quantum logic gates with trapped-ion qubits quantum bits based individual trapped atomic i... 0 1 0 0 0 0
7733 Generative Adversarial Network based Autoencod... fault detection problem closed loop uncertain ... 0 0 0 1 0 0
7734 Non-Asymptotic Rates for Manifold, Tangent Spa... given nsample drawn submanifold subset mathbbr... 0 0 1 1 0 0
7735 Learning to Optimize Neural Nets learning optimize recently proposed framework ... 1 0 1 1 0 0
7736 A space-time finite element method for neural ... present analyze new spacetime finite element m... 0 0 1 0 0 0
7737 Notes on complexity of packing coloring packing kcoloring integer k graph gve mapping ... 1 0 0 0 0 0
7738 Predicting Positive and Negative Links with No... social networks involve positive negative rela... 1 0 0 0 0 0
7739 Simulating a Topological Transition in a Super... significance topological phases widely recogni... 0 1 0 0 0 0
7740 Improved Absolute Frequency Measurement of the... measured absolute frequency p transition yb at... 0 1 0 0 0 0
7741 Theoretical properties of quasi-stationary Mon... paper gives foundational results application q... 0 0 1 1 0 0
7742 A Hilbert Space of Stationary Ergodic Processes identifying meaningful signal buried noise pro... 0 0 0 1 0 1
7743 Total variation regularized non-negative matri... hyperspectral analysis gained popularity recen... 0 0 1 0 0 0
7744 Efficient Antihydrogen Detection in Antimatter... antihydrogen forefront antimatter research cer... 1 1 0 0 0 0
7745 Spin controlled atom-ion inelastic collisions control ultracold collisions neutral atoms ext... 0 1 0 0 0 0
7746 Nonparametric Cusum Charts for Angular Data wi... paper develops nonparametric rotation invarian... 0 0 0 1 0 0
7747 Origin of Weak Turbulence in the Outer Regions... mechanism behind angular momentum transport pr... 0 1 0 0 0 0
7748 Real-time Monocular Visual Odometry for Turbid... context robotic underwater operations visual d... 1 0 0 0 0 0
7749 Casper the Friendly Finality Gadget introduce casper proof stakebased finality sys... 1 0 0 0 0 0
7750 Rating Protocol Design for Extortion and Coope... crowdsourcing emerged paradigm leveraging huma... 1 0 0 0 0 0
7751 Form factors of local operators in supersymmet... apply nested algebraic bethe ansatz models gl ... 0 0 1 0 0 0
7752 On the $E$-polynomial of parabolic $\mathrm{Sp... find epolynomials family parabolic mathrmspnch... 0 0 1 0 0 0
7753 Goldstone and Higgs Hydrodynamics in the BCS-B... discuss derivation lowenergy effective field t... 0 1 0 0 0 0
7754 A note on knot concordance and involutive knot... prove two knots concordant involutive knot flo... 0 0 1 0 0 0
7755 $M$-QAM Precoder Design for MIMO Directional M... spectrally efficient multiantenna wireless com... 1 0 0 0 0 0
7756 Ivanov-Regularised Least-Squares Estimators ov... study kernel leastsquares estimation norm cons... 0 0 1 1 0 0
7757 Using Ice and Dust Lines to Constrain the Surf... present novel method determining surface densi... 0 1 0 0 0 0
7758 Quaternionic Projective Bundle Theorem and Gys... paper show motive hpn quaternionic grassmannia... 0 0 1 0 0 0
7759 Green function for linearized Navier-Stokes ar... continuation completion program initiated cite... 0 0 1 0 0 0
7760 Summary of a Literature Review in Scalability ... paper shows authors consistent way characteriz... 1 0 0 0 0 0
7761 Interacting superradiance samples: modified in... consider interaction distinct superradiance sr... 0 1 0 0 0 0
7762 An optimal XP algorithm for Hamiltonian cycle ... paper prove given cliquewidth kexpression nver... 1 0 0 0 0 0
7763 On the functional window of the avian compass functional window experimentally observed prop... 0 1 0 0 0 0
7764 Automated text summarisation and evidence-base... practice evidencebased medicine ebm urges medi... 1 0 0 0 0 0
7765 Generalized Moran sets Generated by Step-wise ... article provide systematic way creating genera... 0 1 1 0 0 0
7766 On the lateral instability analysis of MEMS co... paper investigates lateral pullin effect inpla... 0 1 0 0 0 0
7767 Isospectrality For Orbifold Lens Spaces answer mark kacs famous question one hear shap... 0 0 1 0 0 0
7768 How Wrong Am I? - Studying Adversarial Example... machine learning models vulnerable adversarial... 1 0 0 1 0 0
7769 Energy Efficient Adaptive Network Coding Schem... paper propose novel energy efficient adaptive ... 1 0 0 0 0 0
7770 DCCO: Towards Deformable Continuous Convolutio... discriminative correlation filter dcf based me... 1 0 0 0 0 0
7771 Multitarget search on complex networks: A loga... investigate multitarget search complex network... 1 1 0 0 0 0
7772 New X-ray bound on density of primordial black... set new upper limit abundance primordial black... 0 1 0 0 0 0
7773 Hierarchical Clustering with Prior Knowledge hierarchical clustering class algorithms seeks... 0 0 0 1 0 0
7774 Physics Informed Deep Learning (Part II): Data... introduce physics informed neural networks neu... 1 0 0 1 0 0
7775 The HoTT reals coincide with the Escardó-Simps... escard simpson defined notion interval object ... 1 0 1 0 0 0
7776 Noise2Noise: Learning Image Restoration withou... apply basic statistical reasoning signal recon... 0 0 0 1 0 0
7777 Simple Root Cause Analysis by Separable Likeli... root cause analysis anomalies challenging trad... 0 0 0 1 0 0
7778 Jeffrey's prior sampling of deep sigmoidal net... neural networks shown remarkable ability uncov... 1 1 0 0 0 0
7779 Computing the quality of the Laplace approxima... bayesian inference requires approximation meth... 0 0 1 1 0 0
7780 Correlations between thresholds and degrees: A... two node variables determine evolution cascade... 0 1 0 0 0 0
7781 Faster Learning by Reduction of Data Access Time nowadays major challenge machine learning big ... 0 0 0 1 0 0
7782 Optimal Control for Constrained Coverage Path ... problem constrained coverage path planning inv... 1 0 0 0 0 0
7783 ScaleSimulator: A Fast and Cycle-Accurate Para... design next generation computer systems suppor... 1 0 0 0 0 0
7784 Annihilating wild kernels let lk finite galois extension number fields g... 0 0 1 0 0 0
7785 Trading the Twitter Sentiment with Reinforceme... paper explore possibility use alternative data... 1 0 0 0 0 0
7786 Kahler-Einstein metrics and algebraic geometry survey article based authors lectures current ... 0 0 1 0 0 0
7787 Hemihelical local minimizers in prestrained el... consider double layered prestrained elastic ro... 0 0 1 0 0 0
7788 AspEm: Embedding Learning by Aspects in Hetero... heterogeneous information networks hins ubiqui... 1 0 0 0 0 0
7789 Nonlinear Information Bottleneck information bottleneck ib technique extracting... 1 0 0 1 0 0
7790 Top-k Overlapping Densest Subgraphs: Approxima... central problem graph mining finding dense sub... 1 0 0 0 0 0
7791 The energy-momentum tensor of electromagnetic ... present complete resolution abrahamminkowski c... 0 1 0 0 0 0
7792 Pinhole induced efficiency variation in perovs... process induced efficiency variation major con... 0 1 0 0 0 0
7793 An Overview of Robust Subspace Recovery paper serve introduction body work robust subs... 0 0 0 1 0 0
7794 Tuning Free Orthogonal Matching Pursuit orthogonal matching pursuit omp widely used co... 1 0 0 1 0 0
7795 New constructions of MDS codes with complement... linear complementarydual lcd short codes linea... 1 0 0 0 0 0
7796 Porosity and regularity in metric measure spaces report joint work e jrvenp jrvenp rajala rogov... 0 0 1 0 0 0
7797 Strong-coupling superconductivity induced by c... theoretically investigate possibility achievin... 0 1 0 0 0 0
7798 Interval-type theorems concerning quasi-arithm... family quasiarithmetic means natural partial o... 0 0 1 0 0 0
7799 Integrable flows between exact CFTs explicitly construct families integrable sigma... 0 1 0 0 0 0
7800 Beyond Shared Hierarchies: Deep Multitask Lear... existing deep multitask learning mtl approache... 1 0 0 1 0 0
7801 Relational Algebra for In-Database Process Mining execution logs used process mining practice of... 1 0 0 0 0 0
7802 Global existence for the nonlinear fractional ... consider initial value problem fractional nonl... 0 0 1 0 0 0
7803 Statistical properties of an enstrophy conserv... framework variational principles stochastic fl... 0 1 0 0 0 0
7804 Conditional Optimal Stopping: A Time-Inconsist... inspired recent work pl lions conditional opti... 0 0 0 0 0 1
7805 Principles for optimal cooperativity in allost... allosteric proteins transmit mechanical signal... 0 1 0 0 0 0
7806 Improved electronic structure and magnetic exc... discuss application agapito curtarolo buongior... 0 1 0 0 0 0
7807 Test of SensL SiPM coated with NOL-1 wavelengt... sensl microfcsmt x mm silicon photomultiplier ... 0 1 0 0 0 0
7808 Neon2: Finding Local Minima via First-Order Or... propose reduction nonconvex optimization turn ... 1 0 0 1 0 0
7809 Geometrical Insights for Implicit Generative M... learning algorithms implicit generative models... 1 0 0 1 0 0
7810 Simple Countermeasures to Mitigate the Effect ... network coding based peertopeer streaming repr... 1 0 0 0 0 0
7811 Small-scale structure and the Lyman-$α$ forest... baryonacoustic oscillation bao feature lymanal... 0 1 0 0 0 0
7812 Scale-dependent perturbations finally detectab... means present geometrical dynamical observatio... 0 1 0 0 0 0
7813 InfoCatVAE: Representation Learning with Categ... paper describes infocatvae extension variation... 0 0 0 1 0 0
7814 Quadratic twists of abelian varieties and disp... study parity selmer ranks family quadratic twi... 0 0 1 0 0 0
7815 From acquaintance to best friend forever: robu... social networks often provide binary perspecti... 1 0 0 0 0 0
7816 Conditional bias robust estimation of the tota... marketing power grid management purposes many ... 0 0 0 1 0 0
7817 Ulrich bundles on smooth projective varieties ... classify ulrich vector bundles arbitrary rank ... 0 0 1 0 0 0
7818 $k$-shellable simplicial complexes and graphs paper show kshellable simplicial complex expan... 0 0 1 0 0 0
7819 The Effect of Phasor Measurement Units on the ... commonly used weighted least square state esti... 1 0 1 0 0 0
7820 $ε$-Regularity and Structure of 4-dimensional ... closed four dimensional manifold cannot posses... 0 0 1 0 0 0
7821 Cosmological model discrimination with Deep Le... demonstrate potential deep learning methods me... 0 1 0 1 0 0
7822 Deep Memory Networks for Attitude Identification consider task identifying attitudes towards gi... 1 0 0 0 0 0
7823 Discrete flow posteriors for variational infer... training step variational autoencoder vae requ... 0 0 0 1 1 0
7824 Audio Super Resolution using Neural Networks introduce new audio processing technique incre... 1 0 0 0 0 0
7825 Thermoelectric power factor enhancement by spi... thermoelectric te measurements performed workh... 0 1 0 0 0 0
7826 Risk-Sensitive Cooperative Games for Human-Mac... autonomous systems substantially enhance human... 1 0 0 1 0 0
7827 A natural framework for isogeometric fluid-str... interaction thin structures incompressible new... 0 1 1 0 0 0
7828 Inertial Effects on the Stress Generation of A... suspensions selfpropelled bodies generate uniq... 0 1 0 0 0 0
7829 On Gauge Invariance and Covariant Derivatives ... manuscript discuss construction covariant deri... 0 1 0 0 0 0
7830 A Compressed Sensing Approach for Distribution... work formulate fixedlength distribution matchi... 0 0 0 1 0 0
7831 A simple descriptor and predictor for the stab... predicting ground state alloy systems challeng... 0 1 0 0 0 0
7832 Fractional integrals and Fourier transforms paper gives short survey basic results related... 0 0 1 0 0 0
7833 Multi-Level Network Embedding with Boosted Low... opposed manual feature engineering tedious dif... 1 0 0 1 0 0
7834 Deviation from the dipole-ice model in the new... spin ice research small variations structure i... 0 1 0 0 0 0
7835 Generating Nontrivial Melodies for Music as a ... present hybrid neural network rulebased system... 1 0 0 0 0 0
7836 Vision and Challenges for Knowledge Centric Ne... creation smart future information society inte... 1 0 0 0 0 0
7837 Extracting Geometry from Quantum Spacetime: Ob... acceptable quantum gravity theory must allow u... 0 1 0 0 0 0
7838 Data-Driven Estimation of Travel Latency Cost ... develop method estimate data travel latency co... 1 0 1 0 0 0
7839 Autoencoder Based Sample Selection for Self-Ta... selftaught learning technique uses large numbe... 0 0 0 1 0 0
7840 Guiding Chemical Synthesis: Computational Pred... develop computational method regiosqm predicti... 0 1 0 0 0 0
7841 Potential-Function Proofs for First-Order Methods note discusses proofs convergence firstorder m... 1 0 0 0 0 0
7842 Multidimensional $p$-adic continued fraction a... give new class multidimensional padic continue... 0 0 1 0 0 0
7843 Shutting down or powering up a (U)LIRG? Merger... present new sinfoni nearinfrared integral fiel... 0 1 0 0 0 0
7844 Asymptotics to all orders of the Hurwitz zeta ... present several formulae larget asymptotics mo... 0 0 1 0 0 0
7845 Distributed Stochastic Approximation with Loca... propose distributed version stochastic approxi... 1 0 0 0 0 0
7846 Expected Policy Gradients propose expected policy gradients epg unify st... 1 0 0 1 0 0
7847 A new Hysteretic Nonlinear Energy Sink (HNES) behavior new hysteretic nonlinear energy sink ... 0 1 0 0 0 0
7848 Ultra-Low Noise Amplifier Design for Magnetic ... paper demonstrates designing developing ultral... 0 1 0 0 0 0
7849 Virtual Astronaut for Scientific Visualization... support scientific visualization multiplemissi... 1 1 0 0 0 0
7850 Self-Supervised Generalisation with Meta Auxil... learning auxiliary tasks shown improve general... 1 0 0 1 0 0
7851 Measuring High-Energy Spectra with HAWC highaltitude watercherenkov hawc experiment te... 0 1 0 0 0 0
7852 A Study on Arbitrarily Varying Channels with C... work study two models arbitrarily varying chan... 1 0 1 0 0 0
7853 On the Three Properties of Stationary Populati... propose three properties related stationary po... 0 0 0 0 1 0
7854 Generating and designing DNA with deep generat... propose generative neural network methods gene... 1 0 0 1 0 0
7855 Radon background in liquid xenon detectors radioactive daughters isotope rn one highest r... 0 1 0 0 0 0
7856 Minimax Regret Bounds for Reinforcement Learning consider problem provably optimal exploration ... 1 0 0 1 0 0
7857 Asymptotic Theory for the Maximum of an Increa... citehillmotegi present new general asymptotic ... 0 0 1 1 0 0
7858 Resilient Active Information Gathering with Mo... applications safety security rescue robotics m... 1 0 0 1 0 0
7859 Optical properties of a four-layer waveguiding... theoretical study optical properties te tm mod... 0 1 0 0 0 0
7860 High Dimensional Structured Superposition Models high dimensional superposition models characte... 1 0 0 1 0 0
7861 Source Forager: A Search Engine for Similar So... developers spend significant amount time searc... 1 0 0 0 0 0
7862 Crossmatching variable objects with the Gaia data tens millions new variable objects expected id... 0 1 0 0 0 0
7863 A New Test of Multivariate Nonlinear Causality multivariate nonlinear granger causality devel... 0 0 0 1 0 0
7864 Nonlinear dynamics of polar regions in paraele... dynamic dielectric nonlinearity barium stronti... 0 1 0 0 0 0
7865 Nonlinear Modal Decoupling Based Power System ... nonlinear modal decoupling nmd recently propos... 1 0 0 0 0 0
7866 KELT-18b: Puffy Planet, Hot Host, Probably Per... report discovery keltb transiting hot jupiter ... 0 1 0 0 0 0
7867 BAMBI: An R package for Fitting Bivariate Angu... statistical analyses directional angular data ... 0 0 0 1 0 0
7868 Finite Sample Analysis of Two-Timescale Stocha... twotimescale stochastic approximation sa algor... 1 0 0 0 0 0
7869 Existence and uniqueness of solutions to Y-sys... consider ysystem functional equations form ynx... 0 1 0 0 0 0
7870 Normalization of Neural Networks using Analyti... address problem estimating statistics hidden u... 0 0 0 1 0 0
7871 Ferrimagnetism in the Spin-1/2 Heisenberg Anti... ground state spin heisenberg antiferromagnet d... 0 1 0 0 0 0
7872 Delta sets for symmetric numerical semigroups ... work extends results known delta sets nonsymme... 0 0 1 0 0 0
7873 Riemann-Hilbert problems for the resolved coni... study riemannhilbert problems associated donal... 0 0 1 0 0 0
7874 On the Power of Over-parametrization in Neural... provide new theoretical insights overparametri... 0 0 0 1 0 0
7875 Multi-Label Learning with Label Enhancement task multilabel learning predict set relevant ... 1 0 0 0 0 0
7876 Unsure When to Stop? Ask Your Semantic Neighbors iterative supervised learning algorithms commo... 1 0 0 1 0 0
7877 Deep Generative Learning via Variational Gradi... propose general framework learn deep generativ... 1 0 0 1 0 0
7878 Warming trend in cold season of the Yangtze Ri... based meteorological data investigated tempera... 0 0 0 1 0 0
7879 Modeling and Quantifying the Forces Driving On... video popularity essential reference optimizin... 1 0 0 0 0 0
7880 Multiagent Bidirectionally-Coordinated Nets: E... many artificial intelligence ai applications o... 1 0 0 0 0 0
7881 Measurement of the Lorentz-FitzGerald Body Con... complete foundational discussion acceleration ... 0 1 0 0 0 0
7882 Information Directed Sampling for Stochastic B... consider stochastic multiarmed bandit problems... 1 0 0 1 0 0
7883 Multi-Evidence Filtering and Fusion for Multi-... supervised object detection semantic segmentat... 0 0 0 1 0 0
7884 Hausdorff operators on holomorphic Hardy space... aim paper characterize nonnegative functions v... 0 0 1 0 0 0
7885 Three-dimensional color code thresholds via st... threedimensional color codes advantages faultt... 0 1 0 0 0 0
7886 Does Your Phone Know Your Touch? paper explores supervised techniques continuou... 0 0 0 1 0 0
7887 Nucleus: A Pilot Project early environmental scan conducted research li... 1 0 0 0 0 0
7888 Non Volatile MoS$_{2}$ Field Effect Transistor... demonstrate nonvolatile ntype backgated mos tr... 0 1 0 0 0 0
7889 Fast and Accurate Sparse Coding of Visual Stim... memristive crossbars become popular means real... 1 0 0 0 0 0
7890 Astronomy of Cholanaikkan tribe of Kerala cholanaikkans diminishing tribe india populati... 0 1 0 0 0 0
7891 Integral Equations and Machine Learning light transport simulation reinforcement learn... 1 0 0 0 0 0
7892 Experiments on bright field and dark field hig... using high energy electron beam imaging high d... 0 1 0 0 0 0
7893 A Non-linear Approach to Space Dimension Perce... developmental robotics offers new approach num... 1 0 0 0 0 0
7894 Foolbox: A Python toolbox to benchmark the rob... even todays advanced machine learning models e... 1 0 0 1 0 0
7895 Two-dimensional boron on Pb (110) surface simulate boron pb surface using ab initio evol... 0 1 0 0 0 0
7896 SOLAR: Deep Structured Latent Representations ... modelbased reinforcement learning rl methods b... 1 0 0 1 0 0
7897 Robust and Fast Decoding of High-Capacity Colo... use color qr codes brings extra data capacity ... 1 0 0 0 0 0
7898 The quest for H$_3^+$ at Neptune: deep burn ob... emission molecular ion h powerful diagnostic u... 0 1 0 0 0 0
7899 Unreasonable Effectivness of Deep Learning show well known rules back propagation arise w... 0 0 0 1 0 0
7900 Collaborative Summarization of Topic-Related V... large collections videos grouped clusters topi... 1 0 0 0 0 0
7901 ELICA: An Automated Tool for Dynamic Extractio... requirements elicitation requires extensive kn... 1 0 0 1 0 0
7902 Crystal field excitations and magnons: their r... present results neutron scattering experiments... 0 1 0 0 0 0
7903 Redistributing Funds across Charitable Crowdfu... kickstarter crowdfunding campaigns successfull... 1 0 0 0 0 0
7904 Far-HO: A Bilevel Programming Package for Hype... franceschi et al proposed unified mathematical... 0 0 0 1 0 0
7905 Analysis of Coupled Scalar Systems by Displace... potential functionals introduced recently impo... 1 0 1 0 0 0
7906 Deterministic subgraph detection in broadcast ... present simple deterministic algorithms subgra... 1 0 0 0 0 0
7907 On Graded Lie Algebras of Characteristic Three... consider finitedimensional irreducible transit... 0 0 1 0 0 0
7908 Femtosecond mega-electron-volt electron microd... instruments visualize transient structural cha... 0 1 0 0 0 0
7909 Deep Recurrent Neural Network for Protein Func... highthroughput biological sequencing becomes f... 1 0 0 1 0 0
7910 CubemapSLAM: A Piecewise-Pinhole Monocular Fis... present realtime featurebased slam simultaneou... 1 0 0 0 0 0
7911 $J$-holomorphic disks with pre-Lagrangian boun... purpose paper carry classical construction non... 0 0 1 0 0 0
7912 Evolutionary sequences for hydrogen-deficient ... present set full evolutionary sequences white ... 0 1 0 0 0 0
7913 On the uniqueness of complete biconservative s... study uniqueness complete biconservative surfa... 0 0 1 0 0 0
7914 Quantum Annealing Applied to De-Conflicting Op... present mapping class simplified air traffic m... 1 0 0 0 0 0
7915 On rumour propagation among sceptics junior machado zuluaga studied model understan... 0 0 1 1 0 0
7916 Neutron activation and prompt gamma intensity ... monte carlo simulations using mcnp performed s... 0 1 0 0 0 0
7917 Solving 1ODEs with functions present new approach deal first order ordinary... 0 1 1 0 0 0
7918 System Level Framework for Assessing the Accur... significant research conducted recent years de... 0 0 0 1 0 0
7919 Strong Consistency of Spectral Clustering for ... paper prove strong consistency several methods... 0 0 0 1 0 0
7920 Extremely fast simulations of heat transfer in... besides huge technological importance fluidize... 0 1 0 0 0 0
7921 Machine learning out-of-equilibrium phases of ... neural network based machine learning emerging... 0 1 0 0 0 0
7922 Exact Tensor Completion from Sparsely Corrupte... paper conducts rigorous analysis provable esti... 1 0 0 1 0 0
7923 On Triangle Inequality Based Approximation Err... distance true numerical solutions metric consi... 0 1 0 0 0 0
7924 Maximal solutions for the Infinity-eigenvalue ... article prove first eigenvalue inftylaplacian ... 0 0 1 0 0 0
7925 Algorithmic Decision Making in the Presence of... variety complex decisionmaking tasks doctors p... 0 0 0 1 0 0
7926 BL-MNE: Emerging Heterogeneous Social Network ... network embedding aims projecting network data... 1 0 0 0 0 0
7927 Multi-channel discourse as an indicator for Bi... research aims identify bitcoinrelated news pub... 0 0 0 0 0 1
7928 Fano Resonances in a Photonic Crystal Covered ... optical properties photonic crystal covered pe... 0 1 0 0 0 0
7929 Non-Stationary Bandits with Habituation and Re... many settings involve sequential decisionmakin... 1 0 1 0 0 0
7930 Exception-Based Knowledge Updates existing methods dealing knowledge updates dif... 1 0 0 0 0 0
7931 Dynamics of observables in rank-based models a... seminal work several macroscopic market observ... 0 0 0 0 0 1
7932 An Approach to Controller Design Based on the ... paper approach controller design based cloud m... 1 0 0 0 0 0
7933 A 3pi Search for Planet Nine at 3.4 microns wi... recent planet nine hypothesis led many observa... 0 1 0 0 0 0
7934 Integrable 7-point discrete equations and evol... consider differentialdifference equations dete... 0 1 0 0 0 0
7935 Complete Analysis of a Random Forest Model random forests become important tool improving... 0 0 0 1 0 0
7936 Relative Chern character number and super-conn... two complex vector bundles admitting homomorph... 0 0 1 0 0 0
7937 Mental Sampling in Multimodal Representations resources natural environment concepts semanti... 1 0 0 0 0 0
7938 The Simulator: Understanding Adaptive Sampling... propose novel technique analyzing adaptive sam... 1 0 0 1 0 0
7939 A new method to suppress the bias in polarized... computing polarised intensities noisy data sto... 0 1 0 0 0 0
7940 Bootstrapping kernel intensity estimation for ... spatial point process context kernel intensity... 0 0 0 1 0 0
7941 Levi-Kahler reduction of CR structures, produc... study cr geometry arbitrary codimension introd... 0 0 1 0 0 0
7942 Network Representation Learning: A Survey widespread use information technologies inform... 1 0 0 1 0 0
7943 Confidence intervals for the area under the re... receiver operating characteristic roc curves w... 0 0 0 1 0 0
7944 Maximum Entropy Flow Networks maximum entropy modeling flexible popular fram... 0 0 0 1 0 0
7945 Overcoming the Sign Problem at Finite Temperat... variational tensor network renormalization app... 0 1 0 0 0 0
7946 Nonasymptotic estimation and support recovery ... propose general framework nonasymptotic covari... 0 0 1 1 0 0
7947 Most Complex Deterministic Union-Free Regular ... regular language l unionfree represented regul... 1 0 0 0 0 0
7948 Piecewise Deterministic Markov Processes and t... piecewise deterministic markov processes pdmps... 0 0 0 1 0 0
7949 Visual Speech Language Models language models lm powerful lipreading systems... 1 0 0 0 0 0
7950 Millisecond Pulsars as Standards: Timing, posi... millisecond pulsars msps great potential set s... 0 1 0 0 0 0
7951 Multipole resonances and directional scatterin... propose use optical antennas made natural hype... 0 1 0 0 0 0
7952 Discerning Dark Energy Models with High-Redshi... following success type ia supernovae constrain... 0 1 0 0 0 0
7953 Controlling Physical Attributes in GAN-Acceler... highprecision modeling subatomic particle inte... 1 0 0 0 0 0
7954 Max-value Entropy Search for Efficient Bayesia... entropy search es predictive entropy search pe... 1 0 1 1 0 0
7955 On stochastic differential equations with arbi... recent article jentzen mllergronbach yaroslavt... 0 0 1 0 0 0
7956 Energy Dissipation in Monolayer MoS$_2$ Electr... advancement nanoscale electronics limited ener... 0 1 0 0 0 0
7957 Adaptive Estimation of Nonparametric Geometric... article studies recovery graphons convolution ... 0 0 1 1 0 0
7958 Angular and Temporal Correlation of V2X Channe... g millimeter wave mmwave technology envisioned... 1 0 0 0 0 0
7959 Comparison of Decision Tree Based Classificati... plants monitor surrounding environment control... 1 1 0 1 0 0
7960 Interactive Reinforcement Learning for Object ... humans able identify referred visual object co... 1 0 0 0 0 0
7961 Adaptive Bayesian Sampling with Monte Carlo EM present novel technique learning mass matrices... 1 0 0 1 0 0
7962 Neutrino Fluxes from a Core-Collapse Supernova... characteristics gravitational collapse superno... 0 1 0 0 0 0
7963 Resource Allocation for Wireless Networks: A D... consider multicell joint power control schedul... 0 0 1 0 0 0
7964 Modular operads and Batalin-Vilkovisky geometry copy article published imrn describe noncommut... 0 0 1 0 0 0
7965 Response of QD to structured beams via convolu... propose new expression response quadrant detec... 0 1 0 0 0 0
7966 Regularized arrangements of cellular complexes paper propose novel algorithm combine two cell... 1 0 0 0 0 0
7967 Duality of deconfined quantum critical point i... paper discuss nacuteeel kekulacutee valence bo... 0 1 0 0 0 0
7968 A Survey on Cloud Video Multicasting Over Mobi... since multimedia streaming become popular rese... 1 0 0 0 0 0
7969 The Brauer trees of unipotent blocks paper complete determination brauer trees unip... 0 0 1 0 0 0
7970 An Empirical Bayes Approach to Regularization ... manuscript proposes novel empirical bayes tech... 0 0 0 1 0 0
7971 On minimum distance of locally repairable codes distributed cloud storage systems used reliabl... 1 0 0 0 0 0
7972 The MoEDAL experiment at the LHC: status and r... moedal experiment lhc optimised detect highly ... 0 1 0 0 0 0
7973 Towards a population synthesis model of self-g... likely protostellar systems undergo brief phas... 0 1 0 0 0 0
7974 Credit Risk Meets Random Matrices: Coping with... review recent progress modeling credit risk co... 0 0 0 0 0 1
7975 Peptide-Spectra Matching from Weak Supervision many scientific domains face fundamental probl... 0 0 0 1 0 0
7976 Overcoming data scarcity with transfer learning despite increasing focus data publication disc... 1 0 0 1 0 0
7977 Dirichlet Bayesian Network Scores and the Maxi... classic approach learning bayesian networks da... 0 0 1 1 0 0
7978 Thermal lattice Boltzmann method for multiphas... new method simulate heat transport multiphase ... 0 1 0 0 0 0
7979 Control for Schrödinger equation on hyperbolic... show nonempty open set hyperbolic surface prov... 0 0 1 0 0 0
7980 Grand Fujii-Fujii-Nakamoto operator inequality... paper shall prove grand fujiifujiinakamoto ope... 0 0 1 0 0 0
7981 Stability for gains from large investors' stra... prove continuity controlled sde solution skoro... 0 0 1 0 0 0
7982 Apparent and Intrinsic Evolution of Active Reg... analyze evolution fe xii coronal plasma upflow... 0 1 0 0 0 0
7983 Size scaling of failure strength with fat-tail... investigate size scaling macroscopic fracture ... 0 1 0 0 0 0
7984 Time-dependent focusing Mean-Field Games: the ... consider timedependent viscous meanfield games... 0 0 1 0 0 0
7985 Evolution of protoplanetary disks from their t... highresolution imaging reveals large morpholog... 0 1 0 0 0 0
7986 Sandwich semigroups in locally small categorie... fix sets x write mathcalptxy set partial funct... 0 0 1 0 0 0
7987 Environmental feedback drives cooperation in s... exploiting others beneficial individually coul... 0 0 0 0 1 0
7988 Finitely forcible graph limits are universal theory graph limits represents large graphs an... 0 0 1 0 0 0
7989 Sex-biased dispersal: a review of the theory dispersal ubiquitous throughout tree life fact... 0 0 0 0 1 0
7990 Nonequilibrium quantum dynamics of partial sym... vortex boseeinstein condensate ring undergoes ... 0 1 0 0 0 0
7991 Learning Hidden Quantum Markov Models hidden quantum markov models hqmms thought qua... 0 0 0 1 0 0
7992 Gradient Descent using Duality Structures gradient descent commonly used solve optimizat... 1 0 0 0 0 0
7993 On the Universal Approximation Property and Eq... largescale deep neural networks memory intensi... 0 0 0 1 0 0
7994 Riemannian stochastic quasi-Newton algorithm w... stochastic variance reduction algorithms recen... 1 0 1 1 0 0
7995 Higher cohomology vanishing of line bundles on... give proof conjecture raised michael finkelber... 0 0 1 0 0 0
7996 Strong instability of ground states to a fourt... note prove instability blowup ground state sol... 0 0 1 0 0 0
7997 Coalescing particle systems and applications t... study stochastic particle system logarithmical... 0 0 1 0 0 0
7998 Periodic solution for strongly nonlinear oscil... paper applies hes new amplitudefrequency relat... 0 1 0 0 0 0
7999 Singular Degenerations of Lie Supergroups of T... complex lie superalgebras mathfrakg type da al... 0 0 1 0 0 0
8000 Logarithmic singularities and quantum oscillat... report magnetotransport measurements magnetica... 0 1 0 0 0 0
8001 A General Algorithm to Calculate the Inverse P... address general mathematical problem computing... 0 0 1 0 0 0
8002 Latent Mixture Modeling for Clustered Data article proposes mixture modeling approach est... 0 0 0 1 0 0
8003 Fast Switching Dual Fabry-Perot-Cavity-based O... dual fabryperotcavitybased optical refractomet... 0 1 0 0 0 0
8004 Dixmier traces and residues on weak operator i... develop theory modulated operators general pri... 0 0 1 0 0 0
8005 Investigating early-type galaxy evolution with... galex detected significant fraction earlytype ... 0 1 0 0 0 0
8006 Lazy Automata Techniques for WS1S present new decision procedure logic wss origi... 1 0 0 0 0 0
8007 Joint distribution of conjugate algebraic numb... given polynomial qzaazdotsanzn vector positive... 0 0 1 0 0 0
8008 On wrapping the Kalman filter and estimating w... paper analyzes directional tracking extended k... 1 0 0 0 0 0
8009 Towards a Context-Aware IDE-Based Meta Search ... study shows software developers spend time loo... 1 0 0 0 0 0
8010 Infrared Flares from M Dwarfs: a Hinderance to... many current future exoplanet missions pushing... 0 1 0 0 0 0
8011 Topic Identification for Speech without ASR modern topic identification topic id systems s... 1 0 0 0 0 0
8012 Bio-Inspired Multi-Layer Spiking Neural Networ... spiking neural networks snns enable powereffic... 1 0 0 0 0 0
8013 Zonotope hit-and-run for efficient sampling fr... determinantal point processes dpps distributio... 1 0 0 1 0 0
8014 Brownian motion: from kinetics to hydrodynamics brownian motion served pilot studies diffusion... 0 1 0 0 0 0
8015 Natural Time, Nowcasting and the Physics of Ea... paper describes use idea natural time propose ... 0 1 0 0 0 0
8016 Optimistic mirror descent in saddle-point prob... owing connection generative adversarial networ... 0 0 0 1 0 0
8017 Design of an Autonomous Precision Pollination ... precision robotic pollination systems fill gap... 1 0 0 0 0 0
8018 A sufficiently complicated noded Schottky grou... theoretical existence nonclassical schottky gr... 0 0 1 0 0 0
8019 DONUT: CTC-based Query-by-Example Keyword Spot... keyword spottingor wakeword detectionis essent... 1 0 0 0 0 0
8020 Emulation of the space radiation environment f... radiobiology studies effects galactic cosmic r... 0 1 0 0 0 0
8021 Convex Relaxations for Pose Graph Optimization... pose graph optimization involves estimation se... 1 0 0 0 0 0
8022 Quasi-Frobenius-splitting and lifting of Calab... extending notion frobeniussplitting prove ever... 0 0 1 0 0 0
8023 Consistency and Asymptotic Normality of Latent... latent block model lbm modelbased method clust... 0 0 1 1 0 0
8024 Linking Generative Adversarial Learning and Bi... note point basic link generative adversarial g... 1 0 0 1 0 0
8025 High Speed Elephant Flow Detection Under Parti... paper introduce new framework detect elephant ... 1 0 0 0 0 0
8026 Scalable k-Means Clustering via Lightweight Co... coresets compact representations data sets mod... 1 0 0 1 0 0
8027 Scaling relations in the diffusive infiltratio... recent work fluid infiltration heleshaw cell p... 0 1 0 0 0 0
8028 Adaptive Sequential MCMC for Combined State an... case linear state space model implement mcmc s... 0 0 0 1 0 0
8029 Information sensitivity functions to assess pa... new class functions called information sensiti... 0 0 0 1 0 0
8030 Combinatorial cost: a coarse setting main inspiration paper paper elek introduces c... 0 0 1 0 0 0
8031 Uncharted Forest a Technique for Exploratory D... exploratory data analysis crucial developing u... 0 0 0 1 0 0
8032 Surface thermophysical properties investigatio... work investigate surface thermophysical proper... 0 1 0 0 0 0
8033 Reconfigurable cluster state generation in spe... present new approach generating cluster states... 0 1 0 0 0 0
8034 Whole planet coupling between climate, mantle,... earths climate mantle core interact geologic t... 0 1 0 0 0 0
8035 Solutions of the Helmholtz equation given by s... find form refractive index solution eikonal eq... 0 1 0 0 0 0
8036 SemEval-2017 Task 1: Semantic Textual Similari... semantic textual similarity sts measures meani... 1 0 0 0 0 0
8037 Modelling Luminous-Blue-Variable Isolation observations show luminous blue variables lbvs... 0 1 0 0 0 0
8038 Service adoption spreading in online social ne... collective behaviour people adopting innovatio... 1 1 0 0 0 0
8039 The Amplitude-Phase Decomposition for the Magn... phase tensor pt marked breakthrough understand... 0 1 0 0 0 0
8040 Real-time Convolutional Neural Networks for Em... paper propose implement general convolutional ... 1 0 0 0 0 0
8041 Compound-Specific Chlorine Isotope Analysis of... compoundspecific chlorine isotope analysis csi... 0 1 0 0 0 0
8042 Realization of an atomically thin mirror using... advent new materials van der waals heterostruc... 0 1 0 0 0 0
8043 Equivariant mirror symmetry for the weighted p... paper establish equivariant mirror symmetry we... 0 0 1 0 0 0
8044 Precise Recovery of Latent Vectors from Genera... generative adversarial networks gans transform... 1 0 0 1 0 0
8045 The dependence of protostar formation on the g... report results twelve simulations collapse mol... 0 1 0 0 0 0
8046 Current-Voltage Characteristics of Weyl Semime... currentvoltage characteristics new range devic... 0 1 0 0 0 0
8047 Safer Classification by Synthesis discriminative approach classification using d... 1 0 0 1 0 0
8048 A geometrical analysis of global stability in ... recurrent neural networks extensively studied ... 0 0 0 0 1 0
8049 Submolecular-resolution non-invasive imaging o... scanning probe microscopy spm extensively appl... 0 1 0 0 0 0
8050 A Novel Stochastic Stratified Average Gradient... sgd stochastic gradient descent popular algori... 1 0 0 1 0 0
8051 First observation of Ce volume collapse in CeN occasion th anniversary first observation ce v... 0 1 0 0 0 0
8052 Experimentation with MANETs of Smartphones mobile adhoc networks manets identified key em... 1 0 0 0 0 0
8053 Interaction between cluster synchronization an... real world significant relation human behavior... 0 1 0 0 0 0
8054 Focusing on a Probability Element: Parameter S... message importance measure mim applicable char... 1 0 1 0 0 0
8055 Deep Multi-camera People Detection paper addresses problem multiview people occup... 1 0 0 0 0 0
8056 SMAGEXP: a galaxy tool suite for transcriptomi... bakground proliferation available microarray h... 0 0 0 1 1 0
8057 Big Data Fusion to Estimate Fuel Consumption: ... falling oil revenues rapid urbanization puttin... 1 0 0 0 0 0
8058 Person Following by Autonomous Robots: A Categ... wide range humanrobot collaborative applicatio... 1 0 0 0 0 0
8059 Structures, phase transitions, and magnetic pr... cosi recently reported exhibit remarkable magn... 0 1 0 0 0 0
8060 Rigid realizations of modular forms in Calabi-... construct examples modular rigid calabiyau thr... 0 0 1 0 0 0
8061 Steady-state analysis of single exponential va... consider infinitebuffer singleserver queue int... 1 0 1 0 0 0
8062 The agreement distance of rooted phylogenetic ... minimal number rooted subtree prune regraft rs... 0 0 0 0 1 0
8063 Optimization of the Waiting Time for H-R Coord... analytical model humanrobot hr coordination pr... 1 0 0 0 0 0
8064 Introducing AIC model averaging in ecological ... aim akaike information criterion aic widely us... 0 0 0 0 1 0
8065 Extrasolar Planets and Their Host Stars order understand exoplanet need understand par... 0 1 0 0 0 0
8066 Modeling polypharmacy side effects with graph ... use drug combinations termed polypharmacy comm... 0 0 0 1 1 0
8067 Musical intervals under 12-note equal temperam... musical intervals multiple semitones note equa... 0 0 1 0 0 0
8068 Determining rough first order perturbations of... show knowledge dirichlet neumann map rough q d... 0 0 1 0 0 0
8069 Data Science: A Three Ring Circus or a Big Tent? part collection discussion pieces david donoho... 0 0 0 1 0 0
8070 Optimal Control of Partially Observable Piecew... paper consider control problem partially obser... 0 0 1 0 0 0
8071 Moment-based parameter estimation in binomial ... binomial random intersection graphs used parsi... 1 0 1 1 0 0
8072 Efficient Compression and Indexing of Trajecto... present new compressed representation free tra... 1 0 0 0 0 0
8073 Denoising Linear Models with Permuted Data multivariate linear regression model shuffled ... 0 0 1 1 0 0
8074 Collisions in shape memory alloys present model instantaneous collisions solid m... 0 0 1 0 0 0
8075 Big Data Meets HPC Log Analytics: Scalable App... todays highperformance computing hpc systems h... 1 0 0 0 0 0
8076 Clustering Spectrum of scale-free networks realworld networks often powerlaw degrees scal... 1 1 0 0 0 0
8077 Multiplex model of mental lexicon reveals expl... word similarities affect language acquisition ... 1 1 0 0 0 0
8078 Weighted $L_{p,q}$-estimates for higher order ... prove weighted lpqestimates divergence type hi... 0 0 1 0 0 0
8079 Various sharp estimates for semi-discrete Ries... give several sharp estimates class combination... 0 0 1 0 0 0
8080 Linear Spectral Estimators and an Application ... phase retrieval refers problem recovering real... 0 0 0 1 0 0
8081 A geometric perspective on the method of descent derive representation formula tensorial wave e... 0 0 1 0 0 0
8082 Detecting Changes in Hidden Markov Models consider problem sequential detection change s... 0 0 1 1 0 0
8083 Towards an Empirical Study of Affine Types for... lacasa type system programming model enforce o... 1 0 0 0 0 0
8084 FPGA Architecture for Deep Learning and its ap... autonomous control systems onboard planetary r... 1 1 0 0 0 0
8085 Boundary Layer Problems in the Viscosity-Diffu... paper study boundary layer problems incompress... 0 0 1 0 0 0
8086 Why Adaptively Collected Data Have Negative Bi... scientific experiments online ab testing previ... 1 0 0 1 0 0
8087 Machine learning of neuroimaging to diagnose c... introduction advanced machine learning methods... 0 0 0 0 1 0
8088 Exact Diffusion for Distributed Optimization a... part work developed exact diffusion algorithm ... 0 0 1 0 0 0
8089 Approximating meta-heuristics with homotopic r... much combinatorial optimisation problems const... 1 0 0 1 0 0
8090 Real embedding and equivariant eta forms bismut zhang establish mod z embedding formula... 0 0 1 0 0 0
8091 Hierarchical Block Sparse Neural Networks sparse deep neural networksdnns efficient memo... 0 0 0 1 0 0
8092 Are crossing dependencies really scarce? syntactic structure sentence modelled tree ver... 1 1 0 0 0 0
8093 Theory of Compact Hausdorff Shape paper aim establish new shape theory compact h... 0 0 1 0 0 0
8094 A Proof of the Herschel-Maxwell Theorem Using ... article use strong law large numbers give proo... 0 0 1 0 0 0
8095 Heating and cooling of coronal loops with turb... using enthalpybased thermal evolution loops eb... 0 1 0 0 0 0
8096 How to avoid the curse of dimensionality: scal... particle filters popular flexible class numeri... 0 0 1 1 0 0
8097 Motion and Cooperative Transportation Planning... paper presents hybrid control framework motion... 1 0 0 0 0 0
8098 Realistic finite temperature simulations of ma... performed realistic atomistic simulations fini... 0 1 0 0 0 0
8099 Effective Tensor Sketching via Sparsification paper investigate effective sketching schemes ... 1 0 0 1 0 0
8100 Recommendation with k-anonymized Ratings recommender systems widely used predict person... 1 0 0 1 0 0
8101 Ro-vibrational states of H$_2^+$. Variational ... nonrelativistic variational calculation comple... 0 1 0 0 0 0
8102 Control of automated guided vehicles without c... formulate optimization problem control large n... 1 0 0 0 0 0
8103 Meta-learning: searching in the model space free lunch single learning algorithm outperfor... 0 0 0 1 0 0
8104 GIFT: Guided and Interpretable Factorization f... given multiplatform genome data prior knowledg... 1 0 0 0 1 0
8105 Synchronization of spin torque oscillators thr... spin torque oscillators placed onto nonmagneti... 0 1 0 0 0 0
8106 Long quasi-polycyclic $t-$CIS codes study complementary information set codes leng... 1 0 0 0 0 0
8107 Fairness in Criminal Justice Risk Assessments:... objectives discussions fairness criminal justi... 0 0 0 1 0 0
8108 Remarks to the article: New Light on the Inven... article analysis carried within confines repli... 0 1 0 0 0 0
8109 The spin-Brauer diagram algebra investigate spinbrauer diagram algebra denoted... 0 0 1 0 0 0
8110 Superheating in coated niobium using muon spin rotation shown field first flu... 0 1 0 0 0 0
8111 Contraction Analysis of Nonlinear DAE Systems paper studies contraction properties nonlinear... 0 0 1 0 0 0
8112 New Braided $T$-Categories over Hopf (co)quasi... let h hopf quasigroup bijective antipode let a... 0 0 1 0 0 0
8113 On the Reconstruction Risk of Convolutional Sp... sparse dictionary learning sdl become popular ... 1 0 1 1 0 0
8114 Adaptive Questionnaires for Direct Identificat... consider problem identifying profitable produc... 1 0 0 1 0 0
8115 Identities involving Bernoulli and Euler polyn... present various identities involving classical... 0 0 1 0 0 0
8116 Gate Tunable Magneto-resistance of Ultra-Thin ... work magnetoresistance mr ultrathin wtebn hete... 0 1 0 0 0 0
8117 Morpheo: Traceable Machine Learning on Hidden ... morpheo transparent secure machine learning pl... 1 0 0 1 0 0
8118 Hölder regularity of the 2D dual semigeostroph... obtain hlder regularity time derivative soluti... 0 0 1 0 0 0
8119 New nanostructures of carbon: Quasifullerenes ... based third allotropic form carbon fullerenes ... 0 1 0 0 0 0
8120 The Top 10 Topics in Machine Learning Revisite... topics machine learning commonly addressed res... 1 0 0 0 0 0
8121 Random taste heterogeneity in discrete choice ... study proposes mixed logit model multivariate ... 0 0 0 1 0 0
8122 Microscopic mechanism of tunable band gap in p... tuning band gaps twodimensional materials grea... 0 1 0 0 0 0
8123 Quasi-steady state reduction for the Michaelis... michaelismenten mechanism probably best known ... 0 0 1 0 0 0
8124 All the people around me: face discovery in eg... given unconstrained stream images captured wea... 1 0 0 0 0 0
8125 Graphene oxide nanosheets disrupt lipid compos... graphene potential make significant impact soc... 0 0 0 0 1 0
8126 Physical insight into the thermodynamic uncert... using brownian motion periodic potentials vx t... 0 1 0 0 0 0
8127 Observation of a Modulational Instability in B... observe breakup dynamics elongated cloud conde... 0 1 0 0 0 0
8128 Dynamics of the scenery flow and conical densi... conical density theorems used geometric measur... 0 0 1 0 0 0
8129 Model-independent analyses of non-Gaussianity ... despite wealth planck results difficulties dis... 0 1 0 0 0 0
8130 Enhanced mixing in giant impact simulations wi... giant impacts gis common late stage planet for... 0 1 0 0 0 0
8131 New Reinforcement Learning Using a Chaotic Neu... expectation emergence higher functions getting... 1 0 0 0 0 0
8132 Tensorizing Generative Adversarial Nets generative adversarial network gan variants ex... 1 0 0 1 0 0
8133 Pretending Fair Decisions via Stealthily Biase... fairness decisionmakers believed auditable thi... 1 0 0 1 0 0
8134 Design of a Time Delay Reservoir Using Stochas... paper presents stochastic logic time delay res... 1 0 0 1 0 0
8135 Polaritons in Living Systems: Modifying Energy... photosynthetic organisms rely series selfassem... 0 1 0 0 0 0
8136 A Matrix Expander Chernoff Bound prove chernofftype bound sums matrixvalued ran... 1 0 0 0 0 0
8137 Learning Neural Representations of Human Cogni... cognitive neuroscience enjoying rapid increase... 1 0 0 1 0 0
8138 Unsupervised Body Part Regression via Spatiall... automatic body part recognition ct slices bene... 1 0 0 0 0 0
8139 Investigating the Application of Common-Sense ... word obfuscation substitution means replacing ... 1 0 0 0 0 0
8140 Titanium dioxide hole-blocking layer in ultra-... one remaining obstacles approaching theoretica... 0 1 0 0 0 0
8141 Phase Space Sketching for Crystal Image Analys... recent developments imaging techniques enable ... 0 1 0 0 0 0
8142 Specification tests in semiparametric transfor... consider semiparametric transformation models ... 0 0 1 1 0 0
8143 Collusions in Teichmüller expansions mathfrakp subseteq mathbbzzeta prime ideal p p... 0 0 1 0 0 0
8144 Driver Drowsiness Estimation from EEG Signals ... one big challenge hinders transition braincomp... 1 0 0 0 0 0
8145 The complex social network of surnames: A comp... present study social networks based analysis b... 1 1 0 0 0 0
8146 Electrical characterization of structured plat... platinum diselenide ptse exciting new member t... 0 1 0 0 0 0
8147 Topological $\mathbb{Z}_2$ Resonating-Valence-... oneparameter family longrange resonating valen... 0 1 0 0 0 0
8148 Scalable Inference for Space-Time Gaussian Cox... loggaussian cox process flexible popular class... 0 0 0 1 0 0
8149 The MISRA C Coding Standard and its Role in th... misra project started mission providing worldl... 1 0 0 0 0 0
8150 Finger Grip Force Estimation from Video using ... estimation hand grip force essential understan... 1 0 0 0 0 0
8151 Markov Properties for Graphical Models with Cy... investigate probabilistic graphical models all... 0 0 1 1 0 0
8152 A Fast Algorithm for Solving Henderson's Mixed... article investigates fast stable method solve ... 0 0 0 1 0 0
8153 Regularity and stability results for the level... article us mean curvature flow surgery derive ... 0 0 1 0 0 0
8154 Non-canonical Conformal Attractors for Single ... extend idea conformal attractors inflation non... 0 1 0 0 0 0
8155 Learning model-based planning from scratch conventional wisdom holds modelbased planning ... 1 0 0 1 0 0
8156 A Simple Reservoir Model of Working Memory wit... prefrontal cortex known involved many highleve... 0 0 0 0 1 0
8157 Tailoring spin defects in diamond atomicsize spin defects solids unique quantum ... 0 1 0 0 0 0
8158 Relaxed Oracles for Semi-Supervised Clustering pairwise samecluster queries one widely used f... 1 0 0 1 0 0
8159 Searching for axion stars and Q-balls with a t... light pseudoscalar fields promising candidates... 0 1 0 0 0 0
8160 Measuring Information Leakage in Website Finge... tor lowlatency anonymity system intended provi... 1 0 0 0 0 0
8161 Improving galaxy morphology with machine learning paper presents machine learning experiments pe... 0 1 0 0 0 0
8162 Magnetized strange quark model with Big Rip si... lrs locally rotationally symmetric bianchi typ... 0 1 0 0 0 0
8163 NPC: Neighbors Progressive Competition Algorit... learning many realworld datasets limited probl... 1 0 0 1 0 0
8164 On symmetric intersecting families family sets said emphsymmetric automorphism gr... 0 0 1 0 0 0
8165 The Geometry of Limit State Function Graphs an... last fifteen subset sampling method often used... 0 0 0 1 0 0
8166 Decay of Solutions to the Maxwell Equations on... work consider solutions maxwell equations schw... 0 0 1 0 0 0
8167 Machine Learning pipeline for discovering neur... consider problem diagnostic pattern recognitio... 0 0 0 1 0 0
8168 Covering and separation of Chebyshev points fo... riesz spotentials kxyxys investigate separatio... 0 0 1 0 0 0
8169 The Strong Small Index Property for Free Homog... show algebraically locally finite countable ho... 0 0 1 0 0 0
8170 The Unheralded Value of the Multiway Rendezvou... multiway rendezvous introduced theoretical csp... 1 0 0 0 0 0
8171 Sequential Multiple Testing study online multiple testing problem hypothes... 0 0 1 1 0 0
8172 On the selection of polynomials for the DLP al... paper characterize set polynomials finmathbb f... 1 0 1 0 0 0
8173 Existence of global weak solutions to the kine... consider class kinetic models polymeric fluids... 0 0 1 0 0 0
8174 Passivation and Cooperative Control of Equilib... maximal equilibriumindependent passivity meip ... 1 0 0 0 0 0
8175 OpenCluster: A Flexible Distributed Computing ... volume data generated modern astronomical tele... 1 1 0 0 0 0
8176 Magnetic order and spin dynamics across a ferr... quasid heavyfermion system ybnipxasx presence ... 0 1 0 0 0 0
8177 Pixel-Level Statistical Analyses of Prescribed... wildland fire dynamics complex turbulent dimen... 0 1 0 0 0 0
8178 Deep Reinforcement Learning for Swarm Systems recently deep reinforcement learning rl method... 1 0 0 1 0 0
8179 Predicting computational reproducibility of da... evaluating computational reproducibility data ... 0 0 0 1 0 0
8180 Experiment Segmentation in Scientific Discours... propose deep learning model identifying struct... 1 0 0 0 0 0
8181 Information-Theoretic Analysis of Refractory E... p speller braincomputer interface enables peop... 1 0 1 0 0 0
8182 Growth, Industrial Externality, Prospect Dynam... functions functionnings enable give structure ... 0 0 0 0 0 1
8183 Structure Preserving Model Reduction of Parame... reducedorder models roms popular efficiently s... 0 0 1 0 0 0
8184 Consensus measure of rankings ranking ordered sequence items item higher ran... 1 0 0 0 0 0
8185 Possible resonance effect of dark matter axion... dark matter axions generate peculiar effects s... 0 1 0 0 0 0
8186 A Composition Theorem for Randomized Query Com... let randomized query complexity relation error... 1 0 0 0 0 0
8187 Soliton solutions for the elastic metric on sp... article investigate first order reparametrizat... 0 0 1 0 0 0
8188 Influence of Personal Preferences on Link Dyna... study unique network dataset including periodi... 1 0 0 0 0 0
8189 PBW bases and marginally large tableaux in typ... explicitly describe isomorphism two combinator... 0 0 1 0 0 0
8190 Ensemble Clustering for Graphs propose ensemble clustering algorithm graphs e... 1 0 0 1 0 0
8191 Testing for Feature Relevance: The HARVEST Alg... feature selection highdimensional data small p... 0 0 0 1 0 0
8192 Energy Harvesting Enabled MIMO Relaying throug... paper considers multipleinput multipleoutput m... 1 0 0 0 0 0
8193 X-ray diagnostics of massive star winds observations powerful xray telescopes xmmnewto... 0 1 0 0 0 0
8194 Local asymptotic properties for Cox-Ingersoll-... paper consider onedimensional coxingersollross... 0 0 1 1 0 0
8195 JHelioviewer - Time-dependent 3D visualisation... context solar observatories providing worldwid... 0 1 0 0 0 0
8196 Topological Dirac Nodal-net Fermions in AlB$_2... based firstprinciples calculations effective m... 0 1 0 0 0 0
8197 Model-based Design Evaluation of a Compact, Hi... paper presents modelbased design evaluation in... 0 1 0 0 0 0
8198 Galactic Pal-eontology: Abundance Analysis of ... present chemical abundance analysis tidally di... 0 1 0 0 0 0
8199 Anisotropic mechanical and optical response an... transition metal carbides include wide variety... 0 1 0 0 0 0
8200 A critical analysis of string APIs: The case o... programming languages besides c provide native... 1 0 0 0 0 0
8201 Power Maxwell distribution: Statistical Proper... article proposed new probability distribution ... 0 0 0 1 0 0
8202 Deep Graphs propose algorithm deep learning networks graph... 0 0 0 1 0 0
8203 On the optimal investment-consumption and life... paper study stochastic optimal control problem... 0 0 0 0 0 1
8204 An Introduction to Adjoints and Output Error E... recent years use adjoint vectors computational... 1 1 0 0 0 0
8205 Incremental Sharpe and other performance ratios present new methodology computing incremental ... 0 0 0 0 0 1
8206 Saliency Detection by Forward and Backward Cue... prior knowledge objects object features helps ... 1 0 0 0 0 0
8207 Active sorting of orbital angular momentum sta... light carrying orbital angular momentum oam sh... 0 1 0 0 0 0
8208 Factorization tests and algorithms arising fro... theorem gekeler compares number nonisomorphic ... 0 0 1 0 0 0
8209 ADAPT: Zero-Shot Adaptive Policy Transfer for ... modelfree policy learning enabled robust perfo... 1 0 0 0 0 0
8210 Learning the Kernel for Classification and Reg... investigate series learning kernel problems po... 1 0 0 0 0 0
8211 Critical system involving fractional Laplacian paper study following critical system fraction... 0 0 1 0 0 0
8212 Skin Lesion Classification Using Hybrid Deep N... skin cancer one major types cancers incidence ... 1 0 0 0 0 0
8213 Nice derivations over principal ideal domains paper investigate extent results z wang daigle... 0 0 1 0 0 0
8214 Cooperative Estimation via Altruism novel approach based notion altruism presented... 1 0 1 0 0 0
8215 Multi-GPU maximum entropy image synthesis for ... maximum entropy method mem well known deconvol... 1 1 0 0 0 0
8216 Green function for linearized Navier-Stokes ar... paper construct green function classical orrso... 0 0 1 0 0 0
8217 SETI in vivo: testing the we-are-them hypothesis proposed life earth might descend seeding earl... 0 1 0 0 0 0
8218 Explicit Time Integration of Transient Eddy Cu... time integration transient eddy current proble... 1 1 1 0 0 0
8219 Transversality for local Morse homology with s... prove transversality result necessary defining... 0 0 1 0 0 0
8220 On the maximum principle for the Riesz transform let mu measure mathbb rd compact support conti... 0 0 1 0 0 0
8221 The complex case of Schmidt's going-down Theorem schmidt wrote seminal paper heights subspaces ... 0 0 1 0 0 0
8222 Optimal rates of estimation for multi-referenc... paper establish optimal rates adaptive estimat... 0 0 1 1 0 0
8223 Distribution System Voltage Control under Unce... voltage control plays important role operation... 1 0 1 1 0 0
8224 Overcomplete Frame Thresholding for Acoustic S... work derive generic overcomplete frame thresho... 1 0 0 1 0 0
8225 A Hybrid Approach for Trajectory Control Design work presents methodology design trajectory tr... 1 0 0 0 0 0
8226 Achieving and Managing Availability SLAs with ... system application availability continues fund... 1 0 0 0 0 0
8227 Foresight: Rapid Data Exploration Through Guid... current tools exploratory data analysis eda re... 1 0 0 0 0 0
8228 Transport by Lagrangian Vortices in the Easter... rotationally coherent lagrangian vortices rclv... 0 1 0 0 0 0
8229 Online Adaptive Methods, Universality and Acce... present novel method convex unconstrained opti... 0 0 0 1 0 0
8230 A Note on a Quantitative Form of the Solovay-K... problem finding good approximations arbitrary ... 0 0 1 0 0 0
8231 Learning Steerable Filters for Rotation Equiva... many machine learning tasks desirable models p... 1 0 0 0 0 0
8232 Stochastic Multi-armed Bandits in Constant Space consider stochastic bandit problem sublinear s... 1 0 0 1 0 0
8233 Max K-armed bandit: On the ExtremeHunter algor... paper devoted study max karmed bandit problem ... 1 0 0 1 0 0
8234 Comparing Different Models for Investigating C... paper centers comparison three different model... 0 0 1 0 0 0
8235 Initial-boundary value problems in a rectangle... initialboundary value problems bounded rectang... 0 0 1 0 0 0
8236 Two-dimensional Fermi gases near a p-wave reso... study stability pwave superfluidity quantum fl... 0 1 0 0 0 0
8237 Optimal Strong Rates of Convergence for a Spac... stochastic allencahn equation multiplicative n... 0 0 1 0 0 0
8238 A generalized quantum Slepian-Wolf work consider quantum generalization task cons... 1 0 0 0 0 0
8239 The rational SPDE approach for Gaussian random... popular approach modeling inference spatial st... 0 0 0 1 0 0
8240 An Analog of the Neumann Problem for the $1$-L... study inhomogeneous neumann boundary value pro... 0 0 1 0 0 0
8241 Activating spin-forbidden transitions in molec... optical spectroscopy primary tool study electr... 0 1 0 0 0 0
8242 On the Essential Spectrum of Schrödinger Opera... known essential spectrum schrdinger operator h... 0 0 1 0 0 0
8243 The equilibrium of over-pressurised polytropes investigate impact external pressure structure... 0 1 0 0 0 0
8244 Charge and pairing dynamics in the attractive ... pumpprobe experiments turned powerful tool ord... 0 1 0 0 0 0
8245 From voids to filaments: environmental transfo... investigate impact filament void environments ... 0 1 0 0 0 0
8246 Distributed Algorithms Made Secure: A Graph Th... area distributed graph algorithms number netwo... 1 0 0 0 0 0
8247 Interpretation of Neural Networks is Fragile order machine learning deployed trusted many a... 1 0 0 1 0 0
8248 Dipolar phonons and electronic screening in mo... monolayer films fese grown srtio substrates ex... 0 1 0 0 0 0
8249 A Supervised Approach to Extractive Summarisat... automatic summarisation popular approach reduc... 1 0 0 1 0 0
8250 Channel Feedback Based on AoD-Adaptive Subspac... channel feedback essential frequency division ... 1 0 0 0 0 0
8251 Thermalization in simple metals: The role of e... study electron phonon thermalization simple me... 0 1 0 0 0 0
8252 Convergence of the free Boltzmann quadrangulat... prove free boltzmann quadrangulation simple bo... 0 0 1 0 0 0
8253 Canonical quantization of nonlinear sigma mode... canonically quantize od nonlinear sigma models... 0 1 0 0 0 0
8254 A Nonparametric Bayesian Approach to Copula Es... propose novel dirichletbased plya tree dp tree... 0 0 0 1 0 0
8255 Model Predictive Control for Autonomous Drivin... paper present model predictive control mpc fra... 1 0 0 0 0 0
8256 A Grouping Genetic Algorithm for Joint Stratif... predicting cheapest sample size optimal strati... 0 0 0 1 0 0
8257 Murmur Detection Using Parallel Recurrent & Co... article propose novel technique classification... 1 0 0 1 0 0
8258 Time-of-Flight Electron Energy Loss Spectrosco... possibility perform highresolution timeresolve... 0 1 0 0 0 0
8259 Learning across scales - A multiscale method f... work establish relation optimal control traini... 1 0 0 0 0 0
8260 Capacitated Covering Problems in Geometric Spaces article consider following capacitated coverin... 1 0 0 0 0 0
8261 Irregular Oscillatory-Patterns in the Early-Ti... coherent phonon cp generation undoped si cryst... 0 1 0 0 0 0
8262 Energy-Efficient Hybrid Stochastic-Binary Neur... recent advances neural networks nns exhibit un... 1 0 0 0 0 0
8263 Position-based coding and convex splitting for... classicalinput quantumoutput cq wiretap channe... 1 0 0 0 0 0
8264 Geometric vulnerability of democratic institut... alternative voting scheme proposed fill democr... 0 1 0 0 0 0
8265 Strongly correlated double Dirac fermions double dirac fermions recently identified poss... 0 1 0 0 0 0
8266 A Phase Variable Approach for Improved Volitio... although recent progress control multijoint pr... 1 0 0 0 0 0
8267 New estimates for the $n$th prime number paper establish new explicit upper lower bound... 0 0 1 0 0 0
8268 Unbiased Markov chain Monte Carlo for intracta... performing numerical integration integrand can... 0 0 0 1 0 0
8269 An Observer for an Occluded Reaction-Diffusion... spatially dependent parameters twocomponent ch... 0 0 1 0 0 0
8270 D4M 3.0 dm tool used hundreds researchers perform comp... 1 0 0 0 0 0
8271 Human-in-the-Loop SLAM building largescale globally consistent maps c... 1 0 0 0 0 0
8272 What drives gravitational instability in nearb... velocity dispersion cold interstellar gas sigm... 0 1 0 0 0 0
8273 An improved belief propagation algorithm for d... framework statistical inference successfully u... 1 0 0 0 0 0
8274 On Least Squares Linear Regression Without Sec... x real valued random variables first moments x... 0 0 1 1 0 0
8275 Combinatorics of involutive divisions classical involutive division theory janet dec... 0 0 1 0 0 0
8276 Reducing asynchrony to synchronized rounds synchronous computation models simplify design... 1 0 0 0 0 0
8277 A wearable general-purpose solution for Human-... swarms robots revolutionize many industrial ap... 1 0 0 0 0 0
8278 Numerical simulation of oxidation processes in... oxidation process simulated bundle metal tubes... 1 1 0 0 0 0
8279 Design and optimization of a portable LQCD Mon... present panorama hpc architectures extremely h... 0 1 0 0 0 0
8280 NodeTrix Planarity Testing with Small Clusters study nodetrix planarity testing problem flat ... 1 0 0 0 0 0
8281 Exact results for directed random networks tha... present exact analytical results degree distri... 1 0 0 0 0 0
8282 Investigating the past history of EXors: the c... exor objects young variables show episodic var... 0 1 0 0 0 0
8283 Some estimates for $θ$-type Calderón-Zygmund o... paper first introduce new kinds weighted amalg... 0 0 1 0 0 0
8284 A Cluster Elastic Net for Multivariate Regression propose method estimating coefficients multiva... 0 0 0 1 0 0
8285 Achieving robust and high-fidelity quantum con... achieving highfidelity control quantum systems... 0 1 0 0 0 0
8286 Help Me Find a Job: A Graph-based Approach for... online job boards one central components moder... 1 0 0 0 0 0
8287 Bundle Optimization for Multi-aspect Embedding understanding semantic similarity among images... 1 0 0 0 0 0
8288 Glitch Classification and Clustering for LIGO ... detection gravitational waves ligo virgo requi... 1 1 0 1 0 0
8289 Provable Smoothness Guarantees for Black-Box V... blackbox variational inference tries approxima... 1 0 0 1 0 0
8290 A k-means procedure based on a Mahalanobis typ... paper proposes clustering procedure samples mu... 0 0 0 1 0 0
8291 Tidal Dissipation in WASP-12 wasp hot jupiter system orbital period p textr... 0 1 0 0 0 0
8292 Label Sanitization against Label Flipping Pois... many machine learning systems rely data collec... 0 0 0 1 0 0
8293 DeepCCI: End-to-end Deep Learning for Chemical... chemicalchemical interaction cci plays key rol... 1 0 0 0 0 0
8294 Intervals between numbers that are sums of two... paper improve moment estimates gaps numbers re... 0 0 1 0 0 0
8295 On a family of Caldero-Chapoton algebras that ... realize family generalized cluster algebras ca... 0 0 1 0 0 0
8296 Ricean K-factor Estimation based on Channel Qu... ricean channel model widely used wireless comm... 0 0 0 1 0 0
8297 Augmented lagrangian two-stage algorithm for L... paper consider framework projected gradient it... 0 0 1 0 0 0
8298 Exact relations between homoclinic and periodi... homoclinic unstable periodic orbits chaotic sy... 0 1 0 0 0 0
8299 Subexponentially growing Hilbert space and non... motivated recent experiments twocomponent bose... 0 1 0 0 0 0
8300 A spectral approach to transit timing variations high planetary multiplicity revealed kepler im... 0 1 0 0 0 0
8301 Distinct dynamical behavior in random and all-... neuronal network dynamics depends network stru... 0 0 0 0 1 0
8302 A Note on Band-limited Minorants of an Euclide... study beurlingselberg problem finding bandlimi... 0 0 1 0 0 0
8303 From Distance Correlation to Multiscale Graph ... understanding developing correlation measure d... 0 0 0 1 0 0
8304 Out-of-time-order Operators and the Butterfly ... outoftimeorder oto operators recently become p... 0 1 0 0 0 0
8305 Science and Facebook: the same popularity law! distribution scientific citations publications... 1 1 0 0 0 0
8306 Monocular Vision-based Vehicle Localization Ai... monocular camera systems prevailing intelligen... 1 0 0 0 0 0
8307 Verifying Patterns of Dynamic Architectures us... architecture patterns capture architectural de... 1 0 0 0 0 0
8308 Some integrals of hypergeometric functions consider certain definite integral involving p... 0 0 1 0 0 0
8309 On the second Feng-Rao distance of Algebraic G... describe second generalized fengrao distance e... 1 0 0 0 0 0
8310 Posterior contraction rates for support bounda... given sample poisson point process intensity l... 0 0 1 1 0 0
8311 A Fast Image Simulation Algorithm for Scanning... image simulation scanning transmission electro... 0 1 0 0 0 0
8312 X-ray Astronomical Point Sources Recognition U... study point sources astronomical images specia... 1 0 0 0 0 0
8313 Sample-Efficient Learning of Mixtures consider pac learning probability distribution... 1 0 0 0 0 0
8314 The Bag Semantics of Ontology-Based Data Access ontologybased data access obda popular approac... 1 0 0 0 0 0
8315 Multilink Communities of Multiplex Networks multiplex networks describe large number compl... 1 1 0 0 0 0
8316 P-wave superfluidity of atomic lattice fermions discuss emergence pwave superfluidity identica... 0 1 0 0 0 0
8317 Deep generative models of genetic variation ca... functions proteins rnas determined myriad inte... 0 1 0 1 0 0
8318 Consistent Rank Logits for Ordinal Regression ... extraordinary progress made towards developing... 1 0 0 1 0 0
8319 High-Pressure Synthesis and Characterization o... twodimensional materials significant potential... 0 1 0 0 0 0
8320 Mining Significant Microblogs for Misinformati... rapid growth social media massive misinformati... 1 0 0 0 0 0
8321 Machine Learning for Set-Identified Linear Models setidentified models often restrict number cov... 1 0 0 1 0 0
8322 An efficient algorithm to decide periodicity o... given integer base b set integers represented ... 1 0 0 0 0 0
8323 Electrical Tuning of Polarizaion-state Using G... plasmonic metasurfaces employed tuning control... 0 1 0 0 0 0
8324 An efficient distribution method for nonlinear... context stochastic twophase flow porous media ... 0 1 0 0 0 0
8325 Multi-Kernel LS-SVM Based Bio-Clinical Data In... medical research facilitates acquire diverse t... 0 0 0 1 0 0
8326 The universal property of derived geometry derived geometry defined universal way adjoin ... 0 0 1 0 0 0
8327 Feature Model-to-Ontology for SPL Application ... feature model widely used capture commonalitie... 1 0 0 0 0 0
8328 Rethinking Reprojection: Closing the Loop for ... emerging problem computer vision reconstructio... 1 0 0 0 0 0
8329 Rigid local systems and alternating groups earlier work katz exhibited simple one paramet... 0 0 1 0 0 0
8330 Interference effects of deleterious and benefi... linked beneficial deleterious mutations known ... 0 0 0 0 1 0
8331 Grassmanians and Pseudosphere Arrangements extend vector configurations general objects n... 0 0 1 0 0 0
8332 Rational homotopy theory via Sullivan models: ... survey contains main results rational homotopy... 0 0 1 0 0 0
8333 A Spectroscopic Orbit for the late-type Be sta... latetype star beta cmi remarkably stable compa... 0 1 0 0 0 0
8334 Variations on known and recent cardinality bounds sapirovskii proved xleqpichixcxpsix regular sp... 0 0 1 0 0 0
8335 Spatio-temporal intermittency of the turbulent... incompressible periodic statistically stationa... 0 1 0 0 0 0
8336 Voltage Analytics for Power Distribution Netwo... distribution grids constitute complex networks... 0 0 1 0 0 0
8337 The comprehension construction paper construct analogue luries unstraightenin... 0 0 1 0 0 0
8338 Approximate String Matching: Theory and Applic... approximate string matching fundamental recurr... 1 0 0 0 0 0
8339 Imaging anomalous nematic order and strain in ... present strain temperature dependence anomalou... 0 1 0 0 0 0
8340 Deception Detection in Videos present system covert automated deception dete... 1 0 0 0 0 0
8341 Extended degenerate Stirling numbers of the se... recent work degenerate stirling polynomials se... 0 0 1 0 0 0
8342 On time and consistency in multi-level agent-b... integration multiple viewpoints became increas... 1 0 0 0 0 0
8343 On The Inductive Bias of Words in Acoustics-to... acousticstoword models endtoend speech recogni... 1 0 0 0 0 0
8344 A multi-layered energy consumption model for s... smart sensing expected become pervasive techno... 1 0 0 0 0 0
8345 BRAVO - Biased Locking for Reader-Writer Locks designers modern readerwriter locks confront d... 1 0 0 0 0 0
8346 Internal DLA on Sierpinski gasket graphs internal diffusionlimited aggregation idla sto... 0 1 1 0 0 0
8347 A PCA-based approach for subtracting thermal b... groundbased observations thermal infrared wave... 0 1 0 0 0 0
8348 A weak law of large numbers for estimating the... article presents various weak laws large numbe... 0 0 1 1 0 0
8349 Synthesis of Spatial Charging/Discharging Patt... develop algorithm synthesizing spatial pattern... 1 0 0 0 0 0
8350 Matter fields interacting with photons extended biquaternionic diracs equation includ... 0 1 0 0 0 0
8351 A Unified Approach to Adaptive Regularization ... describe framework deriving analyzing online o... 1 0 1 1 0 0
8352 Discretization error cancellation in electroni... often claimed error cancellation plays essenti... 0 1 1 0 0 0
8353 Analysis of spectral clustering algorithms for... consider spectral clustering algorithms commun... 1 0 0 1 0 0
8354 A computational approach to calculate the heat... thermal gradients induce concentration gradien... 0 1 0 0 0 0
8355 Dark Matter Annihilation in the Circumgalactic... annihilating dark matter dm models offer promi... 0 1 0 0 0 0
8356 The p-convolution forest: a method for solving... convolution trees loopy belief propagation fas... 0 0 0 1 0 0
8357 Statistical Timing Analysis for Latch-Controll... levelsensitive latches widely used high perfor... 1 0 0 0 0 0
8358 A moment-angle manifold whose cohomology is no... paper give method construct momentangle manifo... 0 0 1 0 0 0
8359 The committee machine: Computational to statis... heuristic tools statistical physics used past ... 0 0 0 1 0 0
8360 On the anomalous {changes of seismicity and} g... xu et al j asian earth sci bf reported approxi... 0 1 0 0 0 0
8361 Exponentially small splitting of separatrices ... consider conservative hnon family perioddoubli... 0 0 1 0 0 0
8362 Learning Dynamics and the Co-Evolution of Comp... analyze stylized model coevolution two purely ... 1 0 0 0 0 0
8363 Deep Neural Networks for Multiple Speaker Dete... propose use neural networks simultaneous detec... 1 0 0 0 0 0
8364 Active Tolerant Testing work give first algorithms tolerant testing no... 1 0 0 1 0 0
8365 Temperature inside tumor as time function in R... simplified model example regional rf hyperther... 0 1 0 0 0 0
8366 Dirac Line-nodes and Effect of Spin-orbit Coup... topological dirac semimetals tdss represent ne... 0 1 0 0 0 0
8367 An Arcsine Law for Markov Random Walks classic arcsine law number nnnsumknmathbfsk po... 0 0 1 0 0 0
8368 Linear Estimation of Treatment Effects in Dema... demand response aims stimulate electricity con... 1 0 1 0 0 0
8369 Detection principle of gravitational wave dete... first two detections late astrophysics officia... 0 1 0 0 0 0
8370 Private Learning on Networks: Part II paper considers distributed multiagent optimiz... 1 0 1 0 0 0
8371 auDeep: Unsupervised Learning of Representatio... audeep python toolkit deep unsupervised repres... 1 0 0 0 0 0
8372 The Use of Unlabeled Data versus Labeled Data ... annotation training data major bottleneck crea... 1 0 0 1 0 0
8373 RAFP-Pred: Robust Prediction of Antifreeze Pro... extreme cold weather living organisms produce ... 0 0 0 0 1 0
8374 Second descent and rational points on Kummer v... powerful method pioneered swinnertondyer allow... 0 0 1 0 0 0
8375 When Can Neural Networks Learn Connected Decis... previous work questioned conditions decision r... 1 0 0 1 0 0
8376 Note on the backwards uniqueness of mean curva... note show backwards uniqueness theorem mean cu... 0 0 1 0 0 0
8377 A Volcanic Hydrogen Habitable Zone classical habitable zone circular region aroun... 0 1 0 0 0 0
8378 A Penrose type inequaltiy for graphs over Reis... paper use inverse mean curvature flow establis... 0 0 1 0 0 0
8379 A Novel Approach for Fast and Accurate Mean Er... errortolerant applications approximate adders ... 1 0 0 0 0 0
8380 Fluorescent Troffer-powered Internet of Things... totally new energy harvesting architecture exp... 1 1 0 0 0 0
8381 Parallel Simultaneous Perturbation Optimization stochastic computer simulations enable users g... 0 0 1 0 0 0
8382 Achievable Rate Region of Non-Orthogonal Multi... nonorthogonal multiple access noma candidate m... 1 0 0 0 0 0
8383 Agent-based model for the origins of scaling i... backgroundintroduction zipfs law establishes w... 1 1 0 0 0 0
8384 Credible Review Detection with Limited Informa... online reviews provide viewpoints strengths sh... 1 0 0 1 0 0
8385 The Asymptotically Self-Similar Regime for the... develop local theory construction singular spa... 0 0 1 0 0 0
8386 Kinematics and dynamics of an egg-shaped robot... manuscript discusses still preliminary conside... 1 0 0 0 0 0
8387 Cloaking and anamorphism for light and mass di... first review classical results cloaking mirage... 0 1 1 0 0 0
8388 Super Rogers-Szegö polynomials associated with... well known multivariate rogersszeg polynomials... 0 1 0 0 0 0
8389 A statistical physics approach to learning cur... using methods statistical physics analyse erro... 0 1 0 1 0 0
8390 Fast Kinetic Scheme : efficient MPI paralleliz... paper present parallelization strategy distrib... 0 1 1 0 0 0
8391 Finding a Feasible Initial Solution for Flatne... paper present method initialize feasible point... 1 0 1 0 0 0
8392 Techniques for visualizing LSTMs applied to el... paper explores four different visualization te... 1 0 0 1 0 0
8393 Obtaining Accurate Probabilistic Causal Infere... discovery accurate causal bayesian network str... 1 0 0 1 0 0
8394 Faster Bounding Box Annotation for Object Dete... paper proposes approach rapid bounding box ann... 0 0 0 1 0 0
8395 Junk News on Military Affairs and National Sec... social media provides political news informati... 1 0 0 0 0 0
8396 The SeaQuest Spectrometer at Fermilab seaquest spectrometer fermilab designed detect... 0 1 0 0 0 0
8397 Direct-Manipulation Visualization of Deep Netw... recent successes deep learning led wave intere... 1 0 0 1 0 0
8398 How close are the eigenvectors and eigenvalues... many samples sufficient guarantee eigenvectors... 0 0 1 1 0 0
8399 Wavefronts for a nonlinear nonlocal bistable r... wavefronts nonlinear nonlocal bistable reactio... 0 0 1 0 0 0
8400 Kafnets: kernel-based non-parametric activatio... neural networks generally built interleaving a... 1 0 0 1 0 0
8401 Unsteady Propulsion by an Intermittent Swimmin... inviscid computational results presented selfp... 0 1 0 0 0 0
8402 Modeling rooted in-trees by finite p-groups aim chapter provide adequate graph theoretic f... 0 0 1 0 0 0
8403 Towards Algorithmic Typing for DOT dependent object types dot calculus formalizes... 1 0 0 0 0 0
8404 Really? Well. Apparently Bootstrapping Improve... information web dialogic facebook newsfeeds fo... 1 0 0 0 0 0
8405 A new statistical method for characterizing th... detecting light extrasolar planetswe measure c... 0 1 0 0 0 0
8406 Prioritizing network communities uncovering modular structure networks fundamen... 0 0 0 1 1 0
8407 New ALMA constraints on the star-forming ISM a... properties cold interstellar medium lowmetalli... 0 1 0 0 0 0
8408 On Structured Prediction Theory with Calibrate... provide novel theoretical insights structured ... 1 0 0 1 0 0
8409 Improving Sharir and Welzl's bound on crossing... sharir welzl derived bound crossingfree matchi... 0 0 1 0 0 0
8410 Computing eigenfunctions and eigenvalues of bo... spectral renormalization method introduced eff... 0 1 0 0 0 0
8411 A Discontinuity Adjustment for Subdistribution... wild bootstrap resampling method choice surviv... 0 0 1 1 0 0
8412 Estimation of block sparsity in compressive se... paper consider soft measure block sparsity kal... 1 0 0 1 0 0
8413 Q-learning with UCB Exploration is Sample Effi... fundamental question reinforcement learning wh... 1 0 0 1 0 0
8414 You Cannot Fix What You Cannot Find! An Invest... properly benchmarking automated program repair... 1 0 0 0 0 0
8415 Acquiring Common Sense Spatial Knowledge throu... spatial understanding fundamental problem wide... 1 0 0 1 0 0
8416 Design of Capacity Approaching Ensembles of LD... paper concerned design capacity approaching en... 1 0 0 0 0 0
8417 Evolution of Morphological and Physical Proper... refractory organic compounds formed molecular ... 0 1 0 0 0 0
8418 Evaporating pure, binary and ternary droplets:... greek aperitif ouzo famous specific aniseflavo... 0 1 0 0 0 0
8419 A semianalytical approach for determining the ... article semianalytical approach demonstrating ... 0 1 0 0 0 0
8420 Gaussian Processes for Demand Unconstraining one key challenges revenue management unconstr... 0 0 0 1 0 0
8421 Generalization of two Bonnet's Theorems to the... paper devoted dimensional relative differentia... 0 0 1 0 0 0
8422 Some Aspects of Uniqueness Theory of Entire an... subject thesis uniqueness theory meromorphic f... 0 0 1 0 0 0
8423 Transfer Regression via Pairwise Similarity Re... transfer learning methods address situation li... 1 0 0 0 0 0
8424 Star formation in a galactic outflow recent observations revealed massive galactic ... 0 1 0 0 0 0
8425 Artificial intelligence in peer review: How ca... volume manuscripts submitted publication growi... 1 0 0 0 0 0
8426 Invariant Bianchi type I models in $f\left(R,T... paper search existence invariant solutions bia... 0 1 0 0 0 0
8427 Representation theoretic realization of non-sy... study nonsymmetric macdonald polynomials speci... 0 0 1 0 0 0
8428 Complex spectrogram enhancement by convolution... paper aims address two issues existing current... 1 0 0 1 0 0
8429 Optimal Threshold Design for Quanta Image Sensor quanta image sensor qis binary imaging device ... 1 0 0 0 0 0
8430 Statistics of $K$-groups modulo $p$ for the ri... odd prime p conjecture distribution ptorsion s... 0 0 1 0 0 0
8431 Learning Models for Shared Control of Human-Ma... present novel approach shared control humanmac... 1 0 0 0 0 0
8432 A Feature Embedding Strategy for High-level CN... following rapidly growing digital image usage ... 1 0 0 0 0 0
8433 Look-Ahead in the Two-Sided Reduction to Compa... address reduction compact band forms via unita... 1 0 0 0 0 0
8434 Non-existence of a Wente's $L^\infty$ estimate... provide counterexample wentes inequality conte... 0 0 1 0 0 0
8435 Regular characters of classical groups over co... let mathfrako complete discrete valuation ring... 0 0 1 0 0 0
8436 Quantitative analysis of nonadiabatic effects ... comparison study high pressure superconducting... 0 1 0 0 0 0
8437 Radio-flaring Ultracool Dwarf Population Synth... dozen ultracool dwarfs ucds lowmass objects sp... 0 1 0 0 0 0
8438 Janus: An Uncertain Cache Architecture to Cope... side channel attacks major class attacks crypt... 1 0 0 0 0 0
8439 Predicting Adversarial Examples with High Conf... suggested adversarial examples cause deep lear... 0 0 0 1 0 0
8440 A New Taxonomy for Symbiotic EM Sensors clear em spectrum rapidly reaching saturation ... 1 0 0 0 0 0
8441 Local-ring network automata and the impact of ... topological linkprediction exploit entire netw... 1 0 0 0 0 0
8442 Emission of Circularly Polarized Terahertz Wav... theoretically demonstrated emission circularly... 0 1 0 0 0 0
8443 Asymmetry-Induced Synchronization in Oscillato... scenario recently reported order stabilize com... 0 1 0 0 0 0
8444 Opportunistic Downlink Interference Alignment ... paper propose opportunistic downlink interfere... 1 0 1 0 0 0
8445 The Repeated Divisor Function and Possible Cor... let n nonnull positive integer dn number posit... 0 0 1 0 0 0
8446 A Language Hierarchy and Kitchens-Type Theorem... generalize notion selfsimilar groups infinite ... 0 0 1 0 0 0
8447 Distance Covariance in Metric Spaces: Non-Para... aim thesis find solution nonparametric indepen... 0 0 1 1 0 0
8448 Sum-Product-Quotient Networks present novel tractable generative model exten... 1 0 0 1 0 0
8449 When Simpler Data Does Not Imply Less Informat... exponential growth smartphone adoption contrib... 1 0 0 0 0 0
8450 Algebraic Description of Shape Invariance Revi... revisit algebraic description shape invariance... 0 1 0 0 0 0
8451 Joint Smoothing, Tracking, and Forecasting Bas... present continuous time state estimation frame... 1 0 0 1 0 0
8452 Parkinson's Disease Digital Biomarker Discover... search digital biomarkers parkinsons disease o... 1 0 0 1 0 0
8453 Bifurcation to locked fronts in two component ... study invasion fronts spreading speeds two com... 0 1 1 0 0 0
8454 Contrastive Hebbian Learning with Random Feedb... neural networks commonly trained make predicti... 0 0 0 1 1 0
8455 A model of electrical impedance tomography on ... objective model presented evaluate viability u... 0 1 0 0 0 0
8456 Above threshold scattering about a Feshbach re... ultracold atomic gases realised numerous parad... 0 1 0 0 0 0
8457 Gaussian Process Subset Scanning for Anomalous... identifying anomalous patterns realworld data ... 0 0 0 1 0 0
8458 Isolated resonances and nonlinear damping analyze isolated resonance curves ircs singled... 0 1 0 0 0 0
8459 UAV Aided Aerial-Ground IoT for Air Quality Se... air pollution becoming largest environmental h... 1 0 0 0 0 0
8460 Photoinduced vibronic coupling in two-level di... interaction electron system strong electromagn... 0 1 0 0 0 0
8461 Crowd Science: Measurements, Models, and Methods increasing practice engaging crowds organizati... 1 0 0 0 0 0
8462 Procedural Content Generation via Machine Lear... survey explores procedural content generation ... 1 0 0 0 0 0
8463 Automated Vulnerability Detection in Source Co... increasing numbers software vulnerabilities di... 1 0 0 1 0 0
8464 X-Shooter study of accretion in Chamaeleon I: ... dependence mass accretion rate stellar propert... 0 1 0 0 0 0
8465 A General Model for Robust Tensor Factorizatio... limitations matrix factorization losing spatia... 1 0 0 0 0 0
8466 Phase locking the spin precession in a storage... letter reports successful use feedback spin po... 0 1 0 0 0 0
8467 Learning Vertex Representations for Bipartite ... recent years witnessed widespread increase int... 1 0 0 1 0 0
8468 Liouville integrability of conservative peakon... modified camassaholm equation also called forq... 0 1 1 0 0 0
8469 State Representation Learning for Control: An ... representation learning algorithms designed le... 0 0 0 1 0 0
8470 Tracking Emerges by Colorizing Videos use large amounts unlabeled video learn models... 1 0 0 0 0 0
8471 Observation of topological valley transport of... valley pseudospin labeling quantum states ener... 0 1 0 0 0 0
8472 Equilibrium distributions and discrete Schur-c... paper introduces schurconstant equilibrium dis... 0 0 0 1 0 0
8473 Tempered homogeneous spaces let g semisimple real lie group finite center ... 0 0 1 0 0 0
8474 Consistency of Dirichlet Partitions dirichlet kpartition domain u subseteq mathbbr... 0 0 1 1 0 0
8475 Experimental investigation of the wake behind ... wake behind sphere rotating axis aligned strea... 0 1 0 0 0 0
8476 Test results of a prototype device to calibrat... large size air cherenkov telescope lst prototy... 0 1 0 0 0 0
8477 Extended superalgebras from twistor and Killin... basic firstorder differential operators spin g... 0 0 1 0 0 0
8478 The Physics of Eccentric Binary Black Hole Mer... gravitational wave observations eccentric bina... 1 0 0 0 0 0
8479 Joint Computation and Communication Cooperatio... paper proposes novel joint computation communi... 1 0 0 0 0 0
8480 Propagating wave correlations in complex systems describe novel approach computing wave correla... 0 1 0 0 0 0
8481 Cost-Effective Cache Deployment in Mobile Hete... paper investigates one fundamental issues cach... 1 0 0 0 0 0
8482 Experimental demonstration of a Josephson magn... experimentally demonstrate operation josephson... 0 1 0 0 0 0
8483 On the Dynamics of Supermassive Black Holes in... introduce new model formation evolution superm... 0 1 0 0 0 0
8484 A Concave Optimization Algorithm for Matching ... point matching refers process finding spatial ... 1 0 0 0 0 0
8485 Adaptive Mesh Refinement in Analog Mesh Computers call efficient computer architectures introduc... 1 0 0 0 0 0
8486 On the local view of atmospheric available pot... possibility constructing lorenzs concept avail... 0 1 0 0 0 0
8487 GdRh$_2$Si$_2$: An exemplary tetragonal system... anisotropy magnetic properties commonly introd... 0 1 0 0 0 0
8488 A Kullback-Leibler Divergence-based Distributi... high coefficient performance zero local emissi... 1 0 0 0 0 0
8489 Towards Optimally Decentralized Multi-Robot Co... developing safe efficient collision avoidance ... 1 0 0 0 0 0
8490 Metropolis-Hastings Algorithms for Estimating ... betweenness centrality important index widely ... 1 0 0 0 0 0
8491 Learning Flexible and Reusable Locomotion Prim... design gaits robot locomotion daunting process... 1 0 0 1 0 0
8492 Statistical comparison of (brain) networks study random networks neuroscientific context ... 0 1 0 1 0 0
8493 Sensitivity analysis using perturbed-law based... paper present perturbed lawbased sensitivity i... 0 0 1 1 0 0
8494 The Robustness of LWPP and WPP, with an Applic... show counting class lwpp ffk remains unchanged... 1 0 0 0 0 0
8495 Time- and spatially-resolved magnetization dyn... currentinduced spinorbit torques sots represen... 0 1 0 0 0 0
8496 Giant Planets Can Act As Stabilizing Agents on... explored evolution cold debris disk gravitatio... 0 1 0 0 0 0
8497 Definition of geometric space around analytic ... concept derivative coordinate functions proved... 1 0 0 0 0 0
8498 To Pool or Not To Pool? Revisiting an Old Pattern revisit wellknown objectpool design pattern ja... 1 0 0 0 0 0
8499 Quenching of supermassive black hole growth ar... recent quasar surveys revealed supermassive bl... 0 1 0 0 0 0
8500 Self-Organizing Maps as a Storage and Transfer... idea reusing information previously learned ta... 0 0 0 1 0 0
8501 Distributed model predictive control for conti... paper presents distributed model predictive co... 0 0 1 0 0 0
8502 Implementing focal-plane phase masks optimized... direct imaging exoplanets circumstellar disk m... 0 1 0 0 0 0
8503 Verifying Asynchronous Interactions via Commun... relationship communicating automata session ty... 1 0 0 0 0 0
8504 Phase induced transparency mediated structured... present phase induced transparency based schem... 0 1 0 0 0 0
8505 Additional cases of positive twisted torus knots twisted torus knot knot obtained torus knot tw... 0 0 1 0 0 0
8506 Action-conditional Sequence Modeling for Recom... many online applications interactions user web... 0 0 0 1 0 0
8507 Limits of End-to-End Learning endtoend learning refers training possibly com... 1 0 0 1 0 0
8508 Quantum Graphs: $ \mathcal{PT}$-symmetry and r... necessarily selfadjoint quantum graphs differe... 0 0 1 0 0 0
8509 On Diophantine equations involving sums of Fib... paper completely solve diophantine equations f... 0 0 1 0 0 0
8510 T-duality in rational homotopy theory via $L_\... combine sullivan models rational homotopy theo... 0 0 1 0 0 0
8511 Phasebook and Friends: Leveraging Discrete Rep... deep learning based speech enhancement source ... 1 0 0 0 0 0
8512 RankDCG: Rank-Ordering Evaluation Measure ranking used wide array problems notably infor... 1 0 0 0 0 0
8513 FUV Spectral Signatures of Molecules and the E... alice farultraviolet imaging spectrograph onbo... 0 1 0 0 0 0
8514 Adsorption and desorption of hydrogen at nonpo... adsorption hydrogen nonpolar gan surfaces impa... 0 1 0 0 0 0
8515 Application of the Fast Multipole Fully Couple... study fast multipole method fmm used decrease ... 1 0 0 0 0 0
8516 Conduction Channels of an InAs-Al nanowire Jos... present quantitative characterization electric... 0 1 0 0 0 0
8517 Two-level Chebyshev filter based complementary... describe novel iterative strategy kohnsham den... 0 1 0 0 0 0
8518 Using the Tsetlin Machine to Learn Human-Inter... medical applications challenge todays text cat... 0 0 0 1 0 0
8519 Deep Learning with Experience Ranking Convolut... supervised learning specifically convolutional... 1 0 0 0 0 0
8520 Isotope Shifts in the 7s$\rightarrow$8s Transi... observe electricdipole forbidden srightarrows ... 0 1 0 0 0 0
8521 SRM: An Efficient Framework for Autonomous Rob... paper propose integrated framework autonomous ... 1 0 0 0 0 0
8522 Mechanisms for bacterial gliding motility on s... motility mechanism certain rodshaped bacteria ... 0 0 0 0 1 0
8523 Random Walk in a N-cube Without Hamiltonian Cy... designing pseudorandom number generator prng d... 1 1 0 0 0 0
8524 A Hardware Platform for Efficient Multi-Modal ... present warp hardware platform support researc... 1 0 0 0 0 0
8525 Electrocaloric effects in the lead-free Ba(Zr,... atomistic effective hamiltonian simulations us... 0 1 0 0 0 0
8526 Accelerating Permutation Testing in Voxel-wise... permutation testing nonparametric method obtai... 1 0 0 1 0 0
8527 Image restoration of solar spectra recording spectra ground atmospheric turbulenc... 0 1 0 0 0 0
8528 Who Said What: Modeling Individual Labelers Im... data often labeled many different experts expe... 1 0 0 0 0 0
8529 Automated Tiling of Unstructured Mesh Computat... sparse tiling technique fuse loops access comm... 1 1 0 0 0 0
8530 A copula approach for dependence modeling in m... paper concerned modeling dependence structure ... 0 0 1 1 0 0
8531 A geometric second-order-rectifiable stratific... defining mth stratum closed subset n dimension... 0 0 1 0 0 0
8532 Probabilistic Formulations of Regression with ... regression problems assume every instance anno... 0 0 0 1 0 0
8533 DCN+: Mixed Objective and Deep Residual Coatte... traditional models question answering optimize... 1 0 0 0 0 0
8534 An optimal unrestricted learning procedure study learning problems involving arbitrary cl... 0 0 0 1 0 0
8535 Means of infinite sets I open new field one define means infinite sets ... 0 0 1 0 0 0
8536 On tamed almost complex four manifolds paper proves tamed closed almost complex fourm... 0 0 1 0 0 0
8537 Evaluation and Prediction of Polygon Approxima... contours may viewed outline image object type ... 0 0 0 1 0 0
8538 Perturbative Expansion of Irreversible Work in... discuss systematic expansion solution fokkerpl... 0 1 1 0 0 0
8539 Operational Semantics of Process Monitors cspe specification language runtime monitors d... 1 0 0 0 0 0
8540 Anyonic Entanglement and Topological Entanglem... study properties entanglement twodimensional t... 0 1 0 0 0 0
8541 Water-based and Biocompatible 2D Crystal Inks:... fully exploiting properties crystals requires ... 0 1 0 0 0 0
8542 Clustering to Reduce Spatial Data Set Size traditionally problem researchers access enoug... 0 0 0 1 0 0
8543 Thermal diffusivity and chaos in metals withou... study thermal diffusivity dt models metals wit... 0 1 0 0 0 0
8544 The Quest for Scalability and Accuracy in the ... paper presents methodology simulating internet... 1 0 0 0 0 0
8545 Harmonic spinors from twistors and potential f... symmetry operators twistor spinors harmonic sp... 0 0 1 0 0 0
8546 Goodness-of-fit tests for the functional linea... consider marked empirical processes indexed ra... 0 0 0 1 0 0
8547 Efficient method for estimating the number of ... exist wide range effective methods community d... 1 1 0 0 0 0
8548 The Pluto System After New Horizons discovery pluto presaged discoveries kuiper be... 0 1 0 0 0 0
8549 Global-in-time Strichartz estimates and cubic ... study strichartz estimates schrdinger equation... 0 0 1 0 0 0
8550 Compressive Embedding and Visualization using ... visualizing highdimensional data focus data an... 1 0 0 1 0 0
8551 Electrical control of metallic heavy-metal/fer... voltage control effects provide energyefficien... 0 1 0 0 0 0
8552 An Expectation-Maximization Algorithm for the ... present expectationmaximization algorithm frac... 1 0 0 1 0 0
8553 An Improved SCFlip Decoder for Polar Codes paper focuses recently introduced successive c... 1 0 0 0 0 0
8554 Generation of controllable plasma wakefield no... numerical simulations beamplasma instabilities... 0 1 0 0 0 0
8555 Variable Exponent Fock Spaces article introduce variable exponent fock space... 0 0 1 0 0 0
8556 Pattern representation and recognition with ac... despite originally inspired central nervous sy... 1 0 0 1 0 0
8557 Dynamic Policies for Cooperative Networked Sys... set economic entities embedded network graph c... 1 0 0 0 0 0
8558 On certain families of planar patterns and fra... survey article dedicated families fractals int... 0 0 1 0 0 0
8559 Static Dalvik VM bytecode instrumentation work proposes novel approach restricting acces... 1 0 0 0 0 0
8560 PMU-Based Estimation of Dynamic State Jacobian... paper hybrid measurement modelbased method pro... 1 0 0 0 0 0
8561 DeepDownscale: a Deep Learning Strategy for Hi... running highresolution physical models computa... 0 0 0 1 0 0
8562 Open quantum random walks on the half-line: th... work consider open quantum random walks nonneg... 0 0 1 0 0 0
8563 Nevanlinna classes associated to a closed set ... introduce nevanlinna classes holomorphic funct... 0 0 1 0 0 0
8564 Exploring the nuances in the relationship "cul... current article explores interesting significa... 0 0 0 0 0 1
8565 Audio style transfer style transfer among images recently emerged a... 1 1 0 0 0 0
8566 Hyperbolic pseudoinverses for kinematics in th... kinematics robot manipulator described terms m... 0 0 1 0 0 0
8567 Nonlinear Unknown Input and State Estimation A... technical report provides description derivati... 1 0 0 0 0 0
8568 Acute sets set points mathbbrd acute three points set for... 0 0 1 0 0 0
8569 Session Analysis using Plan Recognition paper presents preliminary results work major ... 1 0 0 0 0 0
8570 Personalized Driver Stress Detection with Mult... stress seen physiological response everyday em... 1 0 0 0 0 0
8571 Budgeted Experiment Design for Causal Structur... study problem causal structure learning experi... 1 0 0 1 0 0
8572 Evaluating the Robustness of Rogue Waves Under... rogue waves periodic counterparts shown exist ... 0 1 0 0 0 0
8573 Feeble fish in time-dependent waters and homog... study following control problem fish bounded a... 0 0 1 0 0 0
8574 Betti tables for indecomposable matrix factori... classify betti tables indecomposable graded ma... 0 0 1 0 0 0
8575 Discrete Integrable Systems, Supersymmetric Qu... possible understand whether given bps spectrum... 0 1 1 0 0 0
8576 Generalized Robust Bayesian Committee Machine ... order scale standard gaussian process gp regre... 0 0 0 1 0 0
8577 Network Inference from a Link-Traced Sample us... present new inference method based approximate... 1 1 0 1 0 0
8578 Variational Dropout Sparsifies Deep Neural Net... explore recently proposed variational dropout ... 1 0 0 1 0 0
8579 A note on clustered cells note contains additions paper clustered cell d... 0 0 1 0 0 0
8580 Record statistics of a strongly correlated tim... review recent advances record statistics stron... 0 1 1 0 0 0
8581 On nonlinear instability of Prandtl's boundary... paper study prandtls boundary layer asymptotic... 0 0 1 0 0 0
8582 Subspace Clustering with Missing and Corrupted... given full partial information collection poin... 0 0 0 1 0 0
8583 Monte Carlo Tensor Network Renormalization techniques approximately contracting tensor ne... 0 1 0 0 0 0
8584 Experimental study of electron and phonon dyna... rapid advances development nanotechnology nowa... 0 1 0 0 0 0
8585 SSGP topologies on abelian groups of positive ... let g abelian group subset g cyca denotes set ... 0 0 1 0 0 0
8586 Intelligent Pothole Detection and Road Conditi... poor road conditions public nuisance causing p... 1 0 0 0 0 0
8587 Concrete Autoencoders for Differentiable Featu... introduce concrete autoencoder endtoend differ... 1 0 0 1 0 0
8588 Emergence and complexity in theoretical models... thesis present theoretical studies models self... 0 1 1 0 0 0
8589 An Extension of Averaged-Operator-Based Algori... many algorithms used solve minimization proble... 0 0 0 1 0 0
8590 Along the sun-drenched roadside: On the interp... explore relation urban road network characteri... 0 1 0 0 0 0
8591 $HD(M\setminus L)>0.353$ complement msetminus l lagrange spectrum l mar... 0 0 1 0 0 0
8592 Comparing the dark matter models, modified New... compare six models including baryonic model tw... 0 1 0 0 0 0
8593 Good Clusterings Have Large Volume clustering data set one core tasks data analyt... 0 0 1 0 0 0
8594 Regularity of Lie Groups solve regularity problem milnors infinite dime... 0 0 1 0 0 0
8595 A study on text-score disagreement in online r... paper focus online reviews employ artificial i... 1 0 0 0 0 0
8596 Convergence rates for nonequilibrium Langevin ... study exponential convergence stationary state... 0 1 1 0 0 0
8597 Natural Extension of Hartree-Fock through extr... fermionic natural occupation numbers obey paul... 0 1 0 0 0 0
8598 Homotopy Parametric Simplex Method for Sparse ... high dimensional sparse learning imposed great... 1 0 1 1 0 0
8599 Fractional Operators with Inhomogeneous Bounda... paper introduce new characterizations spectral... 0 0 1 0 0 0
8600 An alternative definition of cobordism map of ECH article reformulate cobordism map embedded con... 0 0 1 0 0 0
8601 Healthy imperfect dark matter from effective t... study stability recently proposed model scalar... 0 1 0 0 0 0
8602 Disorder-protected topological entropy after a... topological phases matter considered bedrock n... 0 1 0 0 0 0
8603 The evolution of gravitons in accelerating cos... discuss production evolution cosmological grav... 0 1 0 0 0 0
8604 CO2 packing polymorphism under confinement in ... investigate effect cylindrical nanoconfinement... 0 1 0 0 0 0
8605 CLIC: Curriculum Learning and Imitation for fe... paper propose unsupervised reinforcement learn... 1 0 0 1 0 0
8606 On the structure of continua with finite lengt... main results note concern characterization len... 0 0 1 0 0 0
8607 Identifying combinatorially symmetric Hidden M... provide sufficient criterion unique parameter ... 0 0 1 1 0 0
8608 Systems of small linear forms and Diophantine ... develop theory diophantine approximation syste... 0 0 1 0 0 0
8609 Generalized Zero-Shot Learning via Synthesized... present generative framework generalized zeros... 1 0 0 1 0 0
8610 Dependence and dependence structures: estimati... distance multivariance multivariate dependence... 0 0 1 1 0 0
8611 Hybrid simulation scheme for volatility modula... develop simulation scheme class spatial stocha... 0 0 0 1 0 0
8612 Thermodynamic dislocation theory for non-unifo... present paper extends thermodynamic dislocatio... 0 1 0 0 0 0
8613 Integrated Fabry-Perot cavities as a mechanism... propose experimentally demonstrate enhancement... 0 1 0 0 0 0
8614 Dark matter spin determination with directiona... dark matter particle spin two types wimpnucleo... 0 1 0 0 0 0
8615 Layers and Matroids for the Traveling Salesman... gottschalk vygen proved every solution subtour... 1 0 0 0 0 0
8616 Understanding and Comparing Deep Neural Networ... recently deep neural networks demonstrated exc... 1 0 0 1 0 0
8617 Variational discretization of a control-constr... consider controlconstrained parabolic optimal ... 0 0 1 0 0 0
8618 Determining r-Robustness of Arbitrary Digraphs... increase use resilient control algorithms base... 1 0 0 0 0 0
8619 Uncertainty quantification in graph-based clas... classification high dimensional data finds wid... 1 0 0 1 0 0
8620 Defect-induced large spin-orbit splitting in t... effect spinorbit coupling soc electronic prope... 0 1 0 0 0 0
8621 Clusters of Integers with Equal Total Stopping... clustering integers equal total stopping times... 0 0 1 0 0 0
8622 Modelling the Milky Way's globular cluster system construct model galactic globular cluster syst... 0 1 0 0 0 0
8623 Diversity-aware Multi-Video Summarization video summarization approaches focused extract... 1 0 0 0 0 0
8624 Derivation relations and duality for the sum o... show duality relation sum multiple zeta values... 0 0 1 0 0 0
8625 Machine learning techniques to select Be star ... statistical pattern recognition methods provid... 0 1 0 0 0 0
8626 Infinite-Dimensionality in Quantum Foundations... paper walgebras presented canonical colimits d... 1 0 1 0 0 0
8627 MSE estimates for multitaper spectral estimati... obtain estimates mean squared error mse multit... 1 0 1 1 0 0
8628 Communication-Free Parallel Supervised Topic M... embarrassingly communicationfree parallel mark... 1 0 0 1 0 0
8629 Multilayer Network Model of Movie Script network models increasingly used past years su... 1 0 0 0 0 0
8630 On the Performance of Millimeter Wave-based RF... paper studies performance multihop mesh networ... 1 0 0 0 0 0
8631 Pi Visits Manhattan possible draw circle manhattan using discrete ... 0 0 1 0 0 0
8632 A Bernstein Inequality For Exponentially Growi... article present bernstein inequality sums rand... 0 0 1 1 0 0
8633 Monolithic InGaAs nanowire array lasers on sil... chipscale integrated light sources crucial com... 0 1 0 0 0 0
8634 DMFT study on the electron-hole asymmetry of t... recent experiments revealed striking asymmetry... 0 1 0 0 0 0
8635 On the Information Theoretic Distance Measures... establishing connection bidirectional helmholt... 0 0 0 1 0 0
8636 KMS states on the C*-algebras of Fell bundles ... consider fiberwise singly generated fellbundle... 0 0 1 0 0 0
8637 Object Detection Using Deep CNNs Trained on Sy... need large annotated image datasets training c... 1 0 0 0 0 0
8638 Breaking the 3/2 barrier for unit distances in... prove every set n points mathbbr spans onepsil... 1 0 1 0 0 0
8639 Periodic orbits of planets in binary systems periodic solutions three body problem importan... 0 1 0 0 0 0
8640 Review of image quality measures for solar ima... observations solar photosphere ground encounte... 0 1 0 0 0 0
8641 Joint Maximum Likelihood Estimation for High-d... multidimensional item response theory widely u... 0 0 0 1 0 0
8642 Judicious Judgment Meets Unsettling Updating: ... statistical learning using imprecise probabili... 0 0 1 1 0 0
8643 Planar segment processes with reference mark d... paper deals planar segment processes given den... 0 0 1 1 0 0
8644 A Note on Bayesian Model Selection for Discret... consider problem choosing parametric models di... 0 0 1 1 0 0
8645 Quantum criticality in many-body parafermion c... construct local generalizations state potts mo... 0 1 0 0 0 0
8646 Simulation-based reachability analysis for non... shortcoming existing reachability approaches n... 1 0 0 0 0 0
8647 User Donations in a Crowdsourced Video System crowdsourced video systems like youtube twitch... 1 0 0 0 0 0
8648 Dynein catch bond as a mediator of codependent... intracellular bidirectional transport cargo mi... 0 0 0 0 1 0
8649 Limiting Laws for Divergent Spiked Eigenvalues... study asymptotic distributions spiked eigenval... 0 0 1 1 0 0
8650 Nonparametric Poisson regression from independ... consider nonparametric poisson regression prob... 0 0 1 1 0 0
8651 Ontology-Aware Token Embeddings for Prepositio... typelevel word embeddings use set parameters r... 1 0 0 0 0 0
8652 Bayesian Detection of Abnormal ADS in Mutant C... cell division timing critical cell fate specif... 0 0 0 1 1 0
8653 Towards a constraint solver for proving conflu... confluence nondeterministic program ensures fu... 1 0 0 0 0 0
8654 cGANs with Projection Discriminator propose novel projection based way incorporate... 0 0 0 1 0 0
8655 The QLBS Q-Learner Goes NuQLear: Fitted Q Iter... qlbs model discretetime option hedging pricing... 0 0 0 0 0 1
8656 InclusiveFaceNet: Improving Face Attribute Det... demonstrate approach face attribute detection ... 1 0 0 0 0 0
8657 Reputation is required for cooperation to emer... melamed harrell simpson recently reported expe... 1 0 0 0 0 0
8658 Active Anomaly Detection via Ensembles critical applications anomaly detection includ... 0 0 0 1 0 0
8659 Effect of Decreasing Cobalt Content on the Ele... lithium ion batteries libs proper design catho... 0 1 0 0 0 0
8660 Dispersive estimates for massive Dirac operato... study massive two dimensional dirac operator e... 0 0 1 0 0 0
8661 A novel agent-based simulation framework for s... paper present novel formal agentbased simulati... 1 1 0 0 0 0
8662 Transversal fluctuations of the ASEP, stochast... consider asep stochastic six vertex model star... 0 0 1 0 0 0
8663 Instantons in self-organizing logic gates selforganizing logic recentlysuggested framewo... 1 0 0 0 0 0
8664 Vision-and-Language Navigation: Interpreting v... robot carry naturallanguage instruction dream ... 1 0 0 0 0 0
8665 Dissecting spin-phonon equilibration in ferrim... gain control magnetic order ultrafast time sca... 0 1 0 0 0 0
8666 Inferring health conditions from fMRI-graph data automated classification methods disease diagn... 0 0 0 1 1 0
8667 Rich-clubness test: how to determine whether a... richclub concept introduced order characterize... 1 1 0 0 0 0
8668 Structured Variational Inference for Coupled G... sparse variational approximations allow princi... 1 0 0 1 0 0
8669 Imaging anyons with scanning tunneling microscopy anyons exotic quasiparticles fractional charge... 0 1 0 0 0 0
8670 Proof of Correspondence between Keys and Encod... former paper authors introduced two new system... 1 0 1 0 0 0
8671 Following the density perturbations through a ... bounce universe model known coupledscalartachy... 0 1 0 0 0 0
8672 Privacy in Information-Rich Intelligent Infras... intelligent infrastructure critically rely den... 1 0 0 0 0 0
8673 Towards equation of state for a market: A ther... foundations equilibrium thermodynamics equatio... 0 0 0 0 0 1
8674 On the sub-Gaussianity of the Beta and Dirichl... obtain optimal proxy variance subgaussianity b... 0 0 1 1 0 0
8675 Chaos in three coupled rotators: From Anosov d... starting anosov chaotic dynamics geodesic flow... 0 1 0 0 0 0
8676 A novel analytical method for analysis of elec... article novel analytical approach presented an... 0 1 0 0 0 0
8677 Causal Inference with Two Versions of Treatment causal effects commonly defined comparisons po... 0 0 0 1 0 0
8678 Characterization of Multi-scale Invariant Rand... applying certain flexible geometric sampling m... 0 0 0 1 0 0
8679 Interpretable 3D Human Action Analysis with Te... discriminative power modern deep learning mode... 1 0 0 0 0 0
8680 Efficient Algorithms for t-distributed Stochas... tdistributed stochastic neighborhood embedding... 1 0 0 1 0 0
8681 An arithmetic site of Connes-Consani type for ... construct imaginary quadratic number fields cl... 0 0 1 0 0 0
8682 Linear Matrix Inequalities for Physically-Cons... increased application modelbased wholebody con... 1 0 0 0 0 0
8683 Simultaneous Block-Sparse Signal Recovery Usin... paper consider blocksparse signals recovery pr... 1 0 0 1 0 0
8684 A temperate rocky super-Earth transiting a nea... dwarf stars masses less per cent sun make per ... 0 1 0 0 0 0
8685 Boundary driven Brownian gas consider gas independent brownian particles bo... 0 0 1 0 0 0
8686 Fully Resolved Numerical Simulations of Fused ... purpose paper continues development comprehens... 0 1 0 0 0 0
8687 High Dimensional Cluster Analysis Using Path L... hierarchical scheme clustering data presented ... 1 0 0 0 0 0
8688 Forecasting elections using compartmental mode... forecast political elections popular pollsters... 1 0 0 0 0 0
8689 Online Learning Without Prior Information vast majority optimization online learning alg... 1 0 0 1 0 0
8690 Sparse Identification for Nonlinear Optical Co... introduce low complexity machine learning base... 0 1 0 0 0 0
8691 Serial Correlations in Single-Subject fMRI wit... performing statistical analysis singlesubject ... 0 0 0 1 0 0
8692 Randomization-based Inference for Bernoulli-Tr... present randomizationbased inferential framewo... 0 0 0 1 0 0
8693 Cloaking using complementary media for electro... negative index materials artificial structures... 0 0 1 0 0 0
8694 Deterministic parallel analysis: An improved m... factor analysis principal component analysis p... 0 0 0 1 0 0
8695 Laplacian Spectrum of non-commuting graphs of ... paper compute laplacian spectrum noncommuting ... 0 0 1 0 0 0
8696 Application of Coulomb energy density function... test coulomb exchange correlation energy densi... 0 1 0 0 0 0
8697 Transient frequency control with regional coop... paper proposes centralized distributed subopti... 1 0 0 0 0 0
8698 Unsupervised prototype learning in an associat... unsupervised learning generalized hopfield ass... 1 1 0 0 0 0
8699 One-Step Fabrication of pH-Responsive Membrane... biocompatible microencapsulation widespread in... 0 1 0 0 0 0
8700 FA*IR: A Fair Top-k Ranking Algorithm work define solve fair topk ranking problem wa... 1 0 0 0 0 0
8701 A novel delayed-choice experimental proposal t... entangled states notoriously nonseparable sube... 0 1 0 0 0 0
8702 Better accuracy with quantified privacy: repre... remarkable success machine learning especially... 1 0 0 1 0 0
8703 Compositional descriptor-based recommender sys... structures properties many inorganic compounds... 0 1 0 0 0 0
8704 Structure Formation and Microlensing with Axio... symmetry breaking responsible axion dark matte... 0 1 0 0 0 0
8705 Clustering Residential Electricity Load Curves... performing analytic household load curves lcs ... 1 0 0 0 0 0
8706 Lie and Noether point Symmetries for a Class o... prove two general theorems determine lie noeth... 0 0 1 0 0 0
8707 Thermal Inflation with a Thermal Waterfall Sca... new model thermal inflation introduced mass th... 0 1 0 0 0 0
8708 DeepMoTIon: Learning to Navigate Like Humans present novel humanaware navigation approach r... 1 0 0 1 0 0
8709 Multidimensional Free Poisson Limits on Free S... paper prove fourmoment theorems multidimension... 0 0 1 0 0 0
8710 On the finite $W$-algebra for the Lie superalg... paper study finite walgebra queer lie superalg... 0 0 1 0 0 0
8711 SNeCT: Scalable network constrained Tucker dec... motivation integratively analyze largescale mu... 1 0 0 1 0 0
8712 CANAL: A Cache Timing Analysis Framework via L... unified modeling framework nonfunctional prope... 1 0 0 0 0 0
8713 Deep Learning Super-Resolution Enables Rapid S... obtaining magnetic resonance images mri high r... 0 0 0 1 0 0
8714 Inverse problems in models of resource distrib... continue study problem modeling substitution p... 0 0 1 0 0 0
8715 Critical behaviour in one dimension: unconvent... study superconducting properties populationimb... 0 1 0 0 0 0
8716 Andreev reflections and the quantum physics of... establish analogy superconductormetal interfac... 0 1 0 0 0 0
8717 Wind, Sand and Water. The Orientation of the L... chain late roman fortified settlements built k... 0 1 0 0 0 0
8718 On generalized Dold manifolds let x smooth manifold smooth involution sigmax... 0 0 1 0 0 0
8719 Pilot system development in metre-scale labora... pilot system development metrescale negative l... 0 1 0 0 0 0
8720 Abstract Interpretation of Binary Code with Me... paper propose novel methodology static analysi... 1 0 0 0 0 0
8721 Optimal learning via local entropies and sampl... aim paper provide several novel upper bounds e... 0 0 1 1 0 0
8722 Domain Specific Semantic Validation of Schema.... since unveiling schemaorg become de facto stan... 1 0 0 0 0 0
8723 Vector-valued extensions of operators through ... give extension rubio de francias extrapolation... 0 0 1 0 0 0
8724 Phase Diagram of Carbon Nickel Tungsten: Super... carbon solubility facecentered cubic niw alloy... 0 1 0 0 0 0
8725 Classical solution for the linear sigma model paper linear sigma model studied using method ... 0 1 0 0 0 0
8726 The Importance of System-Level Information in ... fundamental challenge multiagent systems desig... 1 0 0 0 0 0
8727 Detecting Policy Preferences and Dynamics in t... foreign policy analysis struggling find ways m... 1 0 0 1 0 0
8728 FLASH: A Faster Optimizer for SBSE Tasks problems searchbased software engineering invo... 1 0 0 0 0 0
8729 On the complexity of generalized chromatic pol... j makowsky b zilber showed many variations gra... 1 0 1 0 0 0
8730 Hybrid SGP4 orbit propagator twoline elements tles continue sole public sou... 0 1 0 0 0 0
8731 PDE-Net: Learning PDEs from Data paper present initial attempt learn evolution ... 1 0 0 1 0 0
8732 Stable components in the parameter plane of me... study parameter planes certain onedimensional ... 0 0 1 0 0 0
8733 Optimal Regulation Response of Batteries Under... providing frequency regulation payforperforman... 0 0 1 0 0 0
8734 Spin-structures on real Bott manifolds with Kä... let real bott manifold khler structure using i... 0 0 1 0 0 0
8735 No difference in orbital parameters of RV-dete... kecknirc imaging survey searches stellar compa... 0 1 0 0 0 0
8736 On overfitting and post-selection uncertainty ... regression context relevant subset explanatory... 0 0 1 1 0 0
8737 Concept of multiple-cell cavity for axion dark... cavitybased axion dark matter search experimen... 0 1 0 0 0 0
8738 Detecting Recycled Commodity SoCs: Exploiting ... physical unclonable function puf analogous hum... 1 0 0 0 0 0
8739 Ginzburg-Landau-type theory of non-polarized s... since concept spin superconductor proposed rel... 0 1 0 0 0 0
8740 Evolution of Anisotropic Displacement Paramete... order understand mechanisms behind emergence s... 0 1 0 0 0 0
8741 A Proximal Block Coordinate Descent Algorithm ... training deep neural networks dnns efficiently... 0 0 0 1 0 0
8742 Surface zeta potential and diamond seeding on ... measurement zeta potential ga nface gallium ni... 0 1 0 0 0 0
8743 Analysing Temporal Evolution of Interlingual W... wikipedia articles representing entity topic d... 1 0 0 0 0 0
8744 Smith Ideals of Operadic Algebras in Monoidal ... building upon hoveys work smith ideals monoids... 0 0 1 0 0 0
8745 Phase and Power Control in the RF Magnetron Po... phase power control methods satisfy requiremen... 0 1 0 0 0 0
8746 Cohomologies of locally conformally symplectic... study morsenovikov cohomology almostsymplectic... 0 0 1 0 0 0
8747 Frequency Offset Estimation for OFDM Systems w... novel frequency domain training sequence corre... 1 0 0 0 0 0
8748 Cusp shape and tunnel number show set cusp shapes hyperbolic tunnel number ... 0 0 1 0 0 0
8749 Divergence-free positive symmetric tensors and... consider dtimes tensors ax symmetric positive ... 0 1 1 0 0 0
8750 Admire vs. Safire: Objective comparison of CT ... purpose siemens developed several iterative re... 0 1 0 0 0 0
8751 Occupants in simplicial complexes let smooth manifold ksubset simplicial complex... 0 0 1 0 0 0
8752 Temporal Stability in Predictive Process Monit... predictive process monitoring concerned analys... 1 0 0 1 0 0
8753 Discrete Gradient Line Fields on Surfaces line field manifold smooth map assigns tangent... 1 0 1 0 0 0
8754 New Directions In Cellular Automata propose novel automaton model uses arithmetic ... 1 1 0 0 0 0
8755 Smart Fog: Fog Computing Framework for Unsuper... increasing use wearables smart telehealth gene... 1 0 0 0 0 0
8756 Subspace Clustering via Optimal Direction Search letter presents new spectralclusteringbased ap... 1 0 0 1 0 0
8757 The Covering Principle: A New Approach to Addr... closure partitioning principles used build var... 0 0 0 1 0 0
8758 Mechanisms of Lagrangian analyticity in fluids certain systems inviscid fluid dynamics proper... 0 0 1 0 0 0
8759 How to Differentiate Collective Variables in F... proper choice collective variables cvs central... 0 1 0 0 0 0
8760 Blocks of the category of smooth $\ell$-modula... let g inner form general linear group nonarchi... 0 0 1 0 0 0
8761 An Investigation of Newton-Sketch and Subsampl... concepts sketching subsampling recently receiv... 1 0 1 1 0 0
8762 On angled bounce-off impact of a drop impingin... small drops impinging angularly thin flowing s... 0 1 0 0 0 0
8763 Fast evaluation of solid harmonic Gaussian int... integral scheme efficient evaluation twocenter... 0 1 0 0 0 0
8764 A note on integrating products of linear forms... integrating product linear forms unit simplex ... 1 0 1 0 0 0
8765 Linearly constrained Gaussian processes consider modification covariance function gaus... 0 0 0 1 0 0
8766 Racks as multiplicative graphs interpret augmented racks certain kind multipl... 0 0 1 0 0 0
8767 Bielliptic intermediate modular curves determine modular curves xdeltan curves lying ... 0 0 1 0 0 0
8768 Behavior Revealed in Mobile Phone Usage Predic... many households developing countries lack form... 1 0 0 0 0 0
8769 Robust and structural ergodicity analysis of s... ergodicity output controllability shown fundam... 1 0 1 0 0 0
8770 A Dirichlet Mixture Model of Hawkes Processes ... propose effective method solve event sequence ... 1 0 0 1 0 0
8771 On the number of cyclic subgroups of a finite ... let g finite group let cg number cyclic subgro... 0 0 1 0 0 0
8772 Accelerated Extra-Gradient Descent: A Novel Ac... provide novel accelerated firstorder method ac... 1 0 1 0 0 0
8773 Disruption of Alfvénic turbulence by magnetic ... calculate disruption scale lambdarm sheetlike ... 0 1 0 0 0 0
8774 New neutrino physics and the altered shapes of... neutrinos coming suns core measured high preci... 0 1 0 0 0 0
8775 Searching for a Single Community in a Graph standard graph clusteringcommunity detection o... 1 0 0 1 0 0
8776 Superinjective Simplicial Maps of the Two-side... let n compact connected nonorientable surface ... 0 0 1 0 0 0
8777 Geometry-Oblivious FMM for Compressing Dense S... present gofmm geometryoblivious fmm novel meth... 1 0 0 0 0 0
8778 Deep learning for universal linear embeddings ... identifying coordinate transformations make st... 1 0 0 1 0 0
8779 Mean-field modeling of the basal ganglia-thala... neuronal correlates parkinsons disease pd incl... 0 0 0 0 1 0
8780 Applying Machine Learning To Maize Traits Pred... heterosis improved increased function biologic... 0 0 0 1 0 0
8781 Perceptual Compressive Sensing based on Contra... paper propose novel cs approach acquisition no... 1 0 0 0 0 0
8782 Poincaré surfaces of section around a 3-D irre... general small bodies solar system eg asteroids... 0 1 0 0 0 0
8783 On the second Dirichlet eigenvalue of some non... let omega bounded open set mathbb rn nge paper... 0 0 1 0 0 0
8784 A parametric level-set method for partially di... paper introduces parametric levelset method to... 1 0 0 0 0 0
8785 Using PCA and Factor Analysis for Dimensionali... large volume genomics data produced daily basi... 1 0 0 0 0 0
8786 Three-dimensional vortex structures and dynami... hexagonal manganites remno rare earths attract... 0 1 0 0 0 0
8787 A spectral-Galerkin turbulent channel flow sol... fully pseudospectral solver direct numerical s... 1 1 1 0 0 0
8788 Bi-Lagrangian structures and Teichmüller theory paper two purposes first study several structu... 0 0 1 0 0 0
8789 Proof of a conjecture of Abdollahi-Akbari-Maim... noncommuting graph gammag nonabelian group g d... 0 0 1 0 0 0
8790 LQG Control and Sensing Co-design linearquadraticgaussian lqg control concerned ... 1 0 0 0 0 0
8791 Subspace Learning in The Presence of Sparse St... subspace learning important problem many appli... 1 0 0 0 0 0
8792 Trends in scientific research in Online Inform... objective purpose work analyse knowledge struc... 1 0 0 0 0 0
8793 Balance between quantum Markov semigroups concept balance two state preserving quantum m... 0 0 1 0 0 0
8794 Deep Stochastic Configuration Networks with Un... paper develops randomized approach incremental... 1 0 0 0 0 0
8795 On convergence for graphexes study four different notions convergence graph... 0 0 1 0 0 0
8796 Improving text classification with vectors of ... paper presents analysis impact floatingpoint n... 1 0 0 0 0 0
8797 On ramification in transcendental extensions o... let lk extension complete discrete valuation f... 0 0 1 0 0 0
8798 Local Formulas for Ehrhart Coefficients from L... shown mcmullen coefficients ehrhart polynomial... 0 0 1 0 0 0
8799 Atypicality for Heart Rate Variability Using a... heart rate variability hrv vital measure auton... 1 0 0 0 0 0
8800 Rectangular Photonic Crystal Nanobeam Cavities... demonstrate fabrication photonic crystal nanob... 0 1 0 0 0 0
8801 Accelerated Primal-Dual Proximal Block Coordin... block coordinate update bcu methods enjoy low ... 1 0 1 1 0 0
8802 Weakly supervised training of deep convolution... overhead depth map measurements capture suffic... 1 1 0 0 0 0
8803 Absence of magnetic long range order in Ba$_3$... discovered novel candidate spin liquid state r... 0 1 0 0 0 0
8804 Deforming Representations of SL(2,R) spherical principal series representations pin... 0 0 1 0 0 0
8805 3D Reconstruction & Assessment Framework based... lidar extensively used industry massmarket due... 1 0 0 0 0 0
8806 Probabilistic Relational Reasoning via Metrics fuzz programming language reed pierce uses ele... 1 0 0 0 0 0
8807 Upper bounds for constant slope $p$-adic famil... study padic families eigenforms pth hecke eige... 0 0 1 0 0 0
8808 Size dependence of the surface tension of a fr... report size dependence surface tension free su... 0 1 0 0 0 0
8809 Bayesian Belief Updating of Spatiotemporal Sei... epileptic seizure activity shows complicated d... 1 0 0 1 0 0
8810 Split, Send, Reassemble: A Formal Specificatio... present formal model fragmentation reassembly ... 1 0 0 0 0 0
8811 An extinction free AGN selection by 18-band SE... developed efficient active galactic nucleus ag... 0 1 0 0 0 0
8812 Spatial point processes intensity estimation w... feature selection procedures spatial point pro... 0 0 1 1 0 0
8813 A novel methodology on distributed representat... effective representation proteins crucial task... 0 0 0 1 1 0
8814 Distributed Robust Set-Invariance for Intercon... introduce class distributed control policies n... 1 0 0 0 0 0
8815 Liouville's theorem and comparison results for... version liouvilles theorem proved solutions de... 0 0 1 0 0 0
8816 An Optimal Control Problem for the Steady Nonh... study optimal boundary control problem twodime... 0 0 1 0 0 0
8817 A thermodynamic view of dusty protoplanetary d... small solids embedded gaseous protoplanetary d... 0 1 0 0 0 0
8818 Stable determination of a Lamé coefficient by ... paper show shear modulus mu isotropic elastic ... 0 0 1 0 0 0
8819 Mordell-Weil Groups of Linear Systems and the ... paper study rational sections relative picard ... 0 0 1 0 0 0
8820 Subgradients of Minimal Time Functions without... recent years great interest variational analys... 0 0 1 0 0 0
8821 Multiple Kernel Learning and Automatic Subspac... alzheimers disease major cause dementia diagno... 1 0 0 1 0 0
8822 Optimal bounds and extremal trajectories for t... quantity interest system governed ordinary dif... 0 1 1 0 0 0
8823 Unsupervised Learning with Stein's Unbiased Ri... learning unlabeled noisy data one grand challe... 0 0 0 1 0 0
8824 Cellular function given parametric variation: ... reliable physiological function maintained cel... 0 0 0 0 1 0
8825 P4K: A Formal Semantics of P4 and Applications programmable packet processors p programming l... 1 0 0 0 0 0
8826 Global aspects of polarization optics and cose... use group theoretic ideas coset space methods ... 0 1 0 0 0 0
8827 Nonlinear Large Deviations: Beyond the Hypercube present framework calculate large deviations n... 0 0 1 0 0 0
8828 Force and torque of a string on a pulley every university introductory physics course c... 0 1 0 0 0 0
8829 Imagining Probabilistic Belief Change as Imagi... imaging form probabilistic belief change could... 1 0 0 0 0 0
8830 Sparse Rational Function Interpolation with Fi... paper give new sparse interpolation algorithms... 1 0 0 0 0 0
8831 Research Opportunities and Visions for Smart a... improving health nations population increasing... 1 0 0 0 0 0
8832 Training L1-Regularized Models with Orthant-Wi... lregularized models widely used sparse regress... 1 0 0 1 0 0
8833 Zero-Delay Source-Channel Coding with a One-Bi... zerodelay transmission gaussian source additiv... 1 0 0 0 0 0
8834 Non-Oscillatory Pattern Learning for Non-Stati... paper proposes novel nonoscillatory pattern no... 0 0 0 1 0 0
8835 Analysis of Set-Valued Stochastic Approximatio... main aim paper development lyapunov function b... 1 0 0 1 0 0
8836 Predicting Surgery Duration with Neural Hetero... scheduling surgeries challenging task due fund... 1 0 0 1 0 0
8837 Multichannel End-to-end Speech Recognition field speech recognition midst paradigm shift ... 1 0 0 0 0 0
8838 Universal Rules for Fooling Deep Neural Networ... recently deep learning based natural language ... 1 0 0 1 0 0
8839 Synthetic Observations of 21cm HI Line Profile... carried synthetic observations interstellar at... 0 1 0 0 0 0
8840 Clarifying Trust in Social Internet of Things social approach exploited internet things iot ... 1 0 0 0 0 0
8841 The Leave-one-out Approach for Matrix Completi... paper introduce powerful technique leaveoneout... 0 0 0 1 0 0
8842 Weyl calculus with respect to the Gaussian mea... paper introduce weyl functional calculus mapst... 0 0 1 0 0 0
8843 Model-Based Value Estimation for Efficient Mod... recent modelfree reinforcement learning algori... 0 0 0 1 0 0
8844 A new method of joint nonparametric estimation... paper propose new method joint nonparametric e... 0 0 1 1 0 0
8845 An OpenCL(TM) Deep Learning Accelerator on Arr... convolutional neural nets cnns become practica... 1 0 0 0 0 0
8846 Two-channel conduction in YbPtBi investigated transport magnetotransport broadb... 0 1 0 0 0 0
8847 Cosmological constraints on scalar-tensor grav... present cosmological constraints scalartensor ... 0 1 0 0 0 0
8848 Extending Bayesian structural time-series esti... government agencies offer economic incentives ... 0 0 0 1 0 0
8849 Absorption probabilities for Gaussian polytope... gaussian polytope mathcal pnd convex hull n in... 0 0 1 0 0 0
8850 Modeling news spread as an SIR process over te... news spread internet media outlets seen contag... 1 1 0 0 0 0
8851 Price dynamics on a risk-averse market with as... market asymmetric information viewed repeated ... 1 0 1 0 0 0
8852 Learning to Generalize: Meta-Learning for Doma... domain shift refers well known problem model t... 1 0 0 0 0 0
8853 Divide and Conquer: Recovering Contextual Info... android users suffering serious threats variou... 1 0 0 0 0 0
8854 Homotopy Theoretic Classification of Symmetry ... classify number symmetry protected phases usin... 0 1 1 0 0 0
8855 Automatic Renal Segmentation in DCE-MRI using ... kidney function evaluation using dynamic contr... 0 0 0 1 0 0
8856 Self-adjoint approximations of degenerate Schr... problem construction quantum mechanical evolut... 0 0 1 0 0 0
8857 Inelastic deformation during sill and laccolit... numerous geological observations evidence inel... 0 1 0 0 0 0
8858 On the magnetic shield for a Vlasov-Poisson pl... study screening bounded body gamma effect wind... 0 0 1 0 0 0
8859 Judicious partitions of uniform hypergraphs vertices graph edges may partitioned two parts... 0 0 1 0 0 0
8860 Full and maximal squashed flat antichains of m... full squashed flat antichain fsfa boolean latt... 1 0 0 0 0 0
8861 On the phantom barrier crossing and the bounds... paper investigate called phantom barrier cross... 0 1 0 0 0 0
8862 Detecting tropical defects of polynomial equat... introduce notion tropical defects certificates... 1 0 0 0 0 0
8863 Wasserstein Variational Inference paper introduces wasserstein variational infer... 0 0 0 1 0 0
8864 Comptage probabiliste sur la frontière de Furs... let g real linear semisimple algebraic group w... 0 0 1 0 0 0
8865 Bures-Hall Ensemble: Spectral Densities and Av... consider ensemble random density matrices dist... 0 0 0 1 0 0
8866 Electron and Nucleon Localization Functions of... fermion localization functions used discuss el... 0 1 0 0 0 0
8867 Constrained Bayesian Optimization with Noisy E... randomized experiments gold standard evaluatin... 1 0 0 1 0 0
8868 On synthetic data with predetermined subject p... standard approach assessing performance partit... 0 0 0 1 0 0
8869 Multi-Agent Diverse Generative Adversarial Net... propose madgan intuitive generalization genera... 1 0 0 1 0 0
8870 Analysis of Extremely Obese Individuals Using ... aetiology polygenic obesity multifactorial ind... 0 0 0 0 1 0
8871 Packet Throughput Analysis of Static and Dynam... develop analytical framework perfor mance comp... 1 0 0 0 0 0
8872 False Discovery Rate Control via Debiased Lasso consider problem variable selection highdimens... 0 0 0 1 0 0
8873 Relativistic Astronomy breakthrough starshot aims sending nearspeedof... 0 1 0 0 0 0
8874 Connection between Fermi contours of zero-fiel... investigate relation fermi sea fs zerofield ca... 0 1 0 0 0 0
8875 An instrumental intelligibility metric based o... propose monaural intrusive instrumental intell... 1 0 0 0 0 0
8876 Scattering of kinks in a non-polynomial model study model described single real scalar field... 0 1 0 0 0 0
8877 On the Specification of Constraints for Dynami... dynamic architectures component activation con... 1 0 0 0 0 0
8878 Objectness Scoring and Detection Proposals in ... forwardlooking sonar capture high resolution i... 1 0 0 0 0 0
8879 Rgtsvm: Support Vector Machines on a GPU in R rgtsvm provides fast flexible support vector m... 1 0 0 1 0 0
8880 Geometric Bijections for Regular Matroids, Zon... let regular matroid jacobian group rm jacm fin... 0 0 1 0 0 0
8881 Cross-Domain Recommendation for Cold-Start Use... collaborative filtering cf widely adopted tech... 1 0 0 0 0 0
8882 Deep Interest Network for Click-Through Rate P... clickthrough rate prediction essential task in... 1 0 0 1 0 0
8883 Nonlinear Dirac Cones physics arising twodimensionald dirac cones to... 0 1 0 0 0 0
8884 Portfolio Optimization in Fractional and Rough... consider fractional version heston volatility ... 0 0 0 0 0 1
8885 Vanishing in stable motivic homotopy sheaves determine systematic regions bigraded homotopy... 0 0 1 0 0 0
8886 Classifying Character Degree Graphs With 6 Ver... investigate prime character degree graphs solv... 0 0 1 0 0 0
8887 On the Table of Marks of a Direct Product of F... present method computing table marks direct pr... 0 0 1 0 0 0
8888 An Adiabatic Decomposition of the Hodge Cohomo... article use combinatorial geometric structure ... 0 0 1 0 0 0
8889 Search Intelligence: Deep Learning For Dominan... deep neural networks specifically fullyconnect... 1 0 0 1 0 0
8890 Grouped Convolutional Neural Networks for Mult... analyzing multivariate time series data import... 1 0 0 0 0 0
8891 A mathematical bridge between discretized gaug... describe mathematical link aspects information... 0 0 1 0 0 0
8892 Ten Simple Rules for Reproducible Research in ... reproducibility computational studies hallmark... 1 0 0 0 0 0
8893 No-But-Semantic-Match: Computing Semantically ... users rarely familiar content data source quer... 1 0 0 0 0 0
8894 Avalanches and Plastic Flow in Crystal Plastic... crystal plasticity mediated dislocations form ... 0 1 0 0 0 0
8895 Explicit expression for the stationary distrib... brownian motion twodimensional wedge negative ... 0 0 1 0 0 0
8896 A Data-Driven Framework for Assessing Cold Loa... cold load pickup clpu critical concern utiliti... 1 0 0 0 0 0
8897 On the topological complexity of aspherical sp... wellknown theorem eilenberg ganea expresses lu... 0 0 1 0 0 0
8898 Computable Isomorphisms for Certain Classes of... investigate structures consist countable set t... 0 0 1 0 0 0
8899 Tug-of-War: Observations on Unified Content Ha... modern applications operating systems vary gre... 1 0 0 0 0 0
8900 An Alternative to EM for Gaussian Mixture Mode... consider maximum likelihood estimation gaussia... 1 0 0 1 0 0
8901 The Coprime Quantum Chain paper introduce study coprime quantum chain ie... 0 1 1 0 0 0
8902 Inverse cascades and resonant triads in rotati... kraichnan seminal ideas inverse cascades yield... 0 1 0 0 0 0
8903 Towards a Rigorous Methodology for Measuring A... proposal improve routing securityroute origin ... 1 0 0 0 0 0
8904 Half-quadratic transportation problems present primaldual memory efficient algorithm ... 1 0 1 0 0 0
8905 Entanglement induced interactions in binary mi... establish conceptual framework identification ... 0 1 0 0 0 0
8906 Conditional fiducial models fiducial unique general prove restricted class... 0 0 1 1 0 0
8907 Statistics students' identification of inferen... statistical thinking partially depends upon it... 0 0 0 1 0 0
8908 Mask R-CNN present conceptually simple flexible general f... 1 0 0 0 0 0
8909 An overview of the marine food web in Icelandi... fishing activities broad impacts affect althou... 0 0 0 0 1 0
8910 Character tables and the problem of existence ... recently authors present work together n kolou... 0 0 1 0 0 0
8911 A bilevel approach for optimal contract pricin... distributed generation dg units increasingly i... 1 0 0 0 0 0
8912 Human-in-the-loop Artificial Intelligence little little newspapers revealing bright futu... 1 0 0 0 0 0
8913 Increased adaptability to rapid environmental ... famous twofold cost sex really cost anisogamy ... 0 0 0 0 1 0
8914 Searching edges in the overlap of two plane gr... consider pair plane straightline graphs whose ... 1 0 0 0 0 0
8915 Themis-ml: A Fairness-aware Machine Learning I... industries integrate machine learning socially... 1 0 0 0 0 0
8916 Supersymmetric field theories and geometric La... note announces results relations approach beil... 0 0 1 0 0 0
8917 Non-dispersive conservative regularisation of ... new regularisation shallow water isentropic eu... 0 1 0 0 0 0
8918 Some Identities associated with mock theta fun... recently andrews dixit yee defined two partiti... 0 0 1 0 0 0
8919 Model order reduction for random nonlinear dyn... examine nonlinear dynamical systems ordinary d... 0 0 1 0 0 0
8920 Monomial generators of complete planar ideals provide algorithm computes set generators comp... 0 0 1 0 0 0
8921 Optimization of a SSP's Header Bidding Strateg... last decade digital media web app publishers g... 0 0 0 1 0 0
8922 Mixed Rademacher and BPS Black Holes dyonic bps states type iib string theory compa... 0 0 1 0 0 0
8923 A generalization of the injectivity condition ... introduce family tensor network states term se... 0 1 0 0 0 0
8924 Limits to single photon transduction by a sing... single atoms form model system understanding l... 0 1 0 0 0 0
8925 Quantifying the Contributions of Training Data... verbal autopsy va consists survey relative clo... 0 0 0 1 0 0
8926 Rydberg excitation of cold atoms inside a holl... report versatile highly controllable hybrid co... 0 1 0 0 0 0
8927 Dynamics and evolution of planets in mean-moti... planetary systems orbital periods two members ... 0 1 1 0 0 0
8928 The Gain in the Field of Two Electromagnetic W... consider motion nonrelativistic electron field... 0 1 0 0 0 0
8929 Periods and factors of weak model sets renewed interest weak model sets due connectio... 0 0 1 0 0 0
8930 The Individual Impact Index ($i^3$) Statistic:... citation metrics analytic measures used evalua... 1 0 0 0 0 0
8931 Time-of-Flight Three Dimensional Neutron Diffr... physical properties polycrystalline materials ... 0 1 0 0 0 0
8932 Integrable $sl(\infty)$-modules and Category $... introduce study new categories tgkof integrabl... 0 0 1 0 0 0
8933 Island dynamics and anisotropy during vapor ph... using situ grazingincidence xray scattering me... 0 1 0 0 0 0
8934 Komlós-Major-Tusnády approximations to increme... wellknown komlsmajortusndy inequalities z wahr... 0 0 1 1 0 0
8935 Evaluating Gaussian Process Metamodels and Seq... consider problem learning level set noisy blac... 0 0 0 1 0 0
8936 MTBase: Optimizing Cross-Tenant Database Queries last decade many business applications moved c... 1 0 0 0 0 0
8937 Mechanism Deduction from Noisy Chemical Reacti... introduce kinetx fully automated metaalgorithm... 0 0 0 0 1 0
8938 Structural scale $q-$derivative and the LLG-Eq... present contribution study landaulifshitzgilbe... 0 1 1 0 0 0
8939 Analog Optical Computing by Half-Wavelength Slabs new approach perform analog optical differenti... 0 1 0 0 0 0
8940 A Separation Principle for Control in the Age ... review problem defining inferring state contro... 1 0 0 1 0 0
8941 Improving Neural Network Quantization using Ou... quantization improve execution latency energy ... 1 0 0 1 0 0
8942 On some further properties and application of ... paper provide new results weibullr family dist... 0 0 1 1 0 0
8943 Rejection of the principle of material frame i... principle material frame indifference shown in... 0 1 0 0 0 0
8944 Construction of flows of finite-dimensional al... recently introduced notion flow depending time... 0 0 1 0 0 0
8945 PdBI U/LIRG Survey (PULS): Dense Molecular Gas... aims present new iram plateau de bure interfer... 0 1 0 0 0 0
8946 The Dark Side(-Channel) of Mobile Devices: A S... recent years mobile devices eg smartphones tab... 1 0 0 0 0 0
8947 Non-Ergodic Delocalization in the Rosenzweig-P... consider rosenzweigporter model h v sqrtt phi ... 0 1 0 0 0 0
8948 MUDA: A Truthful Multi-Unit Double-Auction Mec... seminal paper mcafee presented truthful mechan... 1 0 0 0 0 0
8949 Multi-variable LSTM neural network for autoreg... paper propose multivariable lstm capable accur... 0 0 0 1 0 0
8950 Spectral Image Visualization Using Generative ... spectral images captured satellites radioteles... 0 0 0 1 0 0
8951 Simulations for 21 cm radiation lensing at EoR... introduce simulations aimed assessing well wea... 0 1 0 0 0 0
8952 Coverage characteristics of self-repelling ran... selfrepelling random walk token graph one step... 1 0 0 0 0 0
8953 Model Agnostic Time Series Analysis via Matrix... propose algorithm impute forecast time series ... 0 0 0 1 0 0
8954 Efficient motion planning for problems lacking... consider motionplanning problem planning colli... 1 0 0 0 0 0
8955 Bayesian Optimal Data Detector for mmWave OFDM... orthogonal frequency division multiplexing ofd... 1 0 0 0 0 0
8956 A second-order stochastic maximum principle fo... paper study generalized meanfield stochastic c... 0 0 1 0 0 0
8957 Representation of I(1) and I(2) autoregressive... extend grangerjohansen representation theorems... 0 0 1 1 0 0
8958 Constraining cosmology with the velocity funct... number density field galaxies per rotation vel... 0 1 0 0 0 0
8959 On the coefficients of symmetric power $L$-fun... study signs fourier coefficients newform let f... 0 0 1 0 0 0
8960 Spin-resolved electronic structure of ferroele... germanium telluride features special spinelect... 0 1 0 0 0 0
8961 Recurrent Scene Parsing with Perspective Under... objects may appear arbitrary scales perspectiv... 1 0 0 0 0 0
8962 Child-sized 3D Printed igus Humanoid Open Plat... use standard platforms field humanoid robotics... 1 0 0 0 0 0
8963 Lower Bounds on the Complexity of Solving Two ... paper studies complexity solving two classes n... 1 0 0 0 0 0
8964 Orbital misalignment of the Neptune-mass exopl... angle spin star planets orbital planes traces ... 0 1 0 0 0 0
8965 Flux-flow and vortex-glass phase in iron pnict... analysed fluxflow region isofield magneto resi... 0 1 0 0 0 0
8966 Word problems in Elliott monoids algorithmic issues concerning elliott local se... 1 0 1 0 0 0
8967 Improved lower bounds for the Mahler measure o... show absolute constant c mahler measure fekete... 0 0 1 0 0 0
8968 Supervised Hashing based on Energy Minimization recently supervised hashing methods attracted ... 1 0 0 1 0 0
8969 Sampled-Data Boundary Feedback Control of 1-D ... paper provides results application boundary fe... 1 0 1 0 0 0
8970 Scalable Entity Resolution Using Probabilistic... accurate efficient entity resolution open chal... 1 0 0 0 0 0
8971 ac properties of short Josephson weak links admittance two types josephson weak links calc... 0 1 0 0 0 0
8972 ProtoDash: Fast Interpretable Prototype Selection paper propose efficient algorithm protodash se... 1 0 0 1 0 0
8973 Regional Multi-Armed Bandits consider variant classic multiarmed bandit pro... 0 0 0 1 0 0
8974 Determining stellar parameters of asteroseismi... asteroseismic parameters allow us measure basi... 0 1 0 0 0 0
8975 Polarised target for Drell-Yan experiment in C... polarised drellyan experiment compass facility... 0 1 0 0 0 0
8976 Spectral Mixture Kernels for Multi-Output Gaus... early approaches multipleoutput gaussian proce... 0 0 0 1 0 0
8977 Supergravity and its Legacy personal recollection events preceded construc... 0 1 0 0 0 0
8978 Manton's five vortex equations from self-duality demonstrate five vortex equations recently int... 0 1 1 0 0 0
8979 Deep Style Match for Complementary Recommendation humans develop common sense style compatibilit... 1 0 0 0 0 0
8980 SpectralLeader: Online Spectral Learning for S... study problem learning latent variable model s... 1 0 0 1 0 0
8981 Fractional Calculus and certain integrals of G... aim introduce generalized multiindex bessel fu... 0 0 1 0 0 0
8982 Tameness from two successive good frames show assuming mild settheoretic hypothesis abs... 0 0 1 0 0 0
8983 On the $\mathbf{\rmΨ}-$fractional integral and... motivated rm psiriemannliouville rm psirl frac... 0 0 1 0 0 0
8984 Detection and Characterization of Illegal Mark... illicit online pharmacies allow purchase presc... 1 0 0 0 0 0
8985 First Hochschild cohomology group and stable e... use dimension lie algebra structure first hoch... 0 0 1 0 0 0
8986 When is a Convolutional Filter Easy To Learn? analyze convergence stochastic gradient descen... 1 0 0 1 0 0
8987 Robots as Powerful Allies for the Study of Emb... large body compelling evidence accumulated dem... 1 0 0 0 1 0
8988 Chiral magnetic textures in Ir/Fe/Co/Pt multil... skyrmions topologically protected twodimension... 0 1 0 0 0 0
8989 Conductance distribution in the magnetic field using modification shapiro scaling approach de... 0 1 0 0 0 0
8990 Linear Convergence of An Iterative Phase Retri... phase retrieval attractive difficult problem r... 1 0 0 0 0 0
8991 Representing smooth functions as compositions ... show smooth bilipschitz h represented exactly ... 0 0 0 1 0 0
8992 Bosonizing three-dimensional quiver gauge theo... start recently conjectured bosonization dualit... 0 1 0 0 0 0
8993 Deep Learning for Sentiment Analysis : A Survey deep learning emerged powerful machine learnin... 0 0 0 1 0 0
8994 Utility Preserving Secure Private Data Release differential privacy mechanisms also make reco... 1 0 0 0 0 0
8995 Towards colloidal spintronics through Rashba s... employing spin degree freedom charge carriers ... 0 1 0 0 0 0
8996 On the use and abuse of Price equation concept... biodiversity ecosystem functioning bef researc... 0 0 0 0 1 0
8997 A Data-Driven MHD Model of the Global Solar Co... developed datadriven magnetohydrodynamic mhd m... 0 1 0 0 0 0
8998 AXNet: ApproXimate computing using an end-to-e... neural network based approximate computing uni... 0 0 0 1 0 0
8999 500+ Times Faster Than Deep Learning (A Case S... deep learning methods useful highdimensional d... 0 0 0 1 0 0
9000 A two-dimensional hexagonal sheet of TiO$_2$ report ab initio discovery novel putative grou... 0 1 0 0 0 0
9001 Fast Markov Chain Monte Carlo Algorithms via L... basic considerations lie group preserves targe... 0 0 1 1 0 0
9002 On the (parameterized) complexity of recognizi... r ellpartition graph g partition vertex set r ... 1 0 0 0 0 0
9003 Comments on avalanche flow models based on the... series papers bartelt coworkers developed nove... 0 1 0 0 0 0
9004 Continuous Implicit Authentication for Mobile ... mobile devices become indispensable modern lif... 1 0 0 0 0 0
9005 Ultracold heteronuclear three-body systems: Ho... massimbalanced threebody recombination process... 0 1 0 0 0 0
9006 Variational Inference for Data-Efficient Model... partially observable markov decision processes... 0 0 0 1 0 0
9007 The ANAIS-112 experiment at the Canfranc Under... anais experiment aims confirmation damalibra s... 0 1 0 0 0 0
9008 A non-ellipticity result, or the impossible ta... logarithmic strain measures lvertlog urvert lo... 0 0 1 0 0 0
9009 Interpretable Neural Networks for Predicting M... present interpretable neural network predictin... 1 0 0 1 0 0
9010 Automatic Temperature Setpoint Tuning of a The... paper presents new way design fuzzy terminal i... 1 0 0 0 0 0
9011 A New Class of Integrals Involving Extended Hy... purpose present paper investigate generalized ... 0 0 1 0 0 0
9012 The Special Theory of Relativity as Applied to... two recent publications int j quant chem molec... 0 1 0 0 0 0
9013 An efficient algorithm for finding all possibl... understanding structural controllability compl... 1 1 0 0 0 0
9014 Transformation thermal convection: Cloaking, c... heat generally transfer via thermal conduction... 0 1 0 0 0 0
9015 Tunable terahertz reflection of graphene via i... report highly efficient tunable thz reflector ... 0 1 0 0 0 0
9016 Second-Order Kernel Online Convex Optimization... kernel online convex optimization koco framewo... 1 0 0 1 0 0
9017 On Corecursive Algebras for Functors Preservin... endofunctor h hyperextensive category preservi... 1 0 0 0 0 0
9018 Semisimple characters for inner froms I: GL_n(D) article representation theory inner formg gene... 0 0 1 0 0 0
9019 Quantum Memristors in Quantum Photonics propose method build quantum memristors quantu... 1 0 0 1 0 0
9020 Spin dynamics and magnetic-field-induced polar... exciton spin dynamics investigated experimenta... 0 1 0 0 0 0
9021 Resonant inelastic x-ray scattering probes the... resonant inelastic xray scattering n k edge re... 0 1 0 0 0 0
9022 Thermodynamic and kinetic fragility of Freon11... present dynamic thermodynamic study orientatio... 0 1 0 0 0 0
9023 Semi-supervised Feature Learning For Improving... data augmentation usually used supervised lear... 0 0 0 1 0 0
9024 Error Bounds for Piecewise Smooth and Switchin... paper deals regression problems nonsmooth targ... 1 0 0 1 0 0
9025 Civil Asset Forfeiture: A Judicial Perspective civil asset forfeiture caf longstanding contro... 1 0 0 0 0 0
9026 Covariance-Insured Screening modern biotechnologies produced vast amount hi... 0 0 0 1 0 0
9027 Amari Functors and Dynamics in Gauge Structures deal finite dimensional differentiable manifol... 0 0 1 0 0 0
9028 An Experimental Analysis of the Power Consumpt... nearly previous work smallfootprint keyword sp... 1 0 0 0 0 0
9029 Formal Geometric Quantization III, Functoriali... paper prove functorial aspect formal geometric... 0 0 1 0 0 0
9030 Infinitesimal perturbation analysis for risk m... using risk dependence measures based given und... 0 0 0 0 0 1
9031 Modeling and Analysis of Two-Way Relay Non-Ort... twoway relay nonorthogonal multiple access twr... 1 0 0 0 0 0
9032 Totally positive matrices and dilogarithm iden... show two involutions variety nn upper triangul... 0 0 1 0 0 0
9033 On the zeros of random harmonic polynomials: t... li wei studied density zeros gaussian harmonic... 0 0 1 0 0 0
9034 Online deforestation detection deforestation detection using satellite images... 1 0 0 1 0 0
9035 Analysis of Different Approaches of Parallel B... distributed computation recent trend engineeri... 1 0 0 0 0 0
9036 Preserving Order of Data When Validating Defec... context use defect prediction models classifie... 1 0 0 0 0 0
9037 Graphettes: Constant-time determination of gra... graphlets small connected induced subgraphs la... 1 0 0 0 0 0
9038 The toric sections: a simple introduction review didactic point view definition toric se... 0 0 1 0 0 0
9039 Quantum Field Theory, Quantum Geometry, and Qu... demonstrate one see quantization geometry quan... 0 0 1 0 0 0
9040 Neural and Synaptic Array Transceiver: A Brain... embedded continual learning autonomous adaptiv... 1 0 0 0 0 0
9041 Discrete Wavelet Transform Based Algorithm for... paper proposes application discrete wavelet tr... 1 0 0 0 0 0
9042 Multipolar moments of weak lensing signal arou... context upcoming weak lensing surveys euclid p... 0 1 0 0 0 0
9043 Charge and spin transport on graphene grain bo... study charge spin transport along grain bounda... 0 1 0 0 0 0
9044 Point Cloud Movement For Fully Lagrangian Mesh... lagrangian meshfree methods underlying spatial... 0 1 1 0 0 0
9045 A fast ILP-based Heuristic for the robust desi... consider problem optimally designing body wire... 1 0 1 0 0 0
9046 Strain broadening of the 1042-nm zero-phonon l... negatively charged nitrogenvacancy nv center d... 0 1 0 0 0 0
9047 Learning Depthwise Separable Graph Convolution... convolution neural network cnn gained tremendo... 1 0 0 1 0 0
9048 Candidate Hα emission and absorption line sour... present catalogue candidate halpha emission ab... 0 1 0 0 0 0
9049 Timely Updates over an Erasure Channel using age information aoi metric examine trans... 1 0 0 0 0 0
9050 Stellar Absorption Line Analysis of Local Star... analyze optical continuum starforming galaxies... 0 1 0 0 0 0
9051 Stratification as a general variance reduction... eigenvector method umbrella sampling emus belo... 0 1 0 1 0 0
9052 Adaptive MCMC via Combining Local Samplers markov chain monte carlo mcmc methods widely u... 1 0 0 1 0 0
9053 GAMBIT: The Global and Modular Beyond-the-Stan... describe opensource global fitting package gam... 0 1 0 0 0 0
9054 Odd holes in bull-free graphs complexity testing whether graph contains indu... 1 0 0 0 0 0
9055 Magnetic-Field-Induced Superconductivity in Ul... well known external magnetic fields magnetic m... 0 1 0 0 0 0
9056 Unimodal Category and the Monotonicity Conjecture completely characterize unimodal category func... 0 0 1 0 0 0
9057 Holomorphic primary fields in free CFT4 and Ca... counting formulae general primary fields free ... 0 0 1 0 0 0
9058 A Deep Generative Framework for Paraphrase Gen... paraphrase generation important problem nlp es... 1 0 0 0 0 0
9059 Stiff-response-induced instability for chemota... collective motion chemotactic bacteria e coli ... 0 1 1 0 0 0
9060 The Pfaffian state in an electron gas with sma... landau level mixing plays important role pfaff... 0 1 0 0 0 0
9061 Three-Dimensional Numerical Modeling of Shear ... shear dilation based hydraulic stimulations en... 0 1 0 0 0 0
9062 Decentralized DC MicroGrid Monitoring and Opti... treat emerging power systems direct current dc... 1 0 0 0 0 0
9063 AI4AI: Quantitative Methods for Classifying Ho... avian influenza breakouts cause millions dolla... 0 0 0 1 1 0
9064 Constructing tame supercuspidal representations new approach jiukang yus construction tame sup... 0 0 1 0 0 0
9065 Cohomologies on hypercomplex manifolds review cohomological aspects complex hypercomp... 0 0 1 0 0 0
9066 Automorphism groups of quandles and related gr... paper study different questions concerning aut... 0 0 1 0 0 0
9067 Forward Amortized Inference for Likelihood-Fre... paper introduce new form amortized variational... 0 0 0 1 0 0
9068 Beyond-CMOS Device Benchmarking for Boolean an... latest results benchmarking research presented... 1 0 0 0 0 0
9069 Cosmology and Convention argue important elements current cosmological ... 0 1 0 0 0 0
9070 Kernel-estimated Nonparametric Overlap-Based S... standard clustering algorithms usually find re... 0 0 0 1 0 0
9071 Goal-oriented Trajectories for Efficient Explo... exploration difficult challenge reinforcement ... 0 0 0 1 0 0
9072 Adaptive Sampling Strategies for Stochastic Op... paper propose stochastic optimization method a... 0 0 0 1 0 0
9073 Explicit estimates for the distribution of num... large literature asymptotic distribution numbe... 0 0 1 0 0 0
9074 Completely integrally closed Prufer $v$-multip... study effects assuming power series ring dx vd... 0 0 1 0 0 0
9075 Masked Autoregressive Flow for Density Estimation autoregressive models among best performing ne... 1 0 0 1 0 0
9076 Temperature-dependent optical properties of pl... due exceptional plasmonic properties noble met... 0 1 0 0 0 0
9077 Succinct Partial Sums and Fenwick Trees consider wellstudied partial sums problem succ... 1 0 0 0 0 0
9078 Deep Morphing: Detecting bone structures in fl... propose approaches based deep learning localiz... 0 0 0 1 0 0
9079 Persistence Flamelets: multiscale Persistent H... recent years noticeable interest study shape d... 0 0 1 1 0 0
9080 Effective modeling of ground penetrating radar... propose new approach model ground penetrating ... 0 1 0 0 0 0
9081 Crystallites in Color Glass Beads of the 19th ... glass corrosion crucial problem keeping conser... 0 1 0 0 0 0
9082 CO2 infrared emission as a diagnostic of plane... abridged infrared rovibrational emission lines... 0 1 0 0 0 0
9083 Public Evidence from Secret Ballots elections seem simplearent counting unique cha... 1 0 0 0 0 0
9084 Imprints of Zero-Age Velocity Dispersions and ... observations stars solar vicinity show clear t... 0 1 0 0 0 0
9085 Spatial Random Sampling: A Structure-Preservin... random column sampling guaranteed yield data s... 1 0 0 1 0 0
9086 Adiponitrile-LiTFSI solution as alkylcarbonate... recently dinitriles ncchncn especially adiponi... 0 1 0 0 0 0
9087 Sea of Lights: Practical Device-to-Device Secu... practical solutions bootstrap security todays ... 1 0 0 0 0 0
9088 On the correlation between a level of structur... proposed computerized method calculating relat... 1 0 0 0 0 0
9089 Schmidt's subspace theorem for moving hypersur... discovered formal analogy nevanlinna theory di... 0 0 1 0 0 0
9090 HoNVis: Visualizing and Exploring Higher-Order... unlike conventional firstorder network fon hig... 1 1 0 0 0 0
9091 Direct observation of coupled geochemical and ... dissolution porous media geologic formation in... 0 1 0 0 0 0
9092 Symplectic resolutions for Higgs moduli spaces paper study algebraic symplectic geometry sing... 0 0 1 0 0 0
9093 Investigation of Defect Modes of Chiral Photon... properties defect modes cholesteric liquid cry... 0 1 0 0 0 0
9094 Crystal Growth of Cu6(Ge,Si)6O18.6H2O and Assi... reported growth mmsized singlecrystals lowdime... 0 1 0 0 0 0
9095 Optical reconfiguration and polarization contr... controlling confining light exciting plasmons ... 0 1 0 0 0 0
9096 Some Repeated-Root Constacyclic Codes over Gal... codes galois rings studied extensively last th... 1 0 1 0 0 0
9097 Statistical solutions and Onsager's conjecture prove version onsagers conjecture conservation... 0 1 1 0 0 0
9098 The sum of log-normal variates in geometric Br... geometric brownian motion gbm key model repres... 0 0 0 0 0 1
9099 Slow Spin Dynamics and Self-Sustained Clusters... identify emerging microscopic structures low t... 0 1 0 0 0 0
9100 Continuous Authentication of Smartphones Based... empirical investigation activecontinuous authe... 0 0 0 1 0 0
9101 On the Universality of Invariant Networks constraining linear layers neural networks res... 1 0 0 1 0 0
9102 Are Deep Policy Gradient Algorithms Truly Poli... study behavior deep policy gradient algorithms... 1 0 0 0 0 0
9103 Achieving Privacy in the Adversarial Multi-Arm... paper improve previously best known regret bou... 1 0 0 0 0 0
9104 Proximity Variational Inference variational inference powerful approach approx... 1 0 0 1 0 0
9105 Mandarin tone modeling using recurrent neural ... propose encoderclassifier framework model mand... 1 0 0 0 0 0
9106 Shallow water models with constant vorticity modify nonlinear shallow water equations korte... 0 1 1 0 0 0
9107 Tensor Balancing on Statistical Manifold solve tensor balancing rescaling nth order non... 1 0 0 1 0 0
9108 Learning Unknown Markov Decision Processes: A ... consider problem learning unknown markov decis... 1 0 0 0 0 0
9109 Models of Random Knots study knots links probabilistic viewpoint prov... 0 0 1 0 0 0
9110 Revival structures of coherent states for Xm e... revival structures xm exceptional orthogonal p... 0 0 1 0 0 0
9111 Autonomous drone cinematographer: Using artist... autonomous aerial cinematography potential ena... 1 0 0 0 0 0
9112 Fifth order finite volume WENO in general orth... high order reconstruction finite volume fv app... 0 1 0 0 0 0
9113 Traffic Minimizing Caching and Latent Variable... given statistical model request frequencies si... 1 0 0 0 0 0
9114 Maximizing the information learned from finite... use language uninformative bayesian prior choi... 0 0 1 1 0 0
9115 Aging Feynman-Kac Equation aging process growing old maturing one widely ... 0 1 0 0 0 0
9116 Effective optimization using sample persistenc... present apply generalpurpose multistart algori... 1 1 0 0 0 0
9117 BOOK: Storing Algorithm-Invariant Episodes for... introduce novel method train agents reinforcem... 1 0 0 0 0 0
9118 A global scavenging and circulation ocean mode... paper set forth ocean model radioactive trace ... 1 1 0 0 0 0
9119 The Dynamic Geometry of Interaction Machine: A... girards geometry interaction goi semantics des... 1 0 0 0 0 0
9120 Classification of finite W-groups determine structure wgroup mathcalgf small gal... 0 0 1 0 0 0
9121 A Batch-Incremental Video Background Estimatio... principal component pursuit pcp stateoftheart ... 1 0 1 0 0 0
9122 Chromospheric Activity of HAT-P-11: an Unusual... kepler photometry hot neptune host star hatp s... 0 1 0 0 0 0
9123 Automated Detection of Serializability Violati... number weak consistency mechanisms developed r... 1 0 0 0 0 0
9124 Andreev reflection in 2D relativistic material... andreev conductance across normal metal nsuper... 0 1 0 0 0 0
9125 Multi-Task Learning for Contextual Bandits contextual bandits form multiarmed bandit agen... 1 0 0 1 0 0
9126 Admissible topologies on $C(Y,Z)$ and ${\cal O... let z two given topological spaces cal oy resp... 0 0 1 0 0 0
9127 Weighted spherical means generated by generali... consider spherical mean generated multidimensi... 0 0 1 0 0 0
9128 K-Means Clustering using Tabu Search with Quan... tabu search ts metaheuristic proposed kmeans c... 1 0 0 0 0 0
9129 In-silico Feedback Control of a MIMO Synthetic... synthetic toggle switch first proposed gardner... 1 0 0 0 0 0
9130 Holomorphic foliations tangent to Levi-flat su... study segre varieties associated leviflat subs... 0 0 1 0 0 0
9131 Real-Time Panoramic Tracking for Event Cameras event cameras paradigm shift camera technology... 1 0 0 0 0 0
9132 Halo nonlinear reconstruction apply nonlinear reconstruction method simulate... 0 1 0 0 0 0
9133 Molecular semimetallic hydrogen establishing metallic hydrogen goal intensive ... 0 1 0 0 0 0
9134 Order-Sensitivity and Equivariance of Scoring ... relative performance competing point forecasts... 0 0 1 1 0 0
9135 Light in Power: A General and Parameter-free A... present paper generic parameterfree algorithm ... 1 0 0 0 0 0
9136 Developing a machine learning framework for es... paper investigate potential estimating soilmoi... 0 0 0 1 0 0
9137 Distilling a Neural Network Into a Soft Decisi... deep neural networks proved effective way perf... 1 0 0 1 0 0
9138 A General Scheme Implicit Force Control for a ... paper propose implicit force control scheme on... 1 1 0 0 0 0
9139 CNN-based MultiChannel End-to-End Speech Recog... casual conversations involving multiple speake... 1 0 0 0 0 0
9140 Learning Task-Oriented Grasping for Tool Manip... tool manipulation vital facilitating robots co... 1 0 0 1 0 0
9141 Classification of Minimal Separating Sets in L... consider surface let msubset ssetminus connect... 0 0 1 0 0 0
9142 A feasibility study on SSVEP-based interaction... noninvasive steadystate visual evoked potentia... 1 0 0 0 0 0
9143 Intelligent User Interfaces - A Tutorial iuis aim incorporate intelligent automated cap... 1 0 0 0 0 0
9144 Graph Partitioning with Acyclicity Constraints graphs widely used model execution dependencie... 1 0 0 0 0 0
9145 Learning Sublinear-Time Indexing for Nearest N... efficient sublineartime indexing algorithms hi... 1 0 0 1 0 0
9146 Lempel-Ziv Jaccard Distance, an Effective Alte... recent work proposed lempelziv jaccard distanc... 1 0 0 0 0 0
9147 Graded Steinberg algebras and their representa... study category left unital graded modules stei... 0 0 1 0 0 0
9148 Movement of time-delayed hot spots in Euclidea... consider cauchy problem damped wave equation i... 0 0 1 0 0 0
9149 Hierarchical Attention-Based Recurrent Highway... time series prediction studied variety domains... 0 0 0 1 0 0
9150 Mass distribution and skewness for passive sca... extend previous results characterizing loading... 0 1 0 0 0 0
9151 An Optics-Based Approach to Thermal Management... commercial onesun solar modules incoming sunli... 0 1 0 0 0 0
9152 GOLDRUSH. II. Clustering of Galaxies at $z\sim... present clustering properties lyman break gala... 0 1 0 0 0 0
9153 The Least-Area Tetrahedral Tile of Space prove leastarea unitvolume tetrahedral tile eu... 0 0 1 0 0 0
9154 Renormalization group theory for percolation i... motivated multihop communication unreliable wi... 1 1 0 0 0 0
9155 Spectral properties and breathing dynamics of ... investigate fewbody mixture two bosonic compon... 0 1 0 0 0 0
9156 Study of secondary neutron interactions with $... natural uranium assembly quinta irradiated gev... 0 1 0 0 0 0
9157 Short Proofs for Slow Consistency let operatornameconmathbf trestrictionx denote... 0 0 1 0 0 0
9158 Response to Comment on "Cell nuclei have lower... recent study entitled cell nuclei lower refrac... 0 0 0 0 1 0
9159 On the composition of an arbitrary collection ... whole enterprise spin compositions recast simp... 1 0 1 0 0 0
9160 Perceived Performance of Webpages In the Wild:... clearly one likes webpages poor quality experi... 1 0 0 1 0 0
9161 Entanglement and exotic superfluidity in spin-... investigate properties entanglement onedimensi... 0 1 0 0 0 0
9162 Informed Non-convex Robust Principal Component... revisit problem robust principal component ana... 0 0 0 1 0 0
9163 A note on self orbit equivalences of Anosov fl... show self orbit equivalence transitive anosov ... 0 0 1 0 0 0
9164 The Metallicity of the Intracluster Medium Ove... use chandra xray data measure metallicity intr... 0 1 0 0 0 0
9165 Graphical Models: An Extension to Random Graph... work consider extension graphical models rando... 1 0 0 1 0 0
9166 Boundary Control method and De Branges spaces.... framework application boundary control method ... 0 0 1 0 0 0
9167 On the evolution of galaxy spin in a cosmologi... traditional view morphologyspin connection cha... 0 1 0 0 0 0
9168 Diagrammatic Approach to Multiphoton Scattering present method systematically study multiphoto... 0 1 0 0 0 0
9169 Efficient Computation of Feedback Control for ... method presented solving discretetime finiteho... 1 0 0 0 0 0
9170 A Stochastic Large-scale Machine Learning Algo... size modern data sets exceeds disk memory capa... 0 0 0 1 0 0
9171 Unified Model of D-Term Inflation hybrid inflation driven fayetiliopoulos fi ter... 0 1 0 0 0 0
9172 Signal Recovery from Unlabeled Samples paper study recovery signal set noisy linear p... 1 0 0 1 0 0
9173 Piecewise linear generalized Alexander's theor... study piecewise linear codimension two embeddi... 0 0 1 0 0 0
9174 Sample complexity of population recovery problem population recovery refers estimating ... 1 0 1 1 0 0
9175 Asymptotic Exponentiality of the First Exit Ti... consider first exit time shiryaevroberts diffu... 0 0 1 1 0 0
9176 Learning to Teach Reinforcement Learning Agents article study transfer learning model action a... 1 0 0 0 0 0
9177 Giant room-temperature barocaloric effects in ... barocaloric effect still incipient scientific ... 0 1 0 0 0 0
9178 $({\mathfrak{gl}}_M, {\mathfrak{gl}}_N)$-Duali... establish mathfrakglm mathfrakglndualities qua... 0 0 1 0 0 0
9179 Dynamic coupling of a finite element solver to... propose method efficiently coupling finite ele... 1 1 0 0 0 0
9180 A study of periodograms standardized using tra... noise affecting time series colored unknown st... 0 1 1 1 0 0
9181 An Efficient Deep Learning Technique for the N... present efficient deep learning technique mode... 0 1 0 0 0 0
9182 Accurate fast computation of steady two-dimens... paper describes efficient algorithm computing ... 0 1 1 0 0 0
9183 AutoWIG: Automatic Generation of Python Bindin... python r scientific packages incorporate compi... 1 0 0 0 0 0
9184 Fate of Weyl semimetals in the presence of inc... investigate effect incommensurate potential we... 0 1 0 0 0 0
9185 Word equations in linear space word equations important problem intersection ... 1 0 0 0 0 0
9186 Selective Strong Structural Minimum Cost Resil... paper addresses problem minimum cost resilient... 0 0 1 0 0 0
9187 Maximum a Posteriori Policy Optimisation introduce new algorithm reinforcement learning... 1 0 0 1 0 0
9188 On Geodesic Completeness for Riemannian Metric... geometric approach optimal transport informati... 0 0 1 0 0 0
9189 Hacker Combat: A Competitive Sport from Progra... history humanhood included competitive activit... 1 0 0 0 0 0
9190 Providing Effective Real-time Feedback in Simu... virtual reality simulation becoming popular tr... 1 0 0 0 0 0
9191 Large-Scale Classification of Structured Objec... paper presents novel deep learning architectur... 1 0 0 0 0 0
9192 code2seq: Generating Sequences from Structured... ability generate natural language sequences so... 1 0 0 1 0 0
9193 Learning Neural Parsers with Deterministic Dif... explore problem learning decompose spatial tas... 1 0 0 1 0 0
9194 Dimension of the minimum set for the real and ... prove zero set nonnegative plurisubharmonic fu... 0 0 1 0 0 0
9195 Road Detection Technique Using Filters with Ap... autonomous driving systems broadly used equipm... 1 0 0 0 0 0
9196 Relativistic Spacecraft Propelled by Directed ... achieving relativistic flight enable extrasola... 0 1 0 0 0 0
9197 Outward Influence and Cascade Size Estimation ... estimating cascade size nodes influence fundam... 1 0 0 0 0 0
9198 Estimation of a noisy subordinated Brownian Mo... high frequency based estimation methods semipa... 0 0 1 1 0 0
9199 Mirror actuation design for the interferometer... kagra km cryogenic interferometric gravitation... 0 1 0 0 0 0
9200 ZFIRE: The Evolution of the Stellar Mass Tully... using observations made mosfire keck part zfir... 0 1 0 0 0 0
9201 A new computational method for a model of C. e... organisms ability move freely fundamental beha... 0 1 0 0 0 0
9202 Word forms - not just their lengths- are optim... inverse relationship length word frequency use... 1 0 0 0 0 0
9203 Human Understandable Explanation Extraction fo... recent years number artificial intelligent ser... 1 0 0 1 0 0
9204 Generalization Bounds for Unsupervised Cross-D... recent empirical success crossdomain mapping a... 0 0 0 1 0 0
9205 Quantum chaos in an electron-phonon bad metal calculate scrambling rate lambdal butterfly ve... 0 1 0 0 0 0
9206 Data-driven Optimal Transport Cost Selection f... recently blanchet kang murhy showed several ma... 0 0 0 1 0 0
9207 Formally Secure Compilation of Unsafe Low-Leve... propose new formal criterion secure compilatio... 1 0 0 0 0 0
9208 Detecting Potential Local Adversarial Examples... machine learning models increasingly used indu... 0 0 0 1 0 0
9209 The formation of magnetic depletions and flux ... misalignment solar rotation axis magnetic axis... 0 1 0 0 0 0
9210 Optimization Based Methods for Partially Obser... paper consider filtering smoothing partially o... 0 0 1 1 0 0
9211 LongHCPulse: Long Pulse Heat Capacity on a Qua... paper presents longhcpulse software enables he... 0 1 0 0 0 0
9212 Calculation of hyperfine structure constants o... zvector method relativistic coupledcluster fra... 0 1 0 0 0 0
9213 Autoregressive Point-Processes as Latent State... modeling interpreting spike train data task ce... 0 0 0 0 1 0
9214 Phase transitions of the dimerized Kane-Mele m... dimerized kanemele model withwithout strong in... 0 1 0 0 0 0
9215 A Unified Approach to Interpreting Model Predi... understanding model makes certain prediction c... 1 0 0 1 0 0
9216 Approximate Value Iteration for Risk-aware Mar... consider largescale markov decision processes ... 1 0 1 0 0 0
9217 Dataflow Matrix Machines as a Model of Computa... overview dataflow matrix machines turing compl... 1 0 0 0 0 0
9218 Attention-based Vocabulary Selection for NMT D... neural machine translation nmt models usually ... 1 0 0 0 0 0
9219 Reconstruction by Calibration over Tensors for... purpose develop rapid imaging framework balanc... 0 1 0 0 0 0
9220 Spectral Sparsification of Simplicial Complexe... generalization use graphs describe pairwise in... 1 0 0 0 0 0
9221 BHK mirror symmetry for K3 surfaces with non-s... paper consider class k surfaces defined hypers... 0 0 1 0 0 0
9222 Automatic Rule Extraction from Long Short Term... although deep learning models proven effective... 1 0 0 1 0 0
9223 On the validity of parametric block correlatio... consider set bp parametric block correlation m... 0 0 1 1 0 0
9224 Two-dimensional off-lattice Boltzmann model fo... develop twodimensional lattice boltzmann model... 0 1 0 0 0 0
9225 Minimal coloring number on minimal diagrams fo... shown mathbbzcolorable link diagram admits non... 0 0 1 0 0 0
9226 Automatic Gradient Boosting automatic machine learning performs predictive... 0 0 0 1 0 0
9227 Speeding up Memory-based Collaborative Filteri... recommender systems play important role many s... 1 0 0 0 0 0
9228 Spatio-temporal variations in the urban rhythm... last decades notion cities state equilibrium c... 1 0 0 0 0 0
9229 Smith-Purcell Radiation simplest model magnetized infinitely thin elec... 0 1 0 0 0 0
9230 Dynamics of Bose-Einstein condensate with acco... system dynamic equations boseeinstein condensa... 0 1 0 0 0 0
9231 On the generalization of Erdős-Vincze's theore... polyellipse curve euclidean plane whose points... 0 0 1 0 0 0
9232 Improved self-energy correction method for acc... lda method selfenergy correction powerful tool... 0 1 0 0 0 0
9233 Magnetic domains in thin ferromagnetic films w... investigate scaling ground state energy optima... 0 1 1 0 0 0
9234 Learning a Robust Society of Tracking Parts object tracking essential task computer vision... 1 0 0 0 0 0
9235 A direct proof of dimerization in a family of ... study family spins quantum spin chains nearest... 0 1 1 0 0 0
9236 An accelerated splitting algorithm for radio-i... next generation radiointerferometers like squa... 0 1 0 0 0 0
9237 BaFe2(As1-xPx)2 (x = 0.22-0.42) thin films gro... optimized substrate temperature ts phosphorus ... 0 1 0 0 0 0
9238 How does the accuracy of interatomic force con... solving peierlsboltzmann transport equation in... 0 1 0 0 0 0
9239 Mesh-to-raster based non-rigid registration of... region interest roi alignment medical images p... 1 0 0 0 0 0
9240 Vision-based Obstacle Removal System for Auton... past years use cameraequipped robotic platform... 1 0 0 0 0 0
9241 Polyatomic trilobite Rydberg molecules in a de... trilobites exotic giant dimers enormous dipole... 0 1 0 0 0 0
9242 Does warm debris dust stem from asteroid belts? many debris discs reveal twocomponent structur... 0 1 0 0 0 0
9243 The Multiple Roots Phenomenon in Maximum Likel... multiple root estimation problems statistical ... 0 0 1 1 0 0
9244 Group-like projections for locally compact qua... let mathbbg locally compact quantum group give... 0 0 1 0 0 0
9245 Exciton-phonon interaction in the strong coupl... temperaturedependent optical response excitons... 0 1 0 0 0 0
9246 Exact lowest-Landau-level solutions for vortex... lowest landau level lll equation emerges accur... 0 1 1 0 0 0
9247 Predicting Out-of-View Feature Points for Mode... work present novel framework uses deep learnin... 1 0 0 0 0 0
9248 A Simple PTAS for the Dual Bin Packing Problem... recently renault studied dual bin packing prob... 1 0 0 0 0 0
9249 Constructive Néron Desingularization of algebr... algorithmic proof general nron desingularizati... 0 0 1 0 0 0
9250 List-Decodable Robust Mean Estimation and Lear... study problem listdecodable gaussian mean esti... 1 0 1 1 0 0
9251 Complexity Dichotomies for the Minimum F-Overl... possibly infinite fixed family graphs f say gr... 1 0 0 0 0 0
9252 Asymptotic behavior of 3-D stochastic primitiv... using new general method prove existence rando... 0 0 1 0 0 0
9253 Analytical Approach for Calculating Chemotaxis... consider chemotaxis problem onedimensional sys... 0 1 0 0 0 0
9254 Copy the dynamics using a learning machine possible generally construct dynamical system ... 0 1 1 1 0 0
9255 Algebraic Bethe ansatz for the XXZ Heisenberg ... implementation algebraic bethe ansatz xxz heis... 0 1 0 0 0 0
9256 Using Programmable Graphene Channels as Weight... graphenebased spindiffusive grsd neural networ... 0 1 0 0 0 0
9257 Construction and Encoding of QC-LDPC Codes Usi... quasicyclic qc lowdensity paritycheck ldpc cod... 1 0 1 0 0 0
9258 Imaginary time, shredded propagator method for... gw method manybody approach capable providing ... 0 1 0 0 0 0
9259 A time change strategy to model reporting dela... paper considers problem predicting number clai... 0 0 0 0 0 1
9260 Solving Parameter Estimation Problems with Dis... solution inverse problems variational setting ... 1 0 1 0 0 0
9261 Induced and intrinsic Hashiguchi connections o... study geometry finsler submanifolds using pull... 0 0 1 0 0 0
9262 Iterative PET Image Reconstruction Using Convo... pet image reconstruction challenging due illpo... 0 1 0 1 0 0
9263 Wave-Shaped Round Functions and Primitive Groups round functions used building blocks iterated ... 1 0 1 0 0 0
9264 Clean Floquet Time Crystals: Models and Realiz... time crystals phase showing spontaneous breaki... 0 1 0 0 0 0
9265 Fractional Derivatives of Convex Lyapunov Func... paper devoted development control procedures g... 0 0 1 0 0 0
9266 The role of tachysterol in vitamin D photosynt... investigate role tachysterol photophysicalchem... 0 1 0 0 0 0
9267 A Web of Hate: Tackling Hateful Speech in Onli... online social platforms beset hateful speech c... 1 0 0 0 0 0
9268 Lacunary Eta-quotients Modulo Powers of Primes integral power series called lacunary modulo a... 0 0 1 0 0 0
9269 An elementary approach to sofic groupoids describe sofic groupoids elementary terms prov... 0 0 1 0 0 0
9270 A New Combination of Message Passing Technique... paper propose new combined message passing alg... 1 0 0 0 0 0
9271 Modern Python at the Large Synoptic Survey Tel... lsst software systems make extensive use pytho... 0 1 0 0 0 0
9272 Matrix Completion Methods for Causal Panel Dat... paper study methods estimating causal effects ... 0 0 1 0 0 0
9273 Singular surfaces of revolution with prescribe... give explicit formula singular surfaces revolu... 0 0 1 0 0 0
9274 A Possible Mechanism for Driving Oscillations ... kappamechanism successful explaining origin ob... 0 1 0 0 0 0
9275 Cubic Fields: A Primer classify cubic extensions field arbitrary char... 0 0 1 0 0 0
9276 The GBT Beam Shape at 109 GHz installation argus pixel receiver covering ghz... 0 1 0 0 0 0
9277 Deep Latent Dirichlet Allocation with Topic-La... challenging develop stochastic gradient based ... 1 0 0 1 0 0
9278 Bridging Finite and Super Population Causal In... two general views causal analysis experimental... 0 0 1 1 0 0
9279 Deep Reinforcement Learning that Matters recent years significant progress made solving... 1 0 0 1 0 0
9280 Testing Docker Performance for HPC Applications main goal article compare performance penaltie... 1 0 0 0 0 0
9281 Can Neural Machine Translation be Improved wit... present first realworld application methods im... 0 0 0 1 0 0
9282 A new concept multi-stage Zeeman decelerator: ... demonstrate successful experimental implementa... 0 1 0 0 0 0
9283 Adversarial Generation of Real-time Feedback w... simulationbased training sbt gaining popularit... 1 0 0 1 0 0
9284 Models of the strongly lensed quasar DES J0408... present gravitational lens models multiply ima... 0 1 0 0 0 0
9285 Efficient Test-based Variable Selection for Hi... variable selection plays fundamental role high... 0 0 0 1 0 0
9286 Star Cluster Formation from Turbulent Clumps. ... investigate formation early evolution star clu... 0 1 0 0 0 0
9287 A deep learning architecture for temporal slee... sleep stage classification constitutes importa... 0 0 0 1 0 0
9288 An anti-incursion algorithm for unknown probab... gambler moves vertices ldots n graph using pro... 1 0 1 0 0 0
9289 Virtual Breakpoints for x86/64 efficient reliable trapping execution program ... 1 0 0 0 0 0
9290 Accurate Multi-physics Numerical Analysis of P... paper studies mechanism preconcentration charg... 0 1 0 0 0 0
9291 Learning to Embed Words in Context for Syntact... present models embedding words context surroun... 1 0 0 0 0 0
9292 Modeling Impact of Human Errors on the Data Un... data storage systems availability play crucial... 1 0 0 0 0 0
9293 Gaussian and Sparse Processes Are Limits of Ge... theory sparse stochastic processes offers broa... 1 0 1 0 0 0
9294 Survival time of Princess Kaguya in an air-tig... princess kaguya heroine famous folk tale every... 0 1 0 0 0 0
9295 Descriptor System Tools (DSTOOLS) User's Guide descriptor system tools dstools collection mat... 1 0 0 0 0 0
9296 Laplacian Prior Variational Automatic Relevanc... classic sparsitydriven problems fundamental l ... 0 0 0 1 0 0
9297 Mitigating Confirmation Bias on Twitter by Rec... work propose contentbased recommendation appro... 1 0 0 0 0 0
9298 First-principles based Landau-Devonshire poten... work describes firstprinciplesbased computatio... 0 1 0 0 0 0
9299 A topological characterization of the omega-li... v jimenez j llibre characterized homeomorphism... 0 0 1 0 0 0
9300 A Decision Tree Based Approach Towards Adaptiv... adoption distributed paradigm allowed applicat... 1 0 0 0 0 0
9301 A Tractable Approach to Dynamic Network Dimens... spatial distributions cell interference ocif i... 1 0 0 0 0 0
9302 Parametric uncertainty in complex environmenta... order understand underlying processes governin... 0 0 0 1 0 0
9303 Prediction and Control with Temporal Segment M... introduce method learning dynamics complex non... 1 0 0 1 0 0
9304 Artificial Intelligence and Statistics artificial intelligence ai intrinsically datad... 1 0 0 1 0 0
9305 Shortcut Sequence Tagging deep stacked rnns usually hard train adding sh... 1 0 0 0 0 0
9306 Distortions of the Cosmic Microwave Background... using nbody hydrodynamical cosmological simula... 0 1 0 0 0 0
9307 Improving brain computer interface performance... one big restrictions brain computer interface ... 0 0 0 1 1 0
9308 From Language to Programs: Bridging Reinforcem... goal learn semantic parser maps natural langua... 1 0 0 1 0 0
9309 GeneGAN: Learning Object Transfiguration and A... object transfiguration replaces object image a... 1 0 0 0 0 0
9310 Flow-free Video Object Segmentation segmenting foreground object video challenging... 1 0 0 0 0 0
9311 Finding Modes by Probabilistic Hypergraphs Shi... paper develop novel paradigm namely hypergraph... 1 0 0 0 0 0
9312 Bounding the size of an almost-equidistant set... set points ddimensional euclidean space almost... 1 0 1 0 0 0
9313 Equipping weak equivalences with algebraic str... investigate extent weak equivalences model cat... 0 0 1 0 0 0
9314 An Experimental Study of the Treewidth of Real... treewidth parameter measures treelike relation... 1 0 0 0 0 0
9315 A yield-cost tradeoff governs Escherichia coli... many microbial systems known actively reshape ... 0 1 0 0 0 0
9316 Towards a Unified Taxonomy of Biclustering Met... unsupervised machine learning data mining tech... 1 0 0 1 0 0
9317 Global center stable manifold for the defocusi... paper consider defocusing energy critical wave... 0 0 1 0 0 0
9318 Real-time convolutional networks for sonar ima... deep neural networks impressive classification... 1 0 0 0 0 0
9319 Mathematics in Caging of Robotics crucial problem robotics field cage object usi... 1 0 1 0 0 0
9320 Time Series Prediction for Graphs in Kernel an... graph models relevant many fields distributed ... 1 0 0 0 0 0
9321 Geometric comparison of phylogenetic trees wit... metric space phylogenetic trees defined biller... 0 0 0 0 1 0
9322 Automatic Detection of Cyberbullying in Social... social media offer great communication opportu... 1 0 0 0 0 0
9323 Holographic Entanglement Entropy in Cyclic Cos... discuss cyclic cosmology visible universe intr... 0 1 0 0 0 0
9324 Adversarial Training for Disease Prediction fr... electronic health records ehrs contributed com... 1 0 0 1 0 0
9325 Hydrodynamic stability in the presence of a st... investigate stability statistically stationary... 0 1 1 0 0 0
9326 Asset Price Bubbles: An Option-based Indicator construct statistical indicator detection shor... 0 0 0 0 0 1
9327 Interleaving and Gromov-Hausdorff distance one central notions emerge study persistent ho... 0 0 1 0 0 0
9328 Attainable Knowledge article investigates evidencebased semantics e... 1 0 0 0 0 0
9329 Linear complementarity problems on extended se... paper study linear complementarity problems ex... 0 0 1 0 0 0
9330 On the Bernstein-Von Mises Theorem for High Di... prove bernsteinvon mises theorem general class... 0 0 1 1 0 0
9331 Dynamic Word Embeddings for Evolving Semantic ... word evolution refers changing meanings associ... 1 0 0 1 0 0
9332 Constructing Words with High Distinct Square D... fraenkel simpson showed number distinct square... 1 0 0 0 0 0
9333 Annihilators of Koszul Homologies and Almost C... article propound question annihilator koszul h... 0 0 1 0 0 0
9334 Analyzing Knowledge Transfer in Deep Q-Network... analyze knowledge autonomously handle one type... 1 0 0 0 0 0
9335 From modelling of systems with constraints to ... note describe objects generalized geometry app... 1 0 0 0 0 0
9336 A Deeper Look at Experience Replay recently experience replay widely used various... 1 0 0 0 0 0
9337 Dirac operators with $W^{1,\infty}$-potential ... study behavior spectrum dirac operator togethe... 0 0 1 0 0 0
9338 Tunable Superconducting Qubits with Flux-Indep... studied impact lowfrequency magnetic flux nois... 0 1 0 0 0 0
9339 Kulish-Sklyanin type models: integrability and... start riemannhilbert problem rhp related bdity... 0 1 0 0 0 0
9340 Takiff algebras with polynomial rings of symme... extending results raistauvel macedosavage arak... 0 0 1 0 0 0
9341 Can We Prove Time Protection? timing channels significant growing security t... 1 0 0 0 0 0
9342 On some Graphs with a Unique Perfect Matching show deciding whether given graph g size uniqu... 1 0 0 0 0 0
9343 Trade-Offs in Stochastic Event-Triggered Control paper studies optimal outputfeedback control l... 1 0 0 0 0 0
9344 Third Harmonic THz Generation from Graphene in... graphene zerobandgap twodimensional semiconduc... 0 1 0 0 0 0
9345 Taming the Signal-to-Noise Problem in Lattice ... path integrals describing quantum manybody sys... 0 1 0 0 0 0
9346 Description of radiation damage in diamond sen... bcml system beam monitoring device cms experim... 0 1 0 0 0 0
9347 Design and Analysis of Time-Invariant SC-LDPC ... paper deal timeinvariant spatially coupled low... 1 0 0 0 0 0
9348 Predicting Organic Reaction Outcomes with Weis... prediction organic reaction outcomes fundament... 1 0 0 1 0 0
9349 Legendre curves and singularities of a ruled s... paper legendre curves unit tangent bundle give... 0 0 1 0 0 0
9350 Field-free nucleation of antivortices and gian... giant vortices higher phasewinding pi usually ... 0 1 0 0 0 0
9351 Quantum criticality in photorefractive optics:... study vortex patterns prototype nonlinear opti... 0 1 0 0 0 0
9352 Burn-In Demonstrations for Multi-Modal Imitati... recent work imitation learning generated polic... 1 0 0 1 0 0
9353 Elliptic Determinantal Processes and Elliptic ... introduce seven families stochastic systems in... 0 1 1 0 0 0
9354 Searching for chemical signatures of brown dwa... recent studies shown closein brown dwarfs mass... 0 1 0 0 0 0
9355 The Klein Paradox: A New Treatment dirac equation requires treatment step potenti... 0 1 0 0 0 0
9356 What are the most important factors that influ... recent years real estate industry captured gov... 0 0 0 1 0 1
9357 A Multi-Wavelength Analysis of Dust and Gas in... present new atacama large millimetersubmillime... 0 1 0 0 0 0
9358 Step bunching with both directions of the curr... report first time observation bunching monoato... 0 1 0 0 0 0
9359 Causal Bandits with Propagating Inference bandit framework designing sequential experime... 0 0 0 1 0 0
9360 The 2D Tree Sliding Window Discrete Fourier Tr... present new algorithm sliding window discrete ... 1 0 0 1 0 0
9361 Towards security defect prediction with AI study investigate limits current state art ai ... 0 0 0 1 0 0
9362 Pseudo-Recursal: Solving the Catastrophic Forg... general neural networks currently capable lear... 0 0 0 1 0 0
9363 Multivariate Hadamard self-similarity: testing... scale invariance commonly observed component r... 0 0 1 1 0 0
9364 Efficient barycentric point sampling on meshes present easytoimplement efficient analytical i... 1 0 0 0 0 0
9365 Femtosecond Optical Superregular Breathers superregular sr breathers nonlinear wave struc... 0 1 0 0 0 0
9366 Diversity, Topology, and the Risk of Node Re-i... real network datasets provide significant bene... 1 0 0 0 0 0
9367 Braid group action and root vectors for the $q... define two algebra automorphisms qonsager alge... 0 0 1 0 0 0
9368 Underapproximation of Reach-Avoid Sets for Dis... examine lagrangian techniques computing undera... 1 0 1 0 0 0
9369 A Domain-Specific Language and Editor for Para... domainspecific languages dsls increasing impor... 1 0 0 0 0 0
9370 Manifold regularization based on Nystr{ö}m typ... paper study nystrm type subsampling large scal... 1 0 0 1 0 0
9371 Path integral molecular dynamics with surface ... work novel ring polymer representation multile... 0 1 1 0 0 0
9372 The interplay of the collisionless nonlinear t... nonlinear thinshell instability ntsi may expla... 0 1 0 0 0 0
9373 Multiple Scaled Contaminated Normal Distributi... multivariate contaminated normal mcn distribut... 0 0 0 1 0 0
9374 The Galaxy-Halo Connection Over The Last 13.3 ... present new determinations stellartohalo mass ... 0 1 0 0 0 0
9375 State of the art of Trust and Reputation Syste... article proposes depth comparative study popul... 1 0 0 0 0 0
9376 Placing your Coins on a Shelf consider problem packing family disks shelf di... 1 0 1 0 0 0
9377 Randomized Rumor Spreading in Ad Hoc Networks ... randomized rumor spreading problem generates b... 1 0 0 0 0 0
9378 A simple and efficient feedback control strate... due severe mathematical modeling calibration d... 1 0 1 0 0 0
9379 The interaction of Airy waves and solitons in ... employ generic threewave system chi interactio... 0 1 0 0 0 0
9380 A penalty criterion for score forecasting in s... note proposes penalty criterion assessing corr... 0 0 0 1 0 0
9381 A robust RUV-testing procedure via gamma-diver... identification differentially expressed genes ... 0 0 0 1 0 0
9382 On the Distribution, Model Selection Propertie... derive expressions finitesample distribution l... 0 0 1 1 0 0
9383 Transductive Boltzmann Machines present transductive boltzmann machines tbms f... 0 0 0 1 0 0
9384 Human-Robot Trust Integrated Task Allocation a... paper presents humanrobot trust integrated tas... 1 0 0 0 0 0
9385 A five-decision testing procedure to infer on ... statistical test seen procedure produce decisi... 0 0 1 1 0 0
9386 PubMed 200k RCT: a Dataset for Sequential Sent... present pubmed k rct new dataset based pubmed ... 1 0 0 1 0 0
9387 Convergence radius of perturbative Lindblad dr... address problem analyzing radius convergence p... 0 1 0 0 0 0
9388 A 2D metamaterial with auxetic out-of-plane be... customarily inplane auxeticity synclastic bend... 0 1 0 0 0 0
9389 Isolated Loops in Quantum Feedback Networks scheme making use isolated feedback loop recen... 0 0 1 0 0 0
9390 Distance-based Depths for Directional Data directional data constrained lie unit sphere o... 0 0 1 1 0 0
9391 Two-dimensional Schrödinger symmetry and three... boseeinstein condensates becs confined twodime... 0 1 0 0 0 0
9392 Groupoid of morphisms of groupoids paper construct two groupoids morphisms groupo... 0 0 1 0 0 0
9393 Spin alignment of stars in old open clusters stellar clusters form gravitational collapse t... 0 1 0 0 0 0
9394 Global well-posedness of critical surface quas... paper prove global wellposedness critical surf... 0 0 1 0 0 0
9395 On the Limitation of Local Intrinsic Dimension... understanding characterizing subspaces adversa... 0 0 0 1 0 0
9396 A properly embedded holomorphic disc in the ba... paper construct properly embedded holomorphic ... 0 0 1 0 0 0
9397 Kähler differential algebras for 0-dimensional... given dimensional scheme projective space math... 0 0 1 0 0 0
9398 Benchmarks and reliable DFT results for spin-c... dft used throughout nanoscience especially mod... 0 1 0 0 0 0
9399 The Road to Success: Assessing the Fate of Lin... investigate birth diffusion lexical innovation... 1 0 0 0 0 0
9400 Enumeration of Graphs and the Characteristic P... give complete formula characteristic polynomia... 0 0 1 0 0 0
9401 On the Scientific Value of Large-scale Testbed... largescale wireless testbeds setup last years ... 1 0 0 0 0 0
9402 Brain Damage and Motor Cortex Impairment in Ch... nonrapid eye movement nrem sleep desaturation ... 0 1 0 0 0 0
9403 FPT-algorithms for The Shortest Lattice Vector... paper present fptalgorithms special cases shor... 1 0 0 0 0 0
9404 A dynamic graph-cuts method with integrated mu... purpose improve kidney segmentation clinical u... 1 0 0 0 0 0
9405 Natural Scales in Geographical Patterns human mobility known distributed across severa... 1 1 0 0 0 0
9406 Drawing materials studied by THz spectroscopy thz timedomain spectroscopy transmission mode ... 0 1 0 0 0 0
9407 A feasibility study for predicting optimal rad... advancement treatment modalities radiation the... 1 1 0 0 0 0
9408 Single-molecule imaging of DNA gyrase activity... bacterial dna gyrase introduces negative super... 0 0 0 0 1 0
9409 Shedding Light on Black Box Machine Learning A... selfdriving vehicles backflipping robots virtu... 0 0 0 1 0 0
9410 Click-based porous cationic polymers for enhan... imidazolium based porous cationic polymers syn... 0 1 0 0 0 0
9411 Oscillons in the presence of external potential discuss similarity oscillons oscillational mod... 0 1 0 0 0 0
9412 Dynamical Tides in Highly Eccentric Binaries: ... highly eccentric binary systems appear many as... 0 1 0 0 0 0
9413 Calabi-Yau threefolds fibred by high rank latt... study threefolds fibred k surfaces admitting l... 0 0 1 0 0 0
9414 Lipschitz perturbations of Morse-Smale semigroups paper deal lipschitz continuous perturbations ... 0 0 1 0 0 0
9415 Semi-Supervised Learning for Detecting Human T... human trafficking one atrocious crimes among c... 1 0 0 0 0 0
9416 Einstein's 1935 papers: EPR=ER? may einstein published two coauthors famous ep... 0 1 0 0 0 0
9417 An overview of process model quality literatur... rising interest construction quality business ... 1 0 0 0 0 0
9418 Convergence rates of least squares regression ... study performance least squares estimator lse ... 0 0 1 1 0 0
9419 Some properties of nested Kriging predictors kriging widely employed technique particular c... 0 0 1 1 0 0
9420 Optimal Transport on Discrete Domains inspired matching supply demand logistical pro... 1 0 0 0 0 0
9421 High-Resolution Altitude Profiles of the Atmos... prospect next generation groundbased telescope... 0 1 0 0 0 0
9422 Spice up Your Chat: The Intentions and Sentime... emojis new way conveying nonverbal cues widely... 1 0 0 0 0 0
9423 Self-shielding of hydrogen in the IGM during t... investigate selfshielding intergalactic hydrog... 0 1 0 0 0 0
9424 Universal Conditional Machine propose single neural probabilistic model base... 0 0 0 1 0 0
9425 A hybrid isogeometric approach on multi-patche... present systematic study higherorder penalty t... 0 0 1 0 0 0
9426 Circumstellar discs: What will be next? prospective chapter gives view evolution study... 0 1 0 0 0 0
9427 Algorithmic Verification of Linearizability fo... nonlinear ordinary differential equation solve... 1 0 1 0 0 0
9428 Space weather challenges of the polar cap iono... paper presents research polar cap ionosphere s... 0 1 0 0 0 0
9429 Unconventional Large Linear Magnetoresistance ... report large linear magnetoresistance cuxte re... 0 1 0 0 0 0
9430 Which Distribution Distances are Sublinearly T... given samples unknown distribution p descripti... 1 0 1 1 0 0
9431 Hund's coupling driven photo-carrier relaxatio... study relaxation dynamics photocarriers parama... 0 1 0 0 0 0
9432 A Connection between Feed-Forward Neural Netwo... two popular modelling paradigms computer visio... 1 0 0 1 0 0
9433 On the digital representation of smooth numbers let b ge integer among results establish quant... 0 0 1 0 0 0
9434 On Constraint Qualifications of a Nonconvex In... paper study constraint qualifications nonconve... 0 0 1 0 0 0
9435 A Framework for Dynamic Stability Analysis of ... propose framework employing stochastic differe... 1 0 0 0 0 0
9436 Confidence interval for correlation estimator ... kimura yoshida treated model finite variation ... 0 0 1 1 0 0
9437 Novel event classification based on spectral a... liquid scintillators common choice neutrino ph... 0 1 0 0 0 0
9438 Symmetric Riemannian problem on the group of p... consider lie group psl group orientation prese... 0 0 1 0 0 0
9439 Heterogeneous Supervision for Relation Extract... relation extraction fundamental task informati... 1 0 0 0 0 0
9440 Variational integrators for anelastic and pseu... anelastic pseudoincompressible equations two w... 0 1 1 0 0 0
9441 The reparameterization trick for acquisition f... bayesian optimization sampleefficient approach... 1 0 0 1 0 0
9442 Multi-model ensembles for ecosystem prediction making predictions ecosystems often available ... 0 0 0 1 0 0
9443 Nonlinear atomic vibrations and structural pha... consider longitudinal nonlinear atomic vibrati... 0 1 0 0 0 0
9444 Homotopy classes of gauge fields and the lattice smooth manifold possibly boundary corners lie ... 0 0 1 0 0 0
9445 Classical System of Martin-Lof's Inductive Def... cyclic proof system called clkidomega gives us... 1 0 0 0 0 0
9446 Factorization and non-factorization theorems f... let theta inner function unit disk let kptheta... 0 0 1 0 0 0
9447 Adaptively Detecting Malicious Queries in Web ... web request query strings queries pass paramet... 1 0 0 0 0 0
9448 Derivatives pricing using signature payoffs introduce signature payoffs family pathdepende... 0 0 0 0 0 1
9449 ALMA constraints on star-forming gas in a prot... present deep alma co observations main sequenc... 0 1 0 0 0 0
9450 Data-driven framework for real-time thermosphe... paper demonstrate new datadriven framework rea... 1 0 0 0 0 0
9451 Synergies between Asteroseismology and Three-d... turbulent mixing chemical elements convection ... 0 1 0 0 0 0
9452 A polyharmonic Maass form of depth 3/2 for SL_... duke imamoglu toth constructed polyharmonic ma... 0 0 1 0 0 0
9453 Systems of cubic forms in many variables consider system r cubic forms n variables inte... 0 0 1 0 0 0
9454 Nitrogen-doped Nanoporous Carbon Membranes Fun... selfsupported electrocatalysts generated emplo... 0 1 0 0 0 0
9455 Cyber-Physical Systems Security -- A Survey exponential growth cyberphysical systems cps n... 1 0 0 0 0 0
9456 WebPol: Fine-grained Information Flow Policies... standard web browser programming model thirdpa... 1 0 0 0 0 0
9457 Large Sample Asymptotics of the Pseudo-Margina... pseudomarginal algorithm variant metropolishas... 0 0 0 1 0 0
9458 Large-time behavior of solutions to Vlasov-Poi... present contribution investigates dynamics gen... 0 0 1 0 0 0
9459 Towards Adaptive Resilience in High Performanc... failure rates high performance computers rapid... 1 0 0 0 0 0
9460 Discrete Sequential Prediction of Continuous A... long assumed high dimensional continuous contr... 1 0 0 1 0 0
9461 Sampling Errors in Nested Sampling Parameter E... sampling errors nested sampling parameter esti... 0 1 0 1 0 0
9462 Towards a Generic Diver-Following Algorithm: B... paper explores design development class robust... 1 0 0 0 0 0
9463 Blockchain: A Graph Primer bitcoin underlying technology blockchain becom... 1 0 0 0 0 0
9464 Comparison of forcing functions in magnetohydr... results presented direct numerical simulations... 0 1 0 0 0 0
9465 Chance-Constrained AC Optimal Power Flow Integ... integration largescale renewable generation ma... 1 0 0 0 0 0
9466 A Scalable, Linear-Time Dynamic Cutoff Algorit... recent results supercomputers show beyond k co... 1 1 0 0 0 0
9467 Spiral arms and disc stability in the Andromed... aims density waves often considered triggering... 0 1 0 0 0 0
9468 Anomalous Brownian motion via linear Fokker-Pl... according traditional point view boltzmann ent... 0 1 0 0 0 0
9469 An RKHS model for variable selection in functi... mathematical model variable selection function... 0 0 0 1 0 0
9470 Dual-LED-based multichannel microscopy for who... report development multichannel microscopy who... 0 1 0 0 0 0
9471 Revisiting the quest for a universal log-law a... trinity socalled canonical wallbounded turbule... 0 1 0 0 0 0
9472 Teaching robots to imitate a human with no on-... paper consider problem learning object manipul... 1 0 0 0 0 0
9473 Control and Observability Aspects of Phase Syn... paper addresses important control observabilit... 0 1 0 0 0 0
9474 Dynamic density structure factor of a unitary ... present theoretical investigation dynamic dens... 0 1 0 0 0 0
9475 Surjunctivity and topological rigidity of alge... let x compact metrizable group gamma countable... 0 0 1 0 0 0
9476 High Resilience Diverse Domain Multilevel Audi... novel diverse domain dctsvd dwtsvd watermarkin... 1 0 0 0 0 0
9477 Multiprocessor Approximate Message Passing wit... solving largescale regularized linear inverse ... 1 0 1 0 0 0
9478 Qualitative robustness for bootstrap approxima... important property statistical estimators qual... 0 0 1 1 0 0
9479 On Asymptotic Properties of Hyperparameter Est... kernelbased regularization method two core iss... 1 0 0 0 0 0
9480 SECS: Efficient Deep Stream Processing via Cla... despite accelerating convolutional neural netw... 1 0 0 0 0 0
9481 Implementation of infinite-range exterior comp... present numerical implementation infiniterange... 0 1 0 0 0 0
9482 A consistent measure of the merger histories o... use large sample sim galaxies constructed comb... 0 1 0 0 0 0
9483 EE-Grad: Exploration and Exploitation for Cost... present generic framework trading fidelity cos... 1 0 0 1 0 0
9484 Test of special relativity using a fiber netwo... phase compensated optical fiber links enable h... 0 1 0 0 0 0
9485 Magnetic phases of spin-1 lattice gases with r... spin atomic gas optical lattice unitfilling mo... 0 1 0 0 0 0
9486 On the second boundary value problem for Monge... paper prove existence classical solutions seco... 0 0 1 0 0 0
9487 Is the kinetic equation for turbulent gas-part... paper wellposedness realizability kinetic equa... 0 1 0 0 0 0
9488 On the construction of small subsets containin... note construct series small subsets containing... 1 0 1 0 0 0
9489 Information Potential Auto-Encoders paper suggest framework make use mutual inform... 1 0 0 1 0 0
9490 Irreducible compositions of degree two polynom... let q odd prime power set monic irreducible po... 1 0 1 0 0 0
9491 Quantum interferometry in multi-mode systems consider situation signal propagating arm inte... 0 1 0 0 0 0
9492 Glider representations of chains of semisimple... start study glider representations setting sem... 0 0 1 0 0 0
9493 Equilibrium configurations of large nanostruct... emphab initio langevin dynamics approach devel... 0 1 0 0 0 0
9494 Born to Learn: the Inspiration, Progress, and ... biological plastic neural networks systems ext... 1 0 0 0 0 0
9495 Hypergraph Convolution and Hypergraph Attention recently graph neural networks attracted great... 1 0 0 1 0 0
9496 Network Capacity Bound for Personalized PageRa... former paper concept bipartite pagerank introd... 1 1 0 0 0 0
9497 Hessian corrections to Hybrid Monte Carlo method introduction secondorder derivatives lo... 0 0 0 1 0 0
9498 Are Over-massive Haloes of Ultra Diffuse Galax... sample coma cluster ultradiffuse galaxies udgs... 0 1 0 0 0 0
9499 Magnetic-Visual Sensor Fusion-based Dense 3D R... reliable realtime reconstruction localization ... 1 0 0 0 0 0
9500 Algebraic laminations for free products and ar... work first step towards description gromov bou... 0 0 1 0 0 0
9501 Real-Time Recovery Efficiencies and Performanc... present transient source detection efficiencie... 0 1 0 0 0 0
9502 Spatial Risk Measure for Max-Stable and Max-Mi... paper consider isotropic stationary maxstable ... 0 0 1 1 0 0
9503 Scale invariant transfer matrices and Hamiltio... given direct system hilbert spaces smapsto mat... 0 0 1 0 0 0
9504 Visual-Based Analysis of Classification Measur... plethora available classification performance ... 1 0 0 0 0 0
9505 Flow Fields: Dense Correspondence Fields for H... modern large displacement optical flow algorit... 1 0 0 0 0 0
9506 Critical current density and vortex pinning me... grew lixnhyfetese single crystals successfully... 0 1 0 0 0 0
9507 Pseudopotential for Many-Electron Atoms and Ions electronelectron correlation forms basis diffi... 0 1 0 0 0 0
9508 Secular Orbit Evolution in Systems with a Stro... present semianalytical correction seminal solu... 0 1 0 0 0 0
9509 Reliable counting of weakly labeled concepts b... making informed correct quick decision lifesav... 0 0 0 0 1 0
9510 On the stability and applications of distance-... paper investigates stability distancebased tex... 1 0 0 0 0 0
9511 Space-time domain solutions of the wave equati... general spacetime evolution scattering inciden... 0 1 0 0 0 0
9512 Constrained Least Squares for Extended Complex... subspace estimation unknown colored noise fact... 0 0 0 1 0 0
9513 Generalized $k$-core pruning process on direct... resilience complex interconnected system conce... 0 1 0 0 0 0
9514 Benchmarks for single-phase flow in fractured ... paper presents several test cases intended ben... 1 0 1 0 0 0
9515 On the "Calligraphy" of Books authorship attribution natural language proces... 1 0 0 0 0 0
9516 Voice Conversion from Unaligned Corpora using ... building voice conversion vc system nonparalle... 1 0 0 0 0 0
9517 Calidad en repositorios digitales en Argentina... numerous institutions organizations need prese... 1 0 0 0 0 0
9518 Time-triggering versus event-triggering contro... timetriggered eventtriggered control strategie... 1 0 1 0 0 0
9519 Lower spectral radius and spectral mapping the... study lipschitz positively homogeneous finite ... 0 0 1 0 0 0
9520 SHINE: Signed Heterogeneous Information Networ... online social networks people often express at... 1 0 0 1 0 0
9521 Eliminating Field Quantifiers in Strongly Depe... prove elimination field quantifiers strongly d... 0 0 1 0 0 0
9522 A study of existing Ontologies in the IoT-domain several domains adopted increasing use iotbase... 1 0 0 0 0 0
9523 Dynamic Advisor-Based Ensemble (dynABE): Case ... demand metals modern technology shifting commo... 0 0 0 0 0 1
9524 High-Speed Demodulation of weak FBGs Based on ... high speed quasidistributed demodulation metho... 0 1 0 0 0 0
9525 Destructive Impact of Molecular Noise on Nanos... study loss coherence electrochemical oscillati... 0 1 0 0 0 0
9526 A new method for recognising Suzuki groups present new algorithm constructive recognition... 1 0 1 0 0 0
9527 Pure $Σ_2$-Elementarity beyond the Core display entire structure cal r coding sigma si... 0 0 1 0 0 0
9528 Parsimonious Inference on Convolutional Neural... new radical cnn design approach presented pape... 1 0 0 0 0 0
9529 Betweenness and Diversity in Journal Citation ... journals central eugene garfields research int... 1 0 0 0 0 0
9530 Non-Markovian Control with Gated End-to-End Me... partially observable environments present impo... 1 0 0 1 0 0
9531 A likely detection of a local interplanetary d... context creating akari midinfrared allsky diff... 0 1 0 0 0 0
9532 Kepler red-clump stars in the field and in ope... convective mixing heliumcoreburning hecb stars... 0 1 0 0 0 0
9533 Balanced Excitation and Inhibition are Require... neurons networks cerebral cortex must operate ... 1 1 0 1 0 0
9534 On the coherent emission of radio frequency ra... extended air showers produced cosmic rays impi... 0 1 0 0 0 0
9535 La falacia del empate técnico electoral argued concept technical tie electoral polls q... 0 0 0 1 0 0
9536 Unexpected 3+ valence of iron in FeO$_2$, a ge... recent discovery pyrite feo important ingredie... 0 1 0 0 0 0
9537 Towards Smart Proof Search for Isabelle despite recent progress automatic theorem prov... 1 0 0 0 0 0
9538 A Nearly Instance Optimal Algorithm for Top-k ... study active learning problem topk ranking mul... 1 0 0 1 0 0
9539 Inverse problem on conservation laws first concise formulation inverse problem cons... 0 1 1 0 0 0
9540 Slow to fast infinitely extended reservoirs fo... consider exclusion process long jumps box lamb... 0 1 1 0 0 0
9541 Multi-Dimensional Conservation Laws and Integr... paper introduce new property twodimensional in... 0 1 0 0 0 0
9542 Fibers in the NGC1333 proto-cluster initial conditions clustered star formation no... 0 1 0 0 0 0
9543 Exploiting Friction in Torque Controlled Human... common architecture torque controlled humanoid... 1 0 0 0 0 0
9544 What caused what? A quantitative account of ac... actual causation concerned question caused con... 1 0 1 1 0 0
9545 Gaussian One-Armed Bandit and Optimization of ... consider minimax setup gaussian onearmed bandi... 0 0 1 1 0 0
9546 Machine Learning with World Knowledge: The Pos... machine learning become pervasive multiple dom... 1 0 0 1 0 0
9547 The Case for Learned Index Structures indexes models btreeindex seen model map key p... 1 0 0 0 0 0
9548 Radiation reaction for spinning bodies in effe... compute leading postnewtonian pn contributions... 0 1 0 0 0 0
9549 Incremental control and guidance of hybrid air... hybrid unmanned aircraft combine hover capabil... 1 0 0 0 0 0
9550 Micromechanics based framework with second-ord... harmonic product tensorsleading concept harmon... 0 1 0 0 0 0
9551 Towards formal models and languages for verifi... incorrect operations multirobot system mrs may... 1 0 0 0 0 0
9552 On the Complexity of Simple and Optimal Determ... show revenueoptimal deterministic mechanism de... 1 0 0 0 0 0
9553 Further constraints on variations in the IMF f... present constraints variations initial mass fu... 0 1 0 0 0 0
9554 Black holes in vector-tensor theories study static spherically symmetric black hole ... 0 1 0 0 0 0
9555 Proving the existence of loops in robot trajec... paper presents reliable method verify existenc... 1 0 0 0 0 0
9556 The clock of chemical evolution chemical evolution essential understanding ori... 0 0 0 0 1 0
9557 Fast readout algorithm for cylindrical beam po... simple analytically correct algorithm develope... 0 1 0 0 0 0
9558 Approximation Algorithms for Independence and ... graph g called bkvpg resp bkepg constant kgeq ... 1 0 0 0 0 0
9559 Phonon-mediated repulsion, sharp transitions a... study two identical fermions two hardcore boso... 0 1 0 0 0 0
9560 Group Synchronization on Grids group synchronization requires estimate unknow... 0 0 1 1 0 0
9561 An energy-based analysis of reduced-order mode... stability power networks increasingly importan... 1 0 0 0 0 0
9562 Binary Evolution and the Progenitor of SN 1987A since majority massive stars members binary sy... 0 1 0 0 0 0
9563 A Generative Model for Dynamic Networks with A... networks observed real world like social netwo... 1 0 0 1 0 0
9564 Algorithmic Chaining and the Role of Partial F... investigate contextual online learning nonpara... 0 0 1 1 0 0
9565 A hybrid primal heuristic for Robust Multiperi... investigate robust multiperiod network design ... 1 0 1 0 0 0
9566 Real-world Multi-object, Multi-grasp Detection deep learning architecture proposed predict gr... 1 0 0 0 0 0
9567 Fault Tolerance of Random Graphs with respect ... fault tolerance random graphs unbounded degree... 0 1 0 0 0 0
9568 Belief Propagation, Bethe Approximation and Po... factor graphs important models succinctly repr... 1 0 0 1 0 0
9569 Combining the Ensemble and Franck-Condon Appro... correct treatment vibronic effects vital model... 0 1 0 0 0 0
9570 Personalized Dialogue Generation with Diversif... endowing dialogue system particular personalit... 1 0 0 0 0 0
9571 Hyperelliptic Jacobians and isogenies motivated results mestre voisin note mainly co... 0 0 1 0 0 0
9572 Signal and Noise Statistics Oblivious Sparse R... orthogonal matching pursuit omp orthogonal lea... 0 0 0 1 0 0
9573 Experimenting with the p4est library for AMR s... many physical problems involve spatial tempora... 1 1 0 0 0 0
9574 Lifting CDCL to Template-based Abstract Domain... success conflict driven clause learning cdcl b... 1 0 0 0 0 0
9575 Binary Voting with Delegable Proxy: An Analysi... paper provides analysis voting method known de... 1 0 0 0 0 0
9576 Exact description of coalescing eigenstates in... exceptional point two eigenstates coalesce ope... 0 1 0 0 0 0
9577 The maximum number of cycles in a graph with f... main topic considered maximizing number cycles... 0 0 1 0 0 0
9578 Structural Nonrealism and Quantum Information article introduces new concept structure defin... 0 1 0 0 0 0
9579 Robotics CTF (RCTF), a playground for robot ha... robots state insecurity onstage emerging conce... 1 0 0 0 0 0
9580 Effects of transmutation elements in tungsten ... tungsten w widely considered promising plasma ... 0 1 0 0 0 0
9581 A playful note on spanning and surplus edges consider necessarily nearcritical random graph... 0 0 1 0 0 0
9582 Logo Synthesis and Manipulation with Clustered... designing logo new brand lengthy tedious backa... 1 0 0 1 0 0
9583 Multi-view Supervision for Single-view Reconst... study notion consistency shape observation pro... 1 0 0 0 0 0
9584 Efficient Rank Minimization via Solving Non-co... rank minimization rm wildly investigated task ... 0 0 0 1 0 0
9585 Almost Buchsbaumness of some rings arising fro... study properties stanleyreisner rings simplici... 0 0 1 0 0 0
9586 Dynamically controlled plasmonic nano-antenna ... propose analyze theoretically approach realizi... 0 1 0 0 0 0
9587 Comparing deep neural networks against humans:... human visual object recognition typically rapi... 1 0 0 1 0 0
9588 Quantum critical response: from conformal pert... discuss dynamical response functions near quan... 0 1 0 0 0 0
9589 Testing High-dimensional Covariance Matrices u... study testing highdimensional covariance matri... 0 0 1 1 0 0
9590 Work Analysis with Resource-Aware Session Types exist several successful techniques supporting... 1 0 0 0 0 0
9591 Seven dimensional cohomogeneity one manifolds ... show certain family cohomogeneity one manifold... 0 0 1 0 0 0
9592 Optimal Rates of Sketched-regularized Algorith... investigate regularized algorithms combining p... 0 0 0 1 0 0
9593 The scaling properties and the multiple deriva... paper study scaling properties legendre polyno... 0 0 1 0 0 0
9594 Knockoffs for the mass: new feature importance... important problem machine learning statistics ... 0 0 0 1 0 0
9595 Phase boundaries in alternating field quantum ... report phases corresponding critical lines qua... 0 1 0 0 0 0
9596 Descent of equivalences and character bijections categorical equivalences block algebras finite... 0 0 1 0 0 0
9597 A function field analogue of the Rasmussen-Tam... arithmetic function fields drinfeld modules pl... 0 0 1 0 0 0
9598 Malware Detection Using Dynamic Birthmarks paper explore effectiveness dynamic analysis t... 1 0 0 1 0 0
9599 Semi-analytical approximations to statistical ... note concerned accurate computationally effici... 0 0 0 1 0 0
9600 Morphology of PbTe crystal surface sputtered b... investigated morphology lateral surfaces pbte ... 0 1 0 0 0 0
9601 Indefinite Integrals of Spherical Bessel Funct... highly oscillatory integrals involving bessel ... 0 0 1 0 0 0
9602 Proceedings 14th International Workshop on the... volume contains proceedings fourteenth interna... 1 0 0 0 0 0
9603 Mean Field Stochastic Games with Binary Action... paper considers mean field games multiagent ma... 0 0 1 0 0 0
9604 Heterogeneous Cellular Networks with LoS and N... develop framework downlink heterogeneous cellu... 1 0 1 0 0 0
9605 Gould's Belt: Local Large Scale Structure in t... goulds belt flat local system composed young o... 0 1 0 0 0 0
9606 Learning with Correntropy-induced Losses for R... recent years correntropy applications machine ... 0 0 0 1 0 0
9607 The Suppression and Promotion of Magnetic Flux... evidence surface magnetism observed increasing... 0 1 0 0 0 0
9608 Opportunistic Content Delivery in Fading Broad... consider content delivery fading broadcast cha... 1 0 0 0 0 0
9609 Conservation Laws With Random and Deterministi... dynamics nonlinear conservation laws long pose... 0 0 1 0 0 0
9610 Theoretical study of HfF$^+$ cation to search ... combined allelectron twostep approach applied ... 0 1 0 0 0 0
9611 Adaptive Information Gathering via Imitation L... adaptive information gathering problem policy ... 1 0 0 0 0 0
9612 Demonstration of dispersive rarefaction shocks... report experimental numerical demonstration di... 0 1 0 0 0 0
9613 Gaussian Process Regression for Arctic Coastal... arctic coastal morphology governed multiple fa... 0 1 0 1 0 0
9614 Calibration for Stratified Classification Models classification problems sampling bias training... 1 0 0 1 0 0
9615 Two classes of fast-declining type Ia supernovae fastdeclining type ia supernovae sn ia separat... 0 1 0 0 0 0
9616 What Sets the Radial Locations of Warm Debris ... architectures debris disks encode history plan... 0 1 0 0 0 0
9617 Nonlinear Modulational Instability of Dispersi... prove nonlinear modulational instability perio... 0 0 1 0 0 0
9618 Unsupervised Learning of Disentangled Represen... present new model drnet learns disentangled im... 1 0 0 1 0 0
9619 Control of Ultracold Photodissociation with Ma... photodissociation molecule produces spatial di... 0 1 0 0 0 0
9620 JointGAN: Multi-Domain Joint Distribution Lear... new generative adversarial network developed j... 0 0 0 1 0 0
9621 A lightweight MapReduce framework for secure p... mapreduce programming model used extensively p... 1 0 0 0 0 0
9622 Formation of wide-orbit gas giants near the st... investigated formation circumstellar wideorbit... 0 1 0 0 0 0
9623 Frank-Wolfe Optimization for Symmetric-NMF und... symmetric nonnegative matrix factorization fou... 1 0 1 1 0 0
9624 A Fourier Disparity Layer representation for L... paper present new light field representation e... 1 0 0 0 0 0
9625 Narrating Networks networks become de facto diagram big data age ... 1 0 0 0 0 0
9626 Policy Evaluation and Optimization with Contin... study problem policy evaluation learning batch... 0 0 0 1 0 0
9627 Geometry of Factored Nuclear Norm Regularization work investigates geometry nonconvex reformula... 1 0 1 0 0 0
9628 Effect of Scrape-Off-Layer Current on Reconstr... methods described extend fields reconstructed ... 0 1 0 0 0 0
9629 Holomorphy of Osborn loops let lcdot loop let al group automorphisms lcdo... 0 0 1 0 0 0
9630 A Multi-Objective Learning to re-Rank Approach... multiobjective recommender systems address dif... 1 0 0 0 0 0
9631 Interactive Discovery System for Direct Democracy decide madrid civic technology madrid city cou... 1 0 0 0 0 0
9632 Deep Learning to Attend to Risk in ICU modeling physiological timeseries icu high cli... 1 0 0 1 0 0
9633 Steklov problem on differential forms paper study spectral properties dirichlettoneu... 0 0 1 0 0 0
9634 Constraining a dark matter and dark energy int... work used recent cosmic chronometers data alon... 0 1 0 0 0 0
9635 Comprehensive evaluation of statistical speech... statistical tts systems directly predict speec... 1 0 0 0 0 0
9636 Component response rate variation drives stabi... stability complex system generally decreases i... 0 0 0 0 1 0
9637 Time-resolved ultrafast x-ray scattering from ... timeresolved ultrafast xray scattering photoex... 0 1 0 0 0 0
9638 Calculation of the critical overdensity in the... critical overdensity deltac key concept estima... 0 1 0 0 0 0
9639 Point distributions in compact metric spaces, II consider finite point subsets distributions co... 0 0 1 0 0 0
9640 A Variational Projection Scheme for Nonmatchin... paper concerned partitioned iterative formulat... 0 1 0 0 0 0
9641 The Hubble Catalog of Variables hubble catalog variables hcv year esa funded p... 0 1 0 0 0 0
9642 A Loop-Based Methodology for Reducing Computat... design general purpose processors relies heavi... 1 0 0 0 0 0
9643 Multi-View Surveillance Video Summarization vi... traditional video summarization methods design... 1 0 0 0 0 0
9644 A Logical Approach to Cloud Federation federated clouds raise variety challenges mana... 1 0 0 0 0 0
9645 Deep Affordance-grounded Sensorimotor Object R... wellestablished cognitive neuroscience human p... 1 0 0 0 0 0
9646 Liquid crystal induced elasto-capillary suppre... drying colloidal droplets solid rigid substrat... 0 1 0 0 0 0
9647 Autonomous Reactive Mission Scheduling and Tas... autonomous underwater vehicle auv carry comple... 1 0 0 0 0 0
9648 Stealth Attacks on the Smart Grid random attacks jointly minimize amount informa... 1 0 0 0 0 0
9649 Gradual Tuning: a better way of Fine Tuning th... paper present alternative strategy finetuning ... 1 0 0 0 0 0
9650 Bayesian power-spectrum inference with foregro... work presents joint selfconsistent bayesian tr... 0 1 0 0 0 0
9651 3-Lie bialgebras and 3-Lie classical Yang-Baxt... paper give lowdimensional examples local cocyc... 0 0 1 0 0 0
9652 Adaptive pixel-super-resolved lensfree hologra... highresolution wide fieldofview fov microscopi... 0 1 0 0 0 0
9653 Attend to You: Personalized Image Captioning w... address personalization issues image captionin... 1 0 0 0 0 0
9654 Hardness of almost embedding simplicial comple... map fcolon kto mathbb rd simplicial complex al... 1 0 1 0 0 0
9655 Asymmetry of short-term control of spatio-temp... optimization energy cost determines average va... 0 1 0 0 0 0
9656 Edge N-Level Sparse Visibility Graphs: Fast Op... anyangle pathfinding problem goal find shortes... 1 0 0 0 0 0
9657 Model-Free Renewable Scenario Generation Using... scenario generation important step operation p... 1 0 1 0 0 0
9658 Higher-genus quasimap wall-crossing via locali... give new proof ciocanfontanine kims wallcrossi... 0 0 1 0 0 0
9659 Uncertainty in Cyber Security Investments undertaking cyber security risk assessments mu... 1 0 0 0 0 0
9660 ELT Linear Algebra II paper continuation arxiv exploded layered trop... 0 0 1 0 0 0
9661 Inner-Scene Similarities as a Contextual Cue f... using image context effective approach improvi... 1 0 0 0 0 0
9662 Time-dependent spectral renormalization method spectral renormalization method introduced abl... 0 1 0 0 0 0
9663 Cloth Manipulation Using Random-Forest-Based I... present novel approach robust manipulation hig... 1 0 0 0 0 0
9664 Probabilistic Reduced-Order Modeling for Stoch... discuss bayesian formulation coarsegraining cg... 0 0 0 1 0 0
9665 A practical guide to the simultaneous determin... accurate protein structural ensembles determin... 0 0 0 0 1 0
9666 Propensity score prediction for electronic hea... optimal learner prediction modeling varies dep... 0 0 0 1 0 0
9667 Transmission spectroscopy of the hot Jupiter T... context transit events extrasolar planets offe... 0 1 0 0 0 0
9668 Multi-Objective Approaches to Markov Decision ... markov decision processes mdps popular model p... 1 0 0 0 0 0
9669 Certificates for triangular equivalence and ra... paper give novel certificates triangular equiv... 1 0 0 0 0 0
9670 TF Boosted Trees: A scalable TensorFlow based ... tf boosted trees tfbt new opensourced framewor... 1 0 0 1 0 0
9671 Circuit Treewidth, Sentential Decision, and Qu... evaluation query probabilistic database boils ... 1 0 0 0 0 0
9672 Improvements in the Small Sample Efficiency of... paper considers problem inliers empty cells re... 0 0 1 1 0 0
9673 Homogeneous Kobayashi-hyperbolic manifolds wit... determine connected homogeneous kobayashihyper... 0 0 1 0 0 0
9674 Centroidal localization game one important problem network locate invisible... 1 0 0 0 0 0
9675 Improving the Burgess bound via Polya-Vinogradov show even mild improvements polyavinogradov in... 0 0 1 0 0 0
9676 Processes accompanying stimulated recombinatio... phenomenon polarization nuclei process stimula... 0 1 0 0 0 0
9677 The Complexity of Factors of Multivariate Poly... existence string functions polynomial time com... 1 0 0 0 0 0
9678 Chatbots as Conversational Recommender Systems... paper outline vision chatbots facilitate inter... 1 0 0 0 0 0
9679 An estimate of the first non-zero eigenvalue o... define distance edges graphs study coarse ricc... 0 0 1 0 0 0
9680 A Deep Reinforcement Learning Chatbot present milabot deep reinforcement learning ch... 1 0 0 1 0 0
9681 Stochastic Optimal Power Flow Based on Data-Dr... propose datadriven method solve stochastic opt... 1 0 1 0 0 0
9682 Deep Learning for Real-Time Crime Forecasting ... realtime crime forecasting important however a... 1 0 0 1 0 0
9683 Thermal Modeling of Comet-Like Objects from AK... investigated physical properties cometlike obj... 0 1 0 0 0 0
9684 Improvement to the Prediction of Fuel Cost Dis... availability validated realistic fuel cost mod... 0 0 0 1 0 0
9685 Timed Discrete-Event Systems are Synchronous P... work show model timed discreteevent systems td... 1 0 0 0 0 0
9686 Maturation Trajectories of Cortical Resting-St... functional significance resting state networks... 0 0 0 1 1 0
9687 High-power closed-cycle $^4$He cryostat with t... report development versatile cryogenfree labor... 0 1 0 0 0 0
9688 A new proof of Kirchberg's $\mathcal O_2$-stab... present new proof kirchbergs mathcal ostable c... 0 0 1 0 0 0
9689 Scaling evidence of the homothetic nature of c... paper analyse profile land use population dens... 0 1 0 0 0 0
9690 Subconvex bounds for Hecke-Maass forms on comp... let h semisimple algebraic group k maximal com... 0 0 1 0 0 0
9691 Studying Positive Speech on Twitter present results empirical studies positive spe... 1 0 0 0 0 0
9692 Geostatistical inference in the presence of ge... almost geostatistical analysis one underlying ... 0 0 0 1 0 0
9693 Large sample analysis of the median heuristic kernel methods median heuristic widely used wa... 0 0 1 1 0 0
9694 Divergence Framework for EEG based Multiclass ... similar real world data ubiquitous presence no... 1 0 0 0 1 0
9695 Accelerated Stochastic Power Iteration principal component analysis pca one powerful ... 1 0 1 1 0 0
9696 Generalized phase mixing: Turbulence-like beha... present results threedimensional ideal magneto... 0 1 0 0 0 0
9697 Discovering Bayesian Market Views for Intellig... along advance opinion mining techniques public... 0 0 0 0 0 1
9698 Bayesian Static Parameter Estimation for Parti... article consider static bayesian parameter est... 0 0 1 1 0 0
9699 EigenNetworks many applications interdependencies among set ... 1 0 0 1 0 0
9700 Alliance formation with exclusion in the spati... detecting defection alarming partners possible... 1 1 0 0 0 0
9701 Fast and In Sync: Periodic Swarm Patterns for ... paper aims design quadrotor swarm performances... 1 0 0 0 0 0
9702 Nonparametric estimation of locally stationary... paper consider multivariate hawkes processes b... 0 0 1 1 0 0
9703 Comparison of Flow Scheduling Policies for Mix... datacenters main infrastructure top cloud comp... 1 0 0 0 0 0
9704 Getting around the Halting Problem halting theorem establishes program turing mac... 1 0 0 0 0 0
9705 Molecular Beam Epitaxy Growth of [CrGe/MnGe/Fe... skyrmions localized magnetic spin textures who... 0 1 0 0 0 0
9706 A comparative study of different exchange-corr... feval fetisn full heusler compounds nonmagneti... 0 1 0 0 0 0
9707 On a problem of Pillai with Fibonacci numbers ... paper find integers c least two representation... 0 0 1 0 0 0
9708 Evidence from web-based dietary search pattern... profound vitamin b deficiency known cause dise... 1 0 0 0 0 0
9709 Non-Uniform Attacks Against Pseudoentropy de trevisan tulsiani crypto show every distrib... 1 0 0 0 0 0
9710 The Swift/BAT AGN Spectroscopic Survey (BASS) ... study observed relation accretion rate terms l... 0 1 0 0 0 0
9711 Hashing over Predicted Future Frames for Infor... deep reinforcement learning rl tasks efficient... 1 0 0 1 0 0
9712 The infrared to X-ray correlation spectra of u... use new xray data obtained nuclear spectroscop... 0 1 0 0 0 0
9713 Quantum ensembles of quantum classifiers quantum machine learning witnesses increasing ... 0 0 1 1 0 0
9714 Recurrent Additive Networks introduce recurrent additive networks rans new... 1 0 0 0 0 0
9715 Nematic phase with colossal magnetoresistance ... origin colossal magnetoresistance cmr still co... 0 1 0 0 0 0
9716 The generalized optical memory effect optical memory effect wellknown type wave corr... 0 1 0 0 0 0
9717 Geometry of Policy Improvement investigate geometry optimal memoryless time i... 1 0 1 0 0 0
9718 Modelling and characterization of a pneumatica... emerging class microfluidic bioreactors posses... 0 1 0 0 0 0
9719 Semi-algebraic triangulation over p-adically c... prove triangulation theorem semialgebraic sets... 0 0 1 0 0 0
9720 Improving the Performance of OTDOA based Posit... paper consider positioning observedtimediffere... 1 0 0 0 0 0
9721 OGLE-2015-BLG-1459L: The Challenges of Exo-Moo... show dense ogle kmtnet iband survey data requi... 0 1 0 0 0 0
9722 Particle-flow reconstruction and global event ... cms apparatus identified years start lhc opera... 0 1 0 0 0 0
9723 Discontinuity-Sensitive Optimal Control Learni... paper proposes discontinuitysensitive approach... 1 0 0 0 0 0
9724 Ergodicity analysis and antithetic integral co... delays important phenomenon arising wide varie... 0 0 0 0 1 0
9725 The three-dimensional standard solution to the... came attention posting paper yu ding proved re... 0 0 1 0 0 0
9726 Dynamic classifier chains for multi-label lear... paper deal task building dynamic ensemble chai... 1 0 0 1 0 0
9727 Big Data Regression Using Tree Based Segmentation scaling regression large datasets common probl... 1 0 0 1 0 0
9728 Real-time Road Traffic Information Detection T... current study mechanism extract traffic relate... 1 0 0 0 0 0
9729 The stable Picard group of $\mathcal{A}(2)$ using form descent stable category mathcalamod... 0 0 1 0 0 0
9730 Understanding kernel size in blind deconvolution blind deconvolution methods usually predefine ... 1 0 0 0 0 0
9731 Sample and Computationally Efficient Learning ... provide new results noisetolerant sampleeffici... 1 0 0 1 0 0
9732 Connectivity Properties of Factorization Poset... consider three notions connectivity interactio... 0 0 1 0 0 0
9733 Boundary-sum irreducible finite order corks prove positive integer n exist boundarysum irr... 0 0 1 0 0 0
9734 Deep Learning as a Mixed Convex-Combinatorial ... neural networks grow deeper wider learning net... 1 0 0 0 0 0
9735 A Data-Driven Approach for Predicting Vegetati... paper presents novel datadriven approach predi... 0 0 0 1 0 0
9736 Structural subnetwork evolution across the lif... impact developmental aging processes brain con... 0 0 0 0 1 0
9737 No Silk Road for Online Gamers!: Using Social ... online game involves large number users interc... 1 0 0 0 0 0
9738 Parameter-dependent Stochastic Optimal Control... prove general existence result stochastic opti... 0 0 1 0 0 0
9739 VINS-Mono: A Robust and Versatile Monocular Vi... monocular visualinertial system vins consistin... 1 0 0 0 0 0
9740 Equation of State Effects on Gravitational Wav... gravitational waves gws generated axisymmetric... 0 1 0 0 0 0
9741 Quantum and thermal fluctuations in a Raman sp... theoretically study threedimensional weaklyint... 0 1 0 0 0 0
9742 San Pedro Meeting on Wide Field Variability Su... written version closing talk nd los alamos ste... 0 1 0 0 0 0
9743 Weighted Community Detection and Data Clusteri... grouping objects clusters based similarities w... 1 0 0 1 0 0
9744 Edge Control of Graphene Domains Grown on Hexa... edge structure graphene significant influence ... 0 1 0 0 0 0
9745 On MASAs in $q$-deformed von Neumann algebras study certain qdeformed analogues maximal abel... 0 0 1 0 0 0
9746 A note on computing range space bases of ratio... discuss computational procedures based descrip... 1 0 0 0 0 0
9747 Directed-Loop Quantum Monte Carlo Method for R... directedloop quantum monte carlo method genera... 0 1 0 0 0 0
9748 Towards CNN map representation and compression... paper presents study use convolutional neural ... 1 0 0 0 0 0
9749 Connecting Weighted Automata and Recurrent Neu... paper unravel fundamental connection weighted ... 0 0 0 1 0 0
9750 Evaluating Predictive Models of Student Succes... model evaluation process making inferences per... 0 0 0 1 0 0
9751 A vertex and edge deletion game on graphs starting graph two players take turns either d... 1 0 0 0 0 0
9752 Determinants of cyclization-decyclization kine... cyclization dna sticky ends commonly used cons... 0 0 0 0 1 0
9753 Remark on a theorem of H. Hauser on textile maps give counter example new theorem appeared surv... 0 0 1 0 0 0
9754 Faster and Simpler Distributed Algorithms for ... paper present distributed testing algorithms g... 1 0 0 0 0 0
9755 Reflexive Regular Equivalence for Bipartite Data bipartite data common data engineering brings ... 1 0 0 1 0 0
9756 Structural and magnetic properties of core-she... present systematic study coreshell aufeo nanop... 0 1 0 0 0 0
9757 Boron-doped diamond borondoped diamond undergoes insulatormetal tr... 0 1 0 0 0 0
9758 The kinematics of the white dwarf population f... use sloan digital sky survey data release larg... 0 1 0 0 0 0
9759 Geometric tracking control of thrust vectoring... paper geometric approach trajectory tracking c... 1 0 1 0 0 0
9760 Two scenarios of advective washing-out of loca... effect spatial localization states distributed... 0 1 0 0 0 0
9761 Neural Models for Key Phrase Detection and Que... propose twostage neural model tackle question ... 1 0 0 0 0 0
9762 Radio Tomography for Roadside Surveillance radio tomographic imaging rti recently propose... 1 0 0 0 0 0
9763 But How Does It Work in Theory? Linear SVM wit... prove low noise assumptions support vector mac... 0 0 0 1 0 0
9764 Adaptive Bayesian nonparametric regression usi... propose kernel mixture polynomials prior bayes... 0 0 1 1 0 0
9765 Follow Me at the Edge: Mobility-Aware Dynamic ... mobile edge computing new computing paradigm p... 1 0 0 0 0 0
9766 Assessing student's achievement gap between et... achievement gaps refer difference performance ... 0 0 0 1 0 0
9767 SONS: The JCMT legacy survey of debris discs i... debris discs evidence ongoing destructive coll... 0 1 0 0 0 0
9768 Visual Search at eBay paper propose novel endtoend approach scalable... 1 0 0 0 0 0
9769 Isomorphism and classification for countable s... introduce topology space isomorphism types rep... 0 0 1 0 0 0
9770 Complex Networks Unveiling Spatial Patterns in... numerical experimental turbulence simulations ... 0 1 0 0 0 0
9771 Convexity in scientific collaboration networks convexity network graph recently defined prope... 1 0 0 0 0 0
9772 Contact Localization through Spatially Overlap... achieving high spatial resolution contact sens... 1 0 0 0 0 0
9773 On the Parallel Parameterized Complexity of th... paper study parallel space complexity graph is... 1 0 0 0 0 0
9774 Direct measurement of superdiffusive and subdi... study energy transport properties heterogeneou... 0 1 0 0 0 0
9775 Reading the Sky and The Spiral of Teaching and... theoretical paper introduces new way view char... 0 1 0 0 0 0
9776 Emergence of grid-like representations by trai... decades research neural code underlying spatia... 0 0 0 1 1 0
9777 Random walks on the discrete affine group introduce discrete affine group regular tree f... 0 0 1 0 0 0
9778 Spectroscopic evidence of odd frequency superc... spin filter superconducting sin tunnel junctio... 0 1 0 0 0 0
9779 Double spend races correct double spend race analysis given nakam... 1 0 1 0 0 0
9780 An Asymptotic Analysis of Queues with Delayed ... understanding delayed information impacts queu... 0 0 1 0 0 0
9781 Effect of mixed pinning landscapes produced by... report influence crystalline defects introduce... 0 1 0 0 0 0
9782 Merge or Not? Learning to Group Faces via Imit... given large number unlabeled face images face ... 1 0 0 0 0 0
9783 Entropic Causality and Greedy Minimum Entropy ... study problem identifying causal relationship ... 1 0 0 1 0 0
9784 When few survive to tell the tale: thymus and ... unlike organs thymus gonads generate nonunifor... 0 0 0 0 1 0
9785 SfMLearner++: Learning Monocular Depth & Ego-M... geometric approaches monocular visual odometry... 1 0 0 0 0 0
9786 Approximate Bayesian inference as a gauge theory published paper sengupta proposed brain selfor... 1 0 0 0 0 0
9787 DROPWAT: an Invisible Network Flow Watermark f... watermarking techniques proposed last years ap... 1 0 0 0 0 0
9788 Outage Analysis of Offloading in Heterogeneous... small cells deployment one significant longter... 1 0 0 0 0 0
9789 StackGAN++: Realistic Image Synthesis with Sta... although generative adversarial networks gans ... 1 0 0 1 0 0
9790 Towards Secure and Safe Appified Automated Veh... advancement autonomous vehicles avs created en... 1 0 0 0 0 0
9791 Equidimensional adic eigenvarieties for groups... extend urbans construction eigenvarieties redu... 0 0 1 0 0 0
9792 Latent Association Mining in Binary Data consider problem identifying groups mutually a... 0 0 0 1 0 0
9793 The Supernova -- Supernova Remnant Connection many aspects progenitor systems environments e... 0 1 0 0 0 0
9794 DSVO: Direct Stereo Visual Odometry paper proposes novel approach stereo visual od... 1 0 0 0 0 0
9795 Urban Analytics: Multiplexed and Dynamic Commu... past decade cities experienced rapid growth ex... 1 1 0 0 0 0
9796 A quantum phase transition induced by a micros... quantum phase transitions sudden changes groun... 0 1 0 0 0 0
9797 Asymptotic Goodness-of-Fit Tests for Point Pro... study sequences scaled edgecorrected empirical... 0 0 1 1 0 0
9798 Effects of Arrival Type and Degree of Saturati... purpose study evaluation relationship differen... 0 0 0 1 0 0
9799 Sourcerer's Apprentice and the study of code s... worldwide web webpages connected source code s... 1 0 0 0 0 0
9800 "I can assure you [$\ldots$] that it's going t... technology become advanced design use otherwis... 1 0 0 1 0 0
9801 Study of Electro-Caloric Effect in Ca and Sn c... present work deals study structural ferroelect... 0 1 0 0 0 0
9802 Motivic Measures through Waldhausen K-Theories paper introduce notion cdpfunctor waldhausen c... 0 0 1 0 0 0
9803 A Brief Introduction to Machine Learning for E... monograph aims providing introduction key conc... 1 0 0 1 0 0
9804 The Development of Microfluidic Systems within... jed harrison full professor department chemist... 0 0 0 0 1 0
9805 Landau phonon-roton theory revisited for super... liquid helium spin coldatom fermi gases exhibi... 0 1 0 0 0 0
9806 Counting points on hyperelliptic curves with e... present probabilistic las vegas algorithm comp... 1 0 0 0 0 0
9807 Minimal surfaces and Schwarz lemma prove sharp schwarz type inequality weierstras... 0 0 1 0 0 0
9808 Estimating activity cycles with probabilistic ... period estimation one central topics astronomi... 0 1 0 1 0 0
9809 Mean Actor Critic propose new algorithm mean actorcritic mac dis... 1 0 0 1 0 0
9810 HAWC Observations Strongly Favor Pulsar Interp... recent measurements geminga b pulsars gammaray... 0 1 0 0 0 0
9811 Borrowing Treasures from the Wealthy: Deep Tra... deep neural networks require large amount labe... 1 0 0 1 0 0
9812 The Convex Feasible Set Algorithm for Real Tim... development robotics growing needs real time m... 1 0 0 0 0 0
9813 Continuous-Time Visual-Inertial Odometry for E... event cameras bioinspired vision sensors outpu... 1 0 0 0 0 0
9814 Reconstructing a $f(R)$ theory from the $α$-At... show analogy high curvature fr r arn br theory... 0 1 0 0 0 0
9815 Systems of ergodic BSDE arising in regime swit... introduce solve new type quadratic backward st... 0 0 0 0 0 1
9816 Extraction and Classification of Diving Clips ... due recent advances technology recording analy... 1 0 0 0 0 0
9817 The inertial Jacquet-Langlands correspondence give parametrization simple bernstein componen... 0 0 1 0 0 0
9818 Universal geometric constraints during epithel... injury heals embryo develops carcinoma spreads... 0 1 0 0 0 0
9819 Semi-independent resampling for particle filte... among sequential monte carlo smc methodssampli... 0 0 0 1 0 0
9820 Free Information Flow Benefits Truth Seeking approach truth society may depend various fact... 1 1 1 0 0 0
9821 Towards a Holistic Approach to Designing Theor... increasing evidence shown theorybased health b... 1 0 0 0 0 0
9822 Connections between transport of intensity equ... recent publication appl opt method twodimensio... 0 1 0 0 0 0
9823 On approximations of Value at Risk and Expecte... derive new approximations value risk expected ... 0 0 0 0 0 1
9824 DeepDiff: Deep-learning for predicting Differe... computational methods predict differential gen... 0 0 0 1 0 0
9825 t-SNE-CUDA: GPU-Accelerated t-SNE and its Appl... modern datasets models notoriously difficult e... 1 0 0 1 0 0
9826 Coma Cluster Ultra-Diffuse Galaxies Are Not St... matching members coma cluster catalogue ultrad... 0 1 0 0 0 0
9827 LD-SDS: Towards an Expressive Spoken Dialogue ... work discuss related challenges describe appro... 1 0 0 0 0 0
9828 On a spiked model for large volatility matrix ... recently inference highdimensional integrated ... 0 0 0 1 0 0
9829 Graph-based Features for Automatic Online Abus... online communities become increasingly importa... 1 0 0 0 0 0
9830 All Classical Adversary Methods are Equivalent... show known classical adversary lower bounds ra... 1 0 0 0 0 0
9831 A new approach for short-spacing correction of... shortspacing problem describes inherent inabil... 0 1 0 0 0 0
9832 Data and uncertainty in extreme risks - a nonl... estimation tail quantities expected shortfall ... 0 0 1 1 0 0
9833 Flow equations for cold Bose gases derive flow equations cold atomic gases one ma... 0 1 0 0 0 0
9834 Fluid flows shaping organism morphology dynamic selforganized morphology hallmark netw... 0 0 0 0 1 0
9835 Frames of exponentials and sub-multitiles in L... note investigate existence frames exponentials... 0 0 1 0 0 0
9836 Exponential Random Graph Models with Big Netwo... growth interest network data across fields exp... 0 0 0 1 0 0
9837 Critical behavior of a stochastic anisotropic ... paper present study critical behavior stochast... 0 1 0 0 0 0
9838 Probability, Statistics and Planet Earth, I: G... study covariances positive definite functions ... 0 1 0 1 0 0
9839 Gang-GC: Locality-aware Parallel Data Placemen... many cloud applications rely fast nonrelationa... 1 0 0 0 0 0
9840 Good cyclic codes and the uncertainty principle long standing problem area error correcting co... 1 0 1 0 0 0
9841 An Amateur Drone Surveillance System Based on ... drones also known miniunmanned aerial vehicles... 1 0 0 0 0 0
9842 Two-species boson mixture on a ring: A group t... investigate weak excitations system made two c... 0 1 0 0 0 0
9843 On a simple model of X_0(N) find plane models xn ngeq observe map modular ... 0 0 1 0 0 0
9844 A Supervised STDP-based Training Algorithm for... neural networks shown great potential many app... 1 0 0 1 0 0
9845 Optimal Topology Design for Disturbance Minimi... transient response power grids external distur... 1 0 1 0 0 0
9846 Asymptotic behaviour of the Christoffel functi... present family mutually orthogonal polynomials... 0 0 1 0 0 0
9847 Tangent: Automatic Differentiation Using Sourc... automatic differentiation ad essential primiti... 1 0 0 1 0 0
9848 Ca II K 1-A Emission Index Composites describe procedure combine measurements nm ca ... 0 1 0 0 0 0
9849 Application of the Bead Perturbation Technique... microwave cavities sikivietype axion search su... 0 1 0 0 0 0
9850 Homogeneous Kobayashi-hyperbolic manifolds wit... determine connected homogeneous kobayashihyper... 0 0 1 0 0 0
9851 New estimates for some functions defined over ... paper first establish new explicit estimates c... 0 0 1 0 0 0
9852 Transferrable End-to-End Learning for Protein ... explosion number experimentally determined ato... 0 0 0 1 1 0
9853 A new astrophysical solution to the Too Big To... test whether advanced galaxy models analysis t... 0 1 0 0 0 0
9854 Friction Variability in Planar Pushing Data: A... friction plays key role manipulating objects h... 1 0 0 0 0 0
9855 Automatically Annotated Turkish Corpus for Nam... turkish wikipedia namedentity recognition text... 1 0 0 0 0 0
9856 Strong Completeness and the Finite Model Prope... biintuitionistic stable tense logics bist logi... 1 0 1 0 0 0
9857 Using lab notebooks to examine students' engag... demonstrate students use modeling examined ass... 0 1 0 0 0 0
9858 An accurate finite element method for the nume... despite numerical challenges finite element me... 1 1 0 0 0 0
9859 Re-evaluating Evaluation progress machine learning measured careful eva... 0 0 0 1 0 0
9860 Ranking and Selection as Stochastic Control bayesian framework formulate fully sequential ... 1 0 0 1 0 0
9861 An application of $Γ$-semigroups techniques to... concept gammasemigroup introduced mridul kanti... 0 0 1 0 0 0
9862 Reflection from a multi-species material and i... formally deduce closedform expressions transmi... 0 1 0 0 0 0
9863 Colouring perfect graphs with bounded clique n... graph perfect chromatic number every induced s... 1 0 0 0 0 0
9864 Resilient Learning-Based Control for Synchroni... paper show synchronization group output passiv... 1 0 0 1 0 0
9865 EMG-Controlled Hand Teleoperation Using a Cont... present method emgdriven teleoperation nonanth... 1 0 0 0 0 0
9866 Numerical solutions of Hamiltonian PDEs: a mul... introduce novel numerical method integrate par... 0 1 1 0 0 0
9867 Magnetite nano-islands on silicon-carbide with... xray magnetic circular dichroism xmcd measurem... 0 1 0 0 0 0
9868 Activation Ensembles for Deep Neural Networks many activation functions proposed past select... 0 0 0 1 0 0
9869 Formation of coalition structures as a non-coo... traditionally social sciences interested struc... 1 0 1 0 0 0
9870 Smooth and Sparse Optimal Transport entropic regularization quickly emerging new s... 1 0 0 1 0 0
9871 The stability and energy exchange mechanism of... eigenvalue hermitic hamiltonian real undoubted... 0 1 0 0 0 0
9872 A bound on partitioning clusters let x finite collection sets clusters consider... 0 0 1 0 0 0
9873 X-ray emission from thin plasmas. Collisional ... every observation astrophysical objects involv... 0 1 0 0 0 0
9874 Support Spinor Machine generalize support vector machine support spin... 1 0 0 1 0 0
9875 Various generalizations and deformations of $P... recall group pslmathbb r isomorphic pspmathbb ... 0 0 1 0 0 0
9876 Redundancy schemes for engineering coherent sy... paper proposes signaturebased approach solving... 0 0 0 1 0 0
9877 Anisotropy effects on Baryogenesis in $f(R)$-T... study fr theory gravity anisotropic metric eff... 0 1 0 0 0 0
9878 Robust and Real-time Deep Tracking Via Multi-S... visual tracking fundamental problem computer v... 1 0 0 0 0 0
9879 Simply Exponential Approximation of the Perman... design deterministic polynomial time cn approx... 1 0 0 0 0 0
9880 Stochastic Variance Reduction for Policy Gradi... recent advances policy gradient methods deep l... 1 0 0 1 0 0
9881 Weighted Low-Rank Approximation of Matrices an... primarily study special weighted lowrank appro... 1 0 0 0 0 0
9882 Master equation for She-Leveque scaling and it... derive markov process equivalent sheleveque sc... 0 1 0 0 0 0
9883 Scaling Universality at the Dynamic Vortex Mot... dynamic mott insulatortometal transition dmt k... 0 1 0 0 0 0
9884 Assessment Formats and Student Learning Perfor... although compelling assessments examined recen... 1 0 0 1 0 0
9885 Sharing deep generative representation for per... decoding human brain activities via functional... 1 0 0 0 0 0
9886 Two types of criticality in the brain neural networks equal excitatory inhibitory fe... 0 1 0 0 0 0
9887 Topological networks for quantum communication... efficient communication qubits relies robust n... 0 1 0 0 0 0
9888 How Criticality of Gene Regulatory Networks Af... whereas relationship criticality gene regulato... 0 0 0 0 1 0
9889 Task-Driven Convolutional Recurrent Models of ... feedforward convolutional neural networks cnns... 0 0 0 0 1 0
9890 Self-organization principles of intracellular ... dynamic patterning specific proteins essential... 0 0 0 0 1 0
9891 Randomized Near Neighbor Graphs, Giant Compone... pick n random points uniformly connect point k... 1 0 0 1 0 0
9892 Theory of mechano-chemical patterning in bipha... formation selforganized patterns key morphogen... 0 0 0 0 1 0
9893 Diffusion time dependence of microstructural p... biophysical modelling diffusion mri necessary ... 0 1 0 0 0 0
9894 Optimizing Epistemic Model Checking Using Cond... paper shows conditional independence reasoning... 1 0 0 0 0 0
9895 Quickest Localization of Anomalies in Power Gr... agile localization anomalous events plays pivo... 1 0 0 1 0 0
9896 The trouble with tensor ring decompositions tensor train decomposition decomposes tensor t... 1 0 0 0 0 0
9897 Direct Measurement of Kramers Turnover with a ... understanding thermally activated escape metas... 0 1 0 0 0 0
9898 An estimator for the tail-index of graphex pro... sparse exchangeable graphs resolve pathologies... 0 0 1 1 0 0
9899 General tête-à-tête graphs and Seifert manifolds ttette graphs relative ttette graphs introduce... 0 0 1 0 0 0
9900 Isometric copies of $l^\infty$ in Cesàro-Orlic... characterize cesroorlicz function spaces cesva... 0 0 1 0 0 0
9901 Modeling non-stationary extreme dependence wit... modeling joint distribution extreme weather ev... 0 0 0 1 0 0
9902 MOEMS deformable mirror testing in cryo for fu... moems deformable mirrors dm key components nex... 0 1 0 0 0 0
9903 Remote Sensing Image Scene Classification: Ben... remote sensing image scene classification play... 1 0 0 0 0 0
9904 The Network of U.S. Mutual Fund Investments: D... network theory proved recently useful quantifi... 0 0 0 1 0 1
9905 Removal of Salt and Pepper noise from Gray-Sca... efficient adaptive algorithm removal salt pepp... 1 0 0 0 0 0
9906 On the distance and algorithms of strong produ... strong product efficient way construct larger ... 1 0 0 0 0 0
9907 Global weak solution to the viscous two-fluid ... paper prove existence global weak solutions co... 0 0 1 0 0 0
9908 Privacy Preserving and Collusion Resistant Ene... energy increasingly generated collected differ... 1 0 0 0 0 0
9909 Word Embeddings Quantify 100 Years of Gender a... word embeddings use vectors represent words ge... 1 0 0 0 0 0
9910 Infinite Mixture of Inverted Dirichlet Distrib... work develop novel bayesian estimation method ... 0 0 0 1 0 0
9911 $Ψ$ec: A Local Spectral Exterior Calculus introduce psiec local spectral exterior calcul... 1 0 0 0 0 0
9912 Ultraslow fluctuations in the pseudogap states... report transverse relaxation rates ts cu nucle... 0 1 0 0 0 0
9913 Multi-Scale Wavelet Domain Residual Learning f... limitedangle computed tomography ct often used... 1 0 0 0 0 0
9914 Helium-like atoms. The Green's function approa... renewed greens function approach calculating a... 0 1 0 0 0 0
9915 Butterfly Effect: Bidirectional Control of Cla... paper proposes new algorithm controlling class... 1 0 0 1 0 0
9916 Secrecy Outage Analysis for Downlink Transmiss... analyze secrecy outage probability downlink wi... 1 0 1 0 0 0
9917 Defining Equitable Geographic Districts in Roa... introduce novel method defining geographic dis... 1 0 0 0 0 0
9918 End-to-end Lung Nodule Detection in Computed T... computer aided diagnostic cad system crucial m... 1 0 0 1 0 0
9919 Fairness with Dynamics recently shown feedback effects decisions igno... 1 0 0 1 0 0
9920 Exploring extra dimensions through inflationar... predictions inflationary schemes influenced pr... 0 1 0 0 0 0
9921 Elements of $C^*$-algebras Attaining Their Nor... characterize class rfd calgebras containing de... 0 0 1 0 0 0
9922 A probability inequality for sums of independe... let mathbfb cdot real separable banach space l... 0 0 1 0 0 0
9923 Including Uncertainty when Learning from Human... difficult humans efficiently teach robots corr... 1 0 0 0 0 0
9924 Gated-Attention Architectures for Task-Oriente... perform tasks specified natural language instr... 1 0 0 0 0 0
9925 Automatic classification of trees using a UAV ... automatic classification trees using remotely ... 0 0 0 1 0 0
9926 Assortative Mixing Equilibria in Social Networ... known individuals social networks tend exhibit... 1 1 0 0 0 0
9927 Texture segmentation with Fully Convolutional ... last decade deep learning contributed advances... 1 0 0 0 0 0
9928 The Beam and detector of the NA62 experiment a... na fixedtarget experiment cern sps dedicated m... 0 1 0 0 0 0
9929 A dequantized metaplectic knot invariant let ksubset knot x ssetminus k complement math... 0 0 1 0 0 0
9930 Persian Wordnet Construction using Supervised ... paper presents automated supervised method per... 1 0 0 1 0 0
9931 Anyon condensation and its applications bose condensation central understanding quantu... 0 1 0 0 0 0
9932 Group-velocity-locked vector soliton molecules... physics phenomena multisoliton complexes enric... 0 1 0 0 0 0
9933 Survey of Visual Question Answering: Datasets ... visual question answering vqa new exciting pro... 1 0 0 0 0 0
9934 Towards a Principled Integration of Multi-Came... rise endtoend learning deep learning person de... 1 0 0 0 0 0
9935 Beyond Volume: The Impact of Complex Healthcar... medical charts national census healthcare trad... 1 0 0 1 0 0
9936 Redundant Perception and State Estimation for ... autonomous racing vehicles operate close limit... 1 0 0 0 0 0
9937 Experimental study of extrinsic spin Hall effe... experimentally studied effects spin hall angle... 0 1 0 0 0 0
9938 NeST: A Neural Network Synthesis Tool Based on... deep neural networks dnns begun pervasive impa... 1 0 0 0 0 0
9939 Resonant Drag Instabilities in protoplanetary ... identify study number new rapidly growing inst... 0 1 0 0 0 0
9940 Nonparametric Neural Networks automatically determining optimal size neural ... 1 0 0 0 0 0
9941 FastTrack: Minimizing Stalls for CDN-based Ove... traffic internet video streaming rapidly incre... 1 0 0 0 0 0
9942 Powerful statistical inference for nested data... hierarchicallyorganized data arise naturally m... 0 0 1 1 0 0
9943 Beam-On-Graph: Simultaneous Channel Estimation... paper concerned channel estimation problem mul... 1 0 1 0 0 0
9944 On Comparison Of Experts policy maker faces sequence unknown outcomes s... 1 0 1 0 0 0
9945 Multiscale simulation on shearing transitions ... shearing transitions multilayer molecularly th... 0 1 0 0 0 0
9946 Chirality-induced Antisymmetry in Magnetic Dom... chiral magnetic materials numerous intriguing ... 0 1 0 0 0 0
9947 Strong interaction between graphene layer and ... graphene emerged promising building block mode... 0 1 0 0 0 0
9948 DELTA: DEep Learning Transfer using Feature Ma... transfer learning finetuning pretrained neural... 1 0 0 1 0 0
9949 The Burst Failure Influence on the $H_\infty$ ... work present analysis burst failure effect hin... 1 0 0 0 0 0
9950 Cosmological Simulations in Exascale Era architecture exascale computing facilities inv... 1 1 0 0 0 0
9951 Time evolution of the Luttinger model with non... study time evolution onedimensional interactin... 0 1 1 0 0 0
9952 Mastering Chess and Shogi by Self-Play with a ... game chess widelystudied domain history artifi... 1 0 0 0 0 0
9953 Some remarks on Huisken's monotonicity formula... discuss monotone quantity related huiskens mon... 0 0 1 0 0 0
9954 Inverse Moment Methods for Sufficient Forecast... consider forecasting single time series using ... 0 0 1 1 0 0
9955 Spectral energy distribution and radio halo of... present new radio continuum observations ngc m... 0 1 0 0 0 0
9956 Emergent Phases of Fractonic Matter fractons emergent particles immobile isolation... 0 1 0 0 0 0
9957 Fractional Volterra Hierarchy generating function cubic hodge integrals sati... 0 1 1 0 0 0
9958 Deorbitalization strategies for meta-GGA excha... explore simplification widely used metageneral... 0 1 0 0 0 0
9959 Fast counting of medium-sized rooted subgraphs prove counting copies graph f another graph g ... 1 0 1 0 0 0
9960 First-principles investigation of graphitic ca... densityfunctional theory calculations spinpola... 0 1 0 0 0 0
9961 Courant's Nodal Domain Theorem for Positivity ... introduce notion nodal domains positivity pres... 0 0 1 0 0 0
9962 Intelligent Notification Systems: A Survey of ... notifications provide unique mechanism increas... 1 0 0 0 0 0
9963 Using Matching to Detect Infeasibility of Some... novel matching based heuristic algorithm desig... 1 0 0 0 0 0
9964 α7 nicotinic acetylcholine receptor signaling ... neuroinflammation utero may result lifelong ne... 0 0 0 0 1 0
9965 Face centered cubic and hexagonal close packed... skyrmions disklike objects typically form tria... 0 1 0 0 0 0
9966 Fast, Accurate and Lightweight Super-Resolutio... deep convolution neural networks demonstrate i... 1 0 0 0 0 0
9967 Robbins-Monro conditions for persistent explor... formulate simple assumptions implying robbinsm... 0 0 0 1 0 0
9968 Localization in the Disordered Holstein model holstein model describes motion tightbinding t... 0 1 1 0 0 0
9969 Universal Planning Networks key challenge complex visuomotor control learn... 1 0 0 1 0 0
9970 Adversarial Removal of Demographic Attributes ... recent advances representation learning advers... 0 0 0 1 0 0
9971 Superradiance phase transition in the presence... theoretically analyze effect parameter fluctua... 0 1 0 0 0 0
9972 A Decision Support Method for Recommending Deg... exploratory testing neither black white rather... 1 0 0 0 0 0
9973 Quantum Field Theory and Coalgebraic Logic in ... paper suggest framework category theory possib... 1 0 1 0 0 0
9974 Spatiotemporal Prediction of Ambulance Demand ... accurately predicting ambulance callouts occur... 0 0 0 1 0 0
9975 ArchiveWeb: collaboratively extending and expl... curated web archive collections contain focuse... 1 0 0 0 0 0
9976 gl2vec: Learning Feature Representation Using ... learning network representations variety appli... 1 0 0 0 0 0
9977 Evidence of s-wave superconductivity in the no... superconductivity noncentrosymmetric compounds... 0 1 0 0 0 0
9978 Essential Dimension of Generic Symbols in Char... article pessential dimension generic symbols f... 0 0 1 0 0 0
9979 Ask less - Scale Market Research without Annoy... market research generally performed surveying ... 1 0 0 1 0 0
9980 Adaptive Regularized Newton Method for Riemann... optimization riemannian manifolds widely arise... 0 0 1 0 0 0
9981 MPC meets SNA: A Privacy Preserving Analysis o... paper formalize notion distributed sensitive s... 1 0 0 0 0 0
9982 Lossy Image Compression with Compressive Autoe... propose new approach problem optimizing autoen... 1 0 0 1 0 0
9983 A cost effective and reliable environment moni... present slow control system gather relevant en... 1 0 0 0 0 0
9984 Quenching the Kitaev honeycomb model studied nonequilibrium response initial nel st... 0 1 0 0 0 0
9985 Privacy-Preserving Adversarial Networks propose datadriven framework optimizing privac... 1 0 0 1 0 0
9986 Antiferromagnetic structure and electronic pro... chromium arsenides bacras bacrfeas thcrsi type... 0 1 0 0 0 0
9987 Molecular Modeling of the Microstructure Evolu... development high strength carbon fibers cfs re... 0 1 0 0 0 0
9988 Hyperinflation model cosmological inflation proposed field sp... 0 1 0 0 0 0
9989 Improving on Q & A Recurrent Neural Networks U... often time spent finding model works well rath... 0 0 0 1 0 0
9990 Injectivity and weak*-to-weak continuity suffi... show convergence rate ellregularization linear... 0 0 1 0 0 0
9991 A Panel Prototype for the Mu2e Straw Tube Trac... mue experiment search coherent neutrinoless co... 0 1 0 0 0 0
9992 A Review on Internet of Things (IoT), Internet... current prominence future promises internet th... 1 0 0 0 0 0
9993 Ensemble Adversarial Training: Attacks and Def... adversarial examples perturbed inputs designed... 1 0 0 1 0 0
9994 X-Ray bright optically faint active galactic n... construct sample xray bright optically faint a... 0 1 0 0 0 0
9995 The Goldman symplectic form on the PSL(V)-Hitc... article second pair articles goldman symplecti... 0 0 1 0 0 0
9996 Early Results from TUS, the First Orbital Dete... tus worlds first orbital detector extreme ener... 0 1 0 0 0 0
9997 Network-based methods for outcome prediction i... thesis present novel semisupervised networkbas... 1 0 0 1 0 0
9998 The geometrical origins of some distributions ... derive naturally important distributions high ... 0 0 1 1 0 0
9999 The Signs in Elliptic Nets give generalization theorem silverman stephens... 0 0 1 0 0 0
10000 Codes for Simultaneous Transmission of Quantum... consider characterization well construction qu... 1 0 0 0 0 0
10001 Kinetically constrained lattice gases: tagged ... kinetically constrained lattice gases kclg int... 0 1 1 0 0 0
10002 An Atomistic Fingerprint Algorithm for Learnin... molecular fingerprints ie feature vectors desc... 1 1 0 0 0 0
10003 Generalized 4 $\times$ 4 Matrix Formalism for ... present generalized times matrix formalism des... 0 1 0 0 0 0
10004 Localization of hidden Chua attractors by the ... paper chua circuit five linear elements satura... 0 1 0 0 0 0
10005 A New Unbiased and Efficient Class of LSH-Base... loglinear models arguably successful class gra... 1 0 0 1 0 0
10006 Effects of interaction strength, doping, and f... recent quantumgas microscopy ultracold atoms s... 0 1 0 0 0 0
10007 A Coupled Lattice Boltzmann Method and Discret... discrete particle simulations widely used stud... 1 1 0 0 0 0
10008 The MERger-event Gamma-Ray (MERGR) Telescope describe mergerevent gammaray mergr telescope ... 0 1 0 0 0 0
10009 Graham-Witten's conformal invariant for closed... proved graham witten conformal invariants subm... 0 0 1 0 0 0
10010 Computationally Inferred Genealogical Networks... genealogical networks also known family trees ... 1 0 0 0 1 0
10011 Nonlinear stability for the Maxwell--Born--Inf... paper prove small data global existence soluti... 0 0 1 0 0 0
10012 Numerical simulation of BOD5 dynamics in Igapó... concentration biochemical oxygen demand bod st... 0 0 0 0 1 0
10013 Sensitivity Analysis for matched pair analysis... matched observational studies treatment assign... 0 0 0 1 0 0
10014 Closed Sets and Operators thereon: Representat... tte approach computable analysis study socalle... 1 0 1 0 0 0
10015 Propensity score estimation using classificati... data mining machine learning techniques classi... 0 0 0 1 0 0
10016 Deciding some Maltsev conditions in finite ide... paper investigate computational complexity dec... 1 0 1 0 0 0
10017 MF traces and the Cuntz semigroup trace tau separable calgebra called matricial ... 0 0 1 0 0 0
10018 Matrix product states for topological phases w... fock representation propose framework construc... 0 1 0 0 0 0
10019 F-TRIDYN: A Binary Collision Approximation Cod... fractal tridyn ftridyn modified version widely... 0 1 0 0 0 0
10020 Measurement of Radon Concentration in Super-Ka... precisely measure radon concentrations purifie... 0 1 0 0 0 0
10021 On The Robustness of a Neural Network development neural networks based machine lear... 1 0 0 1 0 0
10022 The Cut Elimination and the Nonlengthening Pro... show leibnitzs indiscernibility principle gent... 1 0 1 0 0 0
10023 On the Whittaker Plancherel Theorem for Real R... main purpose article fix several aspects aspec... 0 0 1 0 0 0
10024 Poisson distribution for gaps between sums of ... investigate level spacing distribution quantum... 0 1 1 0 0 0
10025 Maria Krawczyk: friend and physicist note remember friend maria krawczyk passed awa... 0 1 0 0 0 0
10026 Neural Networks Regularization Through Class-w... training deep neural networks known require la... 1 0 0 1 0 0
10027 Incorporating Global Visual Features into Atte... introduce multimodal attentionbased neural mac... 1 0 0 0 0 0
10028 Complete Subgraphs of the Coprime Hypergraph o... coprime hypergraph integers n vertices chikn d... 0 0 1 0 0 0
10029 Involvement of Surfactant Protein D in Ebola V... since largest ebola virus disease outbreak wes... 0 0 0 0 1 0
10030 Deep Approximately Orthogonal Nonnegative Matr... nonnegative matrix factorization nmf widely us... 1 0 0 0 0 0
10031 Separation-Free Super-Resolution from Compress... consider problem recovering superposition r di... 1 0 0 0 0 0
10032 A note on MCMC for nested multilevel regressio... quest scalable bayesian computational algorith... 0 0 0 1 0 0
10033 InGaN Metal-IN Solar Cell: optimized efficienc... choosing indium gallium nitride ingan ternary ... 0 1 0 0 0 0
10034 Proceedings of the IJCAI 2017 Workshop on Lear... wide application machine learning algorithms r... 1 0 0 0 0 0
10035 Nonlinear dynamics on branched structures and ... nonlinear dynamics graphs rapidly become topic... 0 0 1 0 0 0
10036 Rank modulation codes for DNA storage synthesis dna molecules offers unprecedented a... 1 0 0 0 0 0
10037 Effect of ion motion on relativistic electron ... excitation relativistic electron beam driven w... 0 1 0 0 0 0
10038 Memory-efficient Kernel PCA via Partial Matrix... kernel pca widely used nonlinear dimension red... 1 0 0 1 0 0
10039 Scalable Graph Learning for Anti-Money Launder... organized crime inflicts human suffering genoc... 1 0 0 0 0 0
10040 Complete event-by-event $α$/$γ(β)$ separation ... present work describe results obtained large a... 0 1 0 0 0 0
10041 A Novel Bayesian Multiple Testing Approach to ... micrornas mirnas small noncoding rnas function... 0 0 0 1 0 0
10042 PCN: Point Completion Network shape completion problem estimating complete g... 1 0 0 0 0 0
10043 Deep Relaxation: partial differential equation... paper establish connection nonconvex optimizat... 1 0 1 0 0 0
10044 Forbidden Substrings In Circular K-Successions note define circular ksuccessions permutations... 0 0 1 0 0 0
10045 Asymptotic genealogies of interacting particle... study weighted particle systems new generation... 0 0 0 1 1 0
10046 Symmetry Enforced Stability of Interacting Wey... nodal effectively relativistic dispersion feat... 0 1 0 0 0 0
10047 Luck is Hard to Beat: The Difficulty of Sports... predicting outcome sports events hard task qua... 1 0 0 1 0 0
10048 Multiscale sequence modeling with a learned di... propose generalization neural network sequence... 1 0 0 1 0 0
10049 Infinite Matrix Product States vs Infinite Pro... spite intrinsic onedimensional nature matrix p... 0 1 0 0 0 0
10050 Dialectometric analysis of language variation ... last years microblogging platforms twitter giv... 1 1 0 0 0 0
10051 Single-Pass, Adaptive Natural Language Filteri... large amounts insight social discovery potenti... 1 0 0 0 0 0
10052 How Do Elements Really Factor in $\mathbb{Z}[\... undergraduate level abstract algebra texts use... 0 0 1 0 0 0
10053 Improvements on lower bounds for the blow-up t... paper studies heat equation utdelta u bounded ... 0 0 1 0 0 0
10054 Using Variable Natural Environment Brain-Compu... paper addresses challenge humanoid robot teleo... 1 0 0 0 0 0
10055 Tunable Ampere phase plate for low dose imagin... novel device used tunable supportfree phase pl... 0 1 0 0 0 0
10056 An efficient model-free setting for longitudin... paper problem tracking desired longitudinal la... 1 0 1 0 0 0
10057 Genetic fitting techniques for precision ultra... present development genetic algorithm fitting ... 0 1 0 0 0 0
10058 Robust And Scalable Learning Of Complex Datase... large datasets represented multidimensional da... 0 0 0 1 1 0
10059 Epidemic dynamics in open quantum spin systems explore nonequilibrium evolution stationary st... 0 1 0 0 0 0
10060 In-Hand Object Stabilization by Independent Fi... grip control robotic inhand manipulation usual... 1 0 0 0 0 0
10061 The X-ray and Mid-Infrared luminosities in Lum... several recent studies reported different intr... 0 1 0 0 0 0
10062 Approximation of general facets by regular fac... show every bounded subset euclidean space appr... 0 0 1 0 0 0
10063 Calibrated Fairness in Bandits study fairness within stochastic emphmultiarme... 1 0 0 0 0 0
10064 HTC Vive MeVisLab integration via OpenVR for m... virtual reality immersive technology replicate... 1 0 0 0 0 0
10065 Explanation of a Polynomial Identity note provide conceptual explanation wellknown ... 0 0 1 0 0 0
10066 Quantum Stress Tensor Fluctuations and Primord... examine effect stress tensor quantum matter fi... 0 1 0 0 0 0
10067 Hyperbolic Pascal simplex article introduce new geometric object called ... 0 0 1 0 0 0
10068 Small-loss bounds for online learning with par... consider problem adversarial nonstochastic onl... 1 0 0 0 0 0
10069 Fine-Grained Parameterized Complexity Analysis... qcoloring problem asks whether vertices graph ... 1 0 0 0 0 0
10070 Planar Object Tracking in the Wild: A Benchmark planar object tracking actively studied proble... 1 0 0 0 0 0
10071 Experimental demonstration of an atomtronic ba... operation atomtronic battery demonstrated fini... 0 1 0 0 0 0
10072 Sensor Selection and Random Field Reconstructi... address two fundamental problems spatial field... 0 0 0 1 0 0
10073 A characterization of ordinary abelian varieti... paper prove smooth projective variety x charac... 0 0 1 0 0 0
10074 On Minimax Optimality of Sparse Bayes Predicti... study predictive density estimation kullbackle... 0 0 1 1 0 0
10075 Two forms of minimality in ASPIC+ many systems structured argumentation explicit... 1 0 0 0 0 0
10076 Perspectives on constraining a cosmological co... independent tests aiming constrain value cosmo... 0 1 0 0 0 0
10077 Flat bundles over some compact complex manifolds construct examples flat fiber bundles hopf sur... 0 0 1 0 0 0
10078 EXONEST: The Bayesian Exoplanetary Explorer fields astronomy astrophysics currently engage... 0 1 0 1 0 0
10079 Intelligence of agents produces a structural p... living organisms process information interact ... 0 1 0 0 0 0
10080 Quantifying Filter Bubbles: Analyzing Surprise... work analyses surprising elections attempts qu... 1 0 0 0 0 0
10081 Energy transfer, pressure tensor and heating o... kinetic plasma turbulence cascade spans multip... 0 1 0 0 0 0
10082 The relation between migration and FDI in the ... explore relationship human migration oecds for... 0 1 0 0 0 0
10083 Thermopower and thermal conductivity in the We... weyl semimetal nbp exhibits extremely large ma... 0 1 0 0 0 0
10084 Maximum entropy and population heterogeneity i... continuous cultures mammalian cells complex sy... 0 0 0 0 1 0
10085 Spin wave propagation and spin polarized elect... technique propagating spin wave spectroscopy a... 0 1 0 0 0 0
10086 Expert-Driven Genetic Algorithms for Simulatin... paper demonstrate genetic algorithms used reve... 1 0 0 1 0 0
10087 A gentle introduction to the minimal Naming Game social conventions govern countless behaviors ... 1 1 0 0 0 0
10088 Modelling hidden structure of signals in group... work devoted elaboration idea use block term d... 1 0 0 1 0 0
10089 ChaLearn Looking at People: A Review of Events... paper reviews historic chalearn looking people... 1 0 0 0 0 0
10090 Reinterpreting the Origin of Bifurcation and C... chaos associated bifurcation makes new science... 0 1 0 0 0 0
10091 Biochemical Coupling Through Emergent Conserva... bazhin analyzed atp coupling terms quasiequili... 0 0 0 0 1 0
10092 Artificial Intelligence as an Enabler for Cogn... explosive increase number smart devices hostin... 1 0 0 0 0 0
10093 Localized Thermal States believed thermalization closed systems interac... 0 1 0 0 0 0
10094 Interface Phonon Modes in the [AlN/GaN]20 and ... interface phonon modes cplane oriented alngan ... 0 1 0 0 0 0
10095 Predictability of escape for a stochastic sadd... transitions multiple stable states nonlinear s... 0 1 0 0 0 0
10096 Sieving rational points on varieties sieve rational points suitable varieties devel... 0 0 1 0 0 0
10097 Sampling-based probabilistic inference emerges... neural responses cortex change time systematic... 0 0 0 0 1 0
10098 Microscopic Description of Electric and Magnet... present general formalism multipole descriptio... 0 1 0 0 0 0
10099 Algorithms to Approximate Column-Sparse Packin... columnsparse packing problems arise several co... 1 0 0 0 0 0
10100 Teaching the Doppler Effect in Astrophysics doppler effect shift frequency waves emitted o... 0 1 0 0 0 0
10101 Embedding Tarskian Semantics in Vector Spaces propose new linear algebraic approach computat... 1 0 0 0 0 0
10102 Constraints from Dust Mass and Mass Accretion ... investigate relation disk mass mass accretion ... 0 1 0 0 0 0
10103 Character-Word LSTM Language Models present characterword long shortterm memory la... 1 0 0 0 0 0
10104 Deep Convolutional Neural Networks for Raman S... machine learning methods found many applicatio... 1 0 0 1 0 0
10105 Suppression of material transfer at contacting... effect monolayers oxygen hydrogen h possibilit... 0 1 0 0 0 0
10106 Fine-grained ECG Classification Based on Deep ... early recognition abnormal rhythm ecg signals ... 1 0 0 1 0 0
10107 A Wavenet for Speech Denoising currently speech processing techniques use mag... 1 0 0 0 0 0
10108 Warped Product Space-times many classical results relativity theory conce... 0 0 1 0 0 0
10109 ALMA Observations of the Young Substellar Bina... present alma observations system young binary ... 0 1 0 0 0 0
10110 Multichannel Linear Prediction for Blind Rever... class methods based multichannel linear predic... 1 0 0 0 0 0
10111 SepNE: Bringing Separability to Network Embedding many successful methods proposed learning low ... 1 0 0 0 0 0
10112 Opinion formation in a locally interacting com... present user model interaction based physics k... 1 1 0 0 0 0
10113 Integral representation of shallow neural netw... consider supervised learning problem shallow n... 0 0 0 1 0 0
10114 DoKnowMe: Towards a Domain Knowledge-driven Me... software engineering considers performance eva... 1 0 0 0 0 0
10115 The Effect of Different Wavelengths on Porous ... porous silicon layers ps prepared work via pho... 0 1 0 0 0 0
10116 Topological dimension tunes activity patterns ... connectivity patterns relevance neuroscience s... 0 1 0 0 0 0
10117 DFTerNet: Towards 2-bit Dynamic Fusion Network... deep convolutional neural networks dcnns curre... 0 0 0 1 0 0
10118 Generalized stealthy hyperuniform processes : ... study translation invariant stochastic process... 0 1 0 0 0 0
10119 High-frequency approximation of the interior d... study highfrequency behavior dirichlettoneuman... 0 0 1 0 0 0
10120 Conformal scalar curvature equation on S^n: fu... using lyapunovschmidt reduction method without... 0 0 1 0 0 0
10121 Equivalence between non-Markovian and Markovia... general formalism introduced allow steady stat... 0 1 0 0 0 0
10122 Attacking Binarized Neural Networks neural networks lowprecision weights activatio... 1 0 0 1 0 0
10123 On Treewidth and Stable Marriage stable marriage fundamental problem computer s... 1 0 0 0 0 0
10124 A Holistic Approach to Forecasting Wholesale E... electricity market price predictions enable en... 1 0 0 1 0 0
10125 Matched bipartite block model with covariates community detection clustering fundamental tas... 1 0 0 1 0 0
10126 Topological Interference Management with Decod... topological interference management tim proble... 1 0 0 0 0 0
10127 Robust Regression via Mutivariate Regression D... paper studies robust regression settings huber... 0 0 1 1 0 0
10128 Quotients of Buildings as $W$-Groupoids introduce structures model quotients buildings... 0 0 1 0 0 0
10129 Birth of the GUP and its effect on the entropy... paper origin generalized uncertainty principle... 0 1 0 0 0 0
10130 Data-adaptive smoothing for optimal-rate estim... consider nonparametric inference finite dimens... 0 0 1 1 0 0
10131 Knowledge Transfer for Out-of-Knowledge-Base E... knowledge base completion kbc aims predict mis... 1 0 0 0 0 0
10132 Feature Engineering for Predictive Modeling us... feature engineering crucial step process predi... 1 0 0 1 0 0
10133 Cellular automata connections shown two cellular automata ca rule space conn... 0 1 1 0 0 0
10134 Hypothesis Testing via Euclidean Separation discuss operational approach testing convex co... 0 0 1 1 0 0
10135 Detecting in-plane tension induced crystal pla... present experimental data simulations effects ... 0 1 0 0 0 0
10136 A novel approach for fast mining frequent item... frequent pattern mining one field significant ... 1 0 0 0 0 0
10137 Resonant thermalization of periodically driven... study dynamics fermihubbard model driven timep... 0 1 0 0 0 0
10138 Fusible HSTs and the randomized k-server conje... exhibit olog kcompetitive randomized algorithm... 1 0 1 0 0 0
10139 BPS spectra and 3-manifold invariants provide physical definition new homological in... 0 0 1 0 0 0
10140 Nonzero positive solutions of a multi-paramete... prove topological methods new results existenc... 0 0 1 0 0 0
10141 Emotion Recognition from Speech based on Relev... paper proposes approach detect emotion human s... 1 0 0 1 0 0
10142 The basic principles and the structure and alg... article basic principles put basis algorithmic... 1 0 0 0 0 0
10143 Drawing cone spherical metrics via Strebel dif... cone spherical metrics conformal metrics const... 0 0 1 0 0 0
10144 Thermoelectric radiation detector based on sup... suggest new type ultrasensitive detector elect... 0 1 0 0 0 0
10145 Upper estimates of Christoffel function on con... new upper bounds pointwise behaviour christoff... 0 0 1 0 0 0
10146 Special Lagrangian and deformed Hermitian Yang... string theory notion deformed hermitian yangmi... 0 0 1 0 0 0
10147 An introduction to the qualitative and quantit... present introduction periodic stochastic homog... 0 0 1 0 0 0
10148 A Computational Study of Yttria-Stabilized Zir... yttriastabilized zirconia ysz zroyo solid solu... 0 1 0 0 0 0
10149 Reactive Power Compensation Game under Prospec... reactive power compensation important challeng... 1 0 0 0 0 0
10150 Some remarks on protolocalizations and protoad... investigate additional properties protolocaliz... 0 0 1 0 0 0
10151 Resonances near Thresholds in slightly Twisted... consider dirichlet laplacian straight three di... 0 0 1 0 0 0
10152 Trapping and displacement of liquid collars an... liquid film wetting interior long circular cyl... 0 1 0 0 0 0
10153 Topological Brain Network Distances existing brain network distances often based m... 0 0 0 0 1 0
10154 The challenge of decentralized marketplaces online trust systems playing important role to... 1 0 0 0 0 0
10155 Radially resolved simulations of collapsing pe... study collapse pebble clouds statistical model... 0 1 0 0 0 0
10156 Accelerating equilibrium isotope effect calcul... accurate path integral monte carlo molecular d... 0 1 0 0 0 0
10157 CoAP over ICN constrained application protocol coap speciali... 1 0 0 0 0 0
10158 Nonequilibrium mode-coupling theory for dense ... physics active systems selfpropelled particles... 0 1 0 0 0 0
10159 Symmetry Protected Dynamical Symmetry in the G... letter present theorem dynamics generalized hu... 0 1 0 0 0 0
10160 Machine-learning a virus assembly fitness land... realistic evolutionary fitness landscapes noto... 0 0 0 0 1 0
10161 A multilevel block building algorithm for fast... datadriven modeling plays increasingly importa... 0 0 1 0 0 0
10162 Competition and Selection Among Conventions many domains latent competition among differen... 1 1 0 0 0 0
10163 Tradeoff Between Delay and High SNR Capacity i... analogtodigital converters adcs major contribu... 1 0 0 0 0 0
10164 Formal Synthesis of Control Strategies for Pos... design controllers formal specifications posit... 1 0 1 0 0 0
10165 Neumann Optimizer: A Practical Optimization Al... progress deep learning slowed days weeks takes... 1 0 0 1 0 0
10166 Signal propagation in sensing and reciprocatin... sensing reciprocating cellular systems sars im... 0 0 0 0 1 0
10167 A New Family of Asymmetric Distributions for M... new threeparameter cumulative distribution fun... 0 0 1 1 0 0
10168 Secret-Key-Aided Scheme for Securing Untrusted... paper proposes new scheme secure transmissions... 1 0 0 0 0 0
10169 On deep speaker embeddings for text-independen... investigate deep neural network performance te... 0 0 0 1 0 0
10170 Accurate Computation of Marginal Data Densitie... bayesian model selection model averaging rely ... 0 0 0 1 0 0
10171 Random matrices and the New York City subway s... analyze subway arrival times new york city sub... 0 1 0 0 0 0
10172 Weakening of the diamagnetic shielding in FeSe... superconducting transition fesexsx three disti... 0 1 0 0 0 0
10173 Incremental Skip-gram Model with Negative Samp... paper explores incremental training strategy s... 1 0 0 0 0 0
10174 Continuous-Time Accelerated Methods via a Hybr... treating optimization methods dynamical system... 1 0 0 0 0 0
10175 Fast-Slow Recurrent Neural Networks processing sequential data variable length maj... 1 0 0 0 0 0
10176 On OR Many-Access Channels multiaccess channel simple model channel outpu... 1 0 1 0 0 0
10177 TwiInsight: Discovering Topics and Sentiments ... social media platforms contain great wealth in... 1 0 0 0 0 0
10178 The Promise and Peril of Human Evaluation for ... transparency user trust human comprehension po... 1 0 0 1 0 0
10179 Guided Unfoldings for Finding Loops in Standar... paper reconsider unfoldingbased technique intr... 1 0 0 0 0 0
10180 Nutrients and biomass dynamics in photo-sequen... present study investigates different strategie... 0 0 0 0 1 0
10181 Random Fourier Features for Kernel Ridge Regre... random fourier features one popular techniques... 1 0 0 1 0 0
10182 Charge reconstruction study of the DAMPE Silic... dark matter particle explorer dampe one four s... 0 1 0 0 0 0
10183 Scalable Cryogenic Read-out Circuit for a Supe... superconducting nanowire single photon detecto... 0 1 0 0 0 0
10184 String principal bundles and Courant algebroids like atiyah lie algebroids encode infinitesima... 0 0 1 0 0 0
10185 Electroforming-Free TaOx Memristors using Focu... demonstrate creation electroformingfree taox m... 0 1 0 0 0 0
10186 Optimal hypothesis testing for stochastic bloc... present paper considers testing erdosrenyi ran... 1 0 1 1 0 0
10187 Generalized End-to-End Loss for Speaker Verifi... paper propose new loss function called general... 1 0 0 1 0 0
10188 Penalized pairwise pseudo likelihood for varia... regularization approach variable selection wel... 0 0 0 1 0 0
10189 Fast embedding of multilayer networks: An algo... learning interpretable features complex multil... 1 0 0 0 0 0
10190 Towards Better Summarizing Bug Reports with Cr... recent years witnessed growing demands resolvi... 1 0 0 0 0 0
10191 Extraordinary linear dynamic range in laser-de... graphenebased photodetectors demonstrated mech... 0 1 0 0 0 0
10192 Efficient Transfer Learning Schemes for Person... paper propose efficient transfer leaning metho... 1 0 0 0 0 0
10193 Convergence of ground state solutions for nonl... consider nonlinear schrdinger equation delta u... 0 0 1 0 0 0
10194 Error Analysis of the Stochastic Linear Feedba... paper concerned convergence longterm stability... 1 0 0 0 0 0
10195 Geometry in the Courtroom recent media blitz cohort mathematicians valia... 0 0 1 0 0 0
10196 Proof of Concept of Wireless TERS Monitoring temporary earth retaining structures ters help... 1 0 0 0 0 0
10197 Hyperrigid subsets of Cuntz-Krieger algebras a... subset mathcalg generating calgebra said hyper... 0 0 1 0 0 0
10198 Chiral Mott insulators in frustrated Bose-Hubb... study fully gapped chiral mott insulator cmi f... 0 1 0 0 0 0
10199 Thermodynamic Limit of Interacting Particle Sy... establish functional weak law large numbers ob... 0 0 1 0 0 0
10200 Evidence for short-range magnetic order in the... nature nematic state fese remains one major un... 0 1 0 0 0 0
10201 Contextual Parameter Generation for Universal ... propose simple modification existing neural ma... 0 0 0 1 0 0
10202 Opinion Dynamics with Stubborn Agents consider problem optimizing placement stubborn... 1 0 0 1 0 0
10203 A Community Microgrid Architecture with an Int... work fits context community microgrids members... 1 0 0 0 0 1
10204 Extended nilHecke algebra and symmetric functi... formulate type b extended nilhecke algebra fol... 0 0 1 0 0 0
10205 One-Sided Unsupervised Domain Mapping unsupervised domain mapping learner given two ... 1 0 0 0 0 0
10206 Adaptive Neural Networks for Efficient Inference present approach adaptively utilize deep neura... 1 0 0 1 0 0
10207 The phylogenetic effective sample size and jumps phylogenetic effective sample size parameter g... 0 0 0 0 1 0
10208 Bosonic symmetries of the extended fermionic $... paper construct additional symmetries fermioni... 0 1 1 0 0 0
10209 Single-atom-resolved probing of lattice gases ... measuring full distribution individual particl... 0 1 0 0 0 0
10210 Provability Logics of Hierarchies branch provability logic investigates provabil... 0 0 1 0 0 0
10211 On the Difference between Physics and Biology:... physical emergence crystals rocks sandpiles tu... 0 1 0 0 0 0
10212 Spin liquid and infinitesimal-disorder-driven ... interplay geometric frustration gf bond disord... 0 1 0 0 0 0
10213 A punishment voting algorithm based on super c... acoustic scene classification researches audio... 1 0 0 1 0 0
10214 Strong and Weak Equilibria for Time-Inconsiste... new definition continuoustime equilibrium cont... 0 0 0 0 0 1
10215 Trading algorithms with learning in latent alp... alpha signals statistical arbitrage strategies... 0 0 0 1 0 1
10216 Temporal Segment Networks for Action Recogniti... deep convolutional networks achieved great suc... 1 0 0 0 0 0
10217 Neural Machine Translation between Herbal Pres... current study applies deep learning herbalism ... 1 0 0 0 0 0
10218 A Quantum-Proof Non-Malleable Extractor, With ... privacy amplification two mutually trusted par... 1 0 0 0 0 0
10219 A Theory of Reversibility for Erlang reversible language forward computation undone... 1 0 0 0 0 0
10220 Convergence and Consistency Analysis for A 3D ... paper investigate convergence consistency prop... 1 0 0 0 0 0
10221 Optical Characterization of Electro-spun Polym... nanotubes various kinds prepared last decade s... 0 1 0 0 0 0
10222 Optimal Prediction for Additive Function-on-Fu... classic statistics functional regression model... 0 0 1 1 0 0
10223 Star chromatic index of subcubic multigraphs star chromatic index multigraph g denoted chis... 0 0 1 0 0 0
10224 The absolutely Koszul property of Veronese sub... absolutely koszul algebras class rings finite ... 0 0 1 0 0 0
10225 Learning Theory and Algorithms for Revenue Man... online advertisement main source revenue inter... 0 0 0 1 0 0
10226 Isotropic functions revisited smooth symmetric function f defined symmetric ... 0 0 1 0 0 0
10227 Condensates in double-well potential with synt... demonstrate enhancement vortex generation arti... 0 1 0 0 0 0
10228 On strict sub-Gaussianity, optimal proxy varia... investigate subgaussian property almost surely... 0 0 1 1 0 0
10229 Fast Distributed Approximation for Max-Cut finding maximum cut fundamental task many comp... 1 0 0 0 0 0
10230 A note on Oliver's p-group conjecture let pgroup odd prime p oliver proposed conject... 0 0 1 0 0 0
10231 Frobenius elements in Galois representations w... suppose elliptic curve number field whose mod ... 0 0 1 0 0 0
10232 CaloGAN: Simulating 3D High Energy Particle Sh... precise modeling subatomic particle interactio... 1 0 0 1 0 0
10233 Measurement of ultrashort optical pulses via t... demonstrate temporal measurements subpicosecon... 0 1 0 0 0 0
10234 On the next-to-minimal weight of projective Re... paper present several values nexttominimal wei... 1 0 1 0 0 0
10235 Scalable Global Grid catalogue for LHC Run3 an... alien alice environment file catalogue global ... 1 0 0 0 0 0
10236 A versatile UHV transport and measurement cham... report versatile mini ultrahigh vacuum uhv cha... 0 1 0 0 0 0
10237 Dual gauge field theory of quantum liquid crys... dislocationmediated quantum melting solids qua... 0 1 0 0 0 0
10238 Deformation mechanism map of Cu/Nb nanoscale m... mechanical properties deformation mechanisms c... 0 1 0 0 0 0
10239 Relations between Schramm spaces and generaliz... give necessary sufficient conditions embedding... 0 0 1 0 0 0
10240 Stability Selection for Structured Variable Se... variable graph selection problems finding righ... 1 0 0 1 0 0
10241 Vafa-Witten invariants for projective surfaces... propose definition vafawitten invariants count... 0 0 1 0 0 0
10242 Aggregated knowledge from a small number of de... aggregation many independent estimates outperf... 1 1 0 0 0 0
10243 Summertime, and the livin is easy: Winter and ... temperate climates mortality seasonal winterdo... 0 0 0 1 0 0
10244 Solving Horn Clauses on Inductive Data Types W... address problem verifying satisfiability const... 1 0 0 0 0 0
10245 The Power of Non-Determinism in Higher-Order I... investigate power nondeterminism purely functi... 1 0 0 0 0 0
10246 Upper-limit on the Advanced Virgo output mode ... advanced virgo detector uses two monolithic op... 0 1 0 0 0 0
10247 Mobile impurities in integrable models use mobile impurity depleton model study eleme... 0 1 1 0 0 0
10248 Time-dependent variational principle in matrix... study applicability timedependent variational ... 0 1 0 0 0 0
10249 Self-supporting Topology Optimization for Addi... paper presents topology optimization approach ... 1 0 0 0 0 0
10250 Reward Shaping via Meta-Learning reward shaping one effective methods tackle cr... 1 0 0 1 0 0
10251 Regulous vector bundles among recently introduced new notions real alg... 0 0 1 0 0 0
10252 Remarks on the operator-norm convergence of th... revise operatornorm convergence trotter produc... 0 0 1 0 0 0
10253 Using data-compressors for statistical analysi... nowadays data compressors applied many problem... 1 0 1 1 0 0
10254 Exploring High-Dimensional Structure via Axis-... twodimensional embeddings remain dominant appr... 1 0 0 1 0 0
10255 Exact Recovery with Symmetries for the Doubly-... graph matching quadratic assignment problem la... 0 0 1 0 0 0
10256 Statistical physics of human cooperation extensive cooperation among unrelated individu... 1 1 0 0 0 0
10257 Bayesian Hypernetworks study bayesian hypernetworks framework approxi... 1 0 0 1 0 0
10258 Block Motion Changes in Japan Triggered by the... plate motions governed equilibrium basal edge ... 0 1 0 0 0 0
10259 Learning the structure of Bayesian Networks: A... one challenging tasks adopting bayesian networ... 1 0 0 1 0 0
10260 Thermal fracturing on comets. Applications to ... simulate stresses induced temperature changes ... 0 1 0 0 0 0
10261 ADN: An Information-Centric Networking Archite... forwarding data name assumed necessary aspect ... 1 0 0 0 0 0
10262 Urban Delay Tolerant Network Simulator (UDTNSi... delay tolerant networking dtn approach network... 1 0 0 0 0 0
10263 Regularized Ordinal Regression and the ordinal... regularization techniques lasso tibshirani ela... 0 0 0 1 0 0
10264 Visual Multiple-Object Tracking for Unknown Cl... multiobject tracking applications model parame... 1 0 0 0 0 0
10265 On Integrated $L^{1}$ Convergence Rate of an I... consider general monotone regression estimatio... 0 0 1 1 0 0
10266 Towards Fast-Convergence, Low-Delay and Low-Co... distributed network optimization studied well ... 1 0 1 0 0 0
10267 On zeros of polynomials in best $L^p$-approxim... purpose note revive lp spaces original markov ... 0 0 1 0 0 0
10268 Empirical likelihood inference for partial fun... paper apply empirical likelihood method infere... 0 0 0 1 0 0
10269 Dropout Inference in Bayesian Neural Networks ... obtain uncertainty estimates realworld bayesia... 1 0 0 1 0 0
10270 Semiparametric Mixtures of Regressions with Si... article propose two classes semiparametric mix... 0 0 0 1 0 0
10271 Deep learning Approach for Classifying, Detect... apply convolutional neural network cnn classif... 0 1 0 0 0 0
10272 Sources of inter-model scatter in TRACMIP, the... analyze source intermodel scatter surface temp... 0 1 0 0 0 0
10273 Sub-clustering in decomposable graphs and size... paper proposes novel representation decomposab... 1 0 0 1 0 0
10274 The inflation technique solves completely the ... causal inference problem consists determining ... 0 0 1 1 0 0
10275 Magnetic charge injection in spin ice: a new w... complexity embedded condensed matter fertilize... 0 1 0 0 0 0
10276 Decentralized Task Allocation in Multi-Robot S... robotic systems working together team becoming... 1 0 0 0 0 0
10277 Combining Static and Dynamic Features for Mult... model precision classification task highly dep... 1 0 0 1 0 0
10278 Tracking the gradients using the Hessian: A ne... goal improve variance reducing stochastic meth... 1 0 0 1 0 0
10279 On spectral properties of Neuman-Poincare oper... consider plasmon resonances cloaking elastosta... 0 0 1 0 0 0
10280 A hybridizable discontinuous Galerkin method f... introduce hybridizable discontinuous galerkin ... 1 1 0 0 0 0
10281 Near Perfect Protein Multi-Label Classificatio... artificial neural networks anns gained welldes... 1 0 0 1 0 0
10282 Comparison of Decoding Strategies for CTC Acou... connectionist temporal classification recently... 1 0 0 0 0 0
10283 Battery Degradation Maps for Power System Opti... paper presents novel method describe battery d... 1 0 0 0 0 0
10284 Computer Assisted Localization of a Heart Arrh... consider problem locating pointsource heart ar... 0 0 0 1 0 0
10285 Solving for high dimensional committor functio... note propose method based artificial neural ne... 1 0 0 1 0 0
10286 The possibility of constructing a relativistic... possibility calculation conditional unconditio... 0 1 0 0 0 0
10287 Problems on Matchings and Independent Sets of ... let g finite simple graph x subset vg differen... 1 0 1 0 0 0
10288 Nonsequential double ionization of helium in I... collisionionization mechanism nonsequential do... 0 1 0 0 0 0
10289 Chaos or Order? chaos despite several decades research ubiquit... 0 1 1 0 0 0
10290 Gaia Data Release 1: The archive visualisation... context first gaia data release dr delivered c... 0 1 0 0 0 0
10291 Monte Carlo methods for massively parallel com... applications require substantial computational... 0 1 0 0 0 0
10292 A Deep Causal Inference Approach to Measuring ... kiva online nonprofit crowdsouring microfinanc... 0 0 0 1 0 0
10293 JADE - A Platform for Research on Cooperation ... ics wut platform simulation cooperation physic... 1 0 0 0 0 0
10294 Analytic Expressions for the Inner-Rim Structu... analytically derive expressions structure inne... 0 1 0 0 0 0
10295 X-ray Emission Spectrum of Liquid Ethanol : Or... xray emission spectrum liquid ethanol calculat... 0 1 0 0 0 0
10296 Activation Maximization Generative Adversarial... class labels empirically shown useful improvin... 1 0 0 1 0 0
10297 Job Management and Task Bundling high performance computing often performed sca... 0 1 0 0 0 0
10298 Scintillation based search for off-pulse radio... propose new method detect offpulse unpulsed an... 0 1 0 0 0 0
10299 Machine learning for graph-based representatio... structural topological information play key ro... 1 1 0 1 0 0
10300 VQABQ: Visual Question Answering by Basic Ques... taking image question input method output text... 1 0 0 0 0 0
10301 Power-Constrained Secrecy Rate Maximization fo... paper examine physical layer security cooperat... 1 0 1 0 0 0
10302 Demagnetization of cubic Gd-Ba-Cu-O bulk super... superconducting bulks acting highfield permane... 0 1 0 0 0 0
10303 Resonance-Free Light Recycling inability efficiently tune optical properties ... 0 1 0 0 0 0
10304 A Computationally Efficient and Practically Fe... traditionally blind speech separation techniqu... 1 0 0 0 0 0
10305 Magnetic ground state and magnon-phonon intera... inelastic neutron scattering used study magnet... 0 1 0 0 0 0
10306 Neuromodulation of Neuromorphic Circuits present novel methodology enable control neuro... 0 0 0 0 1 0
10307 Frank-Wolfe Style Algorithms for Large Scale O... introduce variants frankwolfe style algorithms... 0 0 0 1 0 0
10308 Theoretical Description of Micromaser in the U... theoretically investigate ultrastronglycoupled... 0 1 0 0 0 0
10309 Compatibility of quasi-orderings and valuation... work merle e manis introduced valuations commu... 0 0 1 0 0 0
10310 Feature Decomposition Based Saliency Detection... electron cryotomography ect allows visualizati... 0 0 0 1 1 0
10311 A Characterization of Integral ISS for Switche... existing characterizations integral inputtosta... 1 0 1 0 0 0
10312 Low-temperature marginal ferromagnetism explai... introduce new ferromagnetic model capable repr... 0 0 0 0 1 0
10313 Historical and personal recollections of Guido... paper present short scientific biography guido... 0 1 0 0 0 0
10314 Segment Parameter Labelling in MCMC Mean-Shift... work addresses problem segmentation time serie... 1 0 0 1 0 0
10315 M/G/c/c state dependent queuing model for a ro... propose article mgcc state dependent queuing m... 1 0 1 0 0 0
10316 Laplace approximation and the natural gradient... paper considers laplace method derive approxim... 0 0 0 1 0 0
10317 Fixed points of n-valued maps, the fixed point... study fixed point theory nvalued maps space x ... 0 0 1 0 0 0
10318 Large Synoptic Survey Telescope Galaxies Scien... large synoptic survey telescope lsst enable re... 0 1 0 0 0 0
10319 Multiresolution Coupled Vertical Equilibrium M... co capture storage important technology mitiga... 0 1 0 0 0 0
10320 Improved GelSight Tactile Sensor for Measuring... gelsight sensor uses elastomeric slab covered ... 1 0 0 0 0 0
10321 Deep Learning for Design and Retrieval of Nano... visual perception surroundings ultimately limi... 0 1 0 0 0 0
10322 A Sparse Completely Positive Relaxation of the... paper consider community detection problem eit... 0 0 1 0 0 0
10323 Automated Algorithm Selection on Continuous Bl... paper build upon previous work designing infor... 1 0 0 1 0 0
10324 Car-following behavior of connected vehicles i... vehicletovehicle communications change driving... 1 0 0 0 0 0
10325 A note on a two-weight estimate for the dyadic... show twoweight estimate dyadic square function... 0 0 1 0 0 0
10326 The Oblique Orbit of WASP-107b from K2 Photometry observations nine transits wasp k mission reve... 0 1 0 0 0 0
10327 A characterization of signed discrete infinite... article give reviews concerning negative proba... 0 0 1 1 0 0
10328 Frequency Domain Singular Value Decomposition ... advances virtual reality generated substantial... 1 0 0 0 0 0
10329 Functional Dynamical Structures in Complex Sys... understanding dynamical behavior complex syste... 0 1 0 0 0 0
10330 Angle-resolved photoemission spectroscopy with... quantum gas microscopes promising tool study i... 0 1 0 0 0 0
10331 A note on MLE of covariance matrix multivariate normal set well known maximum lik... 0 0 1 1 0 0
10332 Resource Management in Cloud Computing: Classi... cloud computing new era remote computing inter... 1 0 0 0 0 0
10333 What can the programming language Rust do for ... astrophysics community uses different tools co... 1 1 0 0 0 0
10334 Eliashberg theory with the external pair poten... based bcs model external pair potential formul... 0 1 0 0 0 0
10335 An exponential limit shape of random $q$-propo... introduce emphpnrandom qnproportion bulgarian ... 0 0 1 0 0 0
10336 Constraining Effective Temperature, Mass and R... introducing simplified transport model outer l... 0 1 0 0 0 0
10337 Hierarchical Multinomial-Dirichlet model for t... present novel approach estimating conditional ... 0 0 0 1 0 0
10338 Proceedings of the Fifth Workshop on Proof eXc... volume eptcs contains proceedings fifth worksh... 1 0 0 0 0 0
10339 Photoinduced charge-order melting dynamics in ... transient quantum dynamics interacting fermion... 0 1 0 0 0 0
10340 Compactness of the automorphism group of a top... prove automorphism group topological paralleli... 0 0 1 0 0 0
10341 A model provides insight into electric field-i... paper presents first md simulations model desi... 0 1 0 0 0 0
10342 A Rich-Variant Architecture for a User-Aware m... software service cloud computing model favorit... 1 0 0 0 0 0
10343 Comparison of Parallelisation Approaches, Lang... efficiently exploiting gpus increasingly essen... 1 0 0 0 0 0
10344 Notes on Growing a Tree in a Graph study height spanning tree graph g obtained st... 1 0 0 0 0 0
10345 Vortex pinning by the point potential in topol... propose theoretically effective scheme braidin... 0 1 0 0 0 0
10346 T* : A Heuristic Search Based Algorithm for Mo... motion planning core problem solve developing ... 1 0 0 0 0 0
10347 Discontinuous Homomorphisms of $C(X)$ with $2^... assume ctm zfcch containing simplified omegamo... 0 0 1 0 0 0
10348 Investigation of beam self-polarization in the... use resonant depolarization suggested precise ... 0 1 0 0 0 0
10349 Learning to Grasp from a Single Demonstration learningbased approaches robotic grasping usin... 1 0 0 0 0 0
10350 Tensor Minkowski Functionals for random fields... generalize translation invariant tensorvalued ... 0 1 0 0 0 0
10351 Measuring galaxy cluster masses with CMB lensi... develop maximum likelihood estimator mle measu... 0 1 0 0 0 0
10352 The Incremental Proximal Method: A Probabilist... work highlight connection incremental proximal... 0 0 0 1 0 0
10353 List Decoding of Insertions and Deletions list decoding insertions deletions levenshtein... 1 0 1 0 0 0
10354 Almost sure scattering for the energy-critical... prove almost sure global existence scattering ... 0 0 1 0 0 0
10355 Almost Boltzmann Exploration boltzmann exploration widely used reinforcemen... 1 0 0 1 0 0
10356 A Time Localization System in Smart Home Using... gps wifi based localization exploited recent y... 1 0 0 0 0 0
10357 Vision-based Real Estate Price Estimation since advent online real estate database compa... 1 0 0 0 0 0
10358 Deep Rewiring: Training very sparse deep networks neuromorphic hardware tends pose limits connec... 1 0 0 1 0 0
10359 Analyzing and Disentangling Interleaved Interr... internet things iot community wireless sensor ... 1 0 0 0 0 0
10360 Absence of replica symmetry breaking in the tr... proved replica symmetry broken transverse long... 0 1 0 0 0 0
10361 Specialization of Generic Array Accesses After... implemented optimization specializes typegener... 1 0 0 0 0 0
10362 Exact tensor completion with sum-of-squares obtain first polynomialtime algorithm exact te... 1 0 0 1 0 0
10363 Outlier Cluster Formation in Spectral Clustering outlier detection cluster number estimation im... 1 0 0 0 0 0
10364 Stored Electromagnetic Field Energies in Gener... general expressions stored energies timeharmon... 0 1 0 0 0 0
10365 From Relational Data to Graphs: Inferring Sign... inference network topologies relational data i... 1 1 0 1 0 0
10366 A Relaxed Kačanov Iteration for the $p$-Poisso... paper introduce iterative linearization scheme... 0 0 1 0 0 0
10367 Explosive Percolation on Directed Networks Due... important class realworld networks directed ed... 1 1 0 0 0 0
10368 Experimental observation of self excited co--r... report experimental observation multiple corot... 0 1 0 0 0 0
10369 Analysis of Computational Science Papers from ... paper presents results topic modeling network ... 1 0 0 0 0 0
10370 A maximal Boolean sublattice that is not the r... construct countable bounded sublattice lattice... 0 0 1 0 0 0
10371 Bayesian inference for stationary data on fini... work issue bayesian inference stationary data ... 0 0 1 1 0 0
10372 Why is solar cycle 24 an inefficient producer ... aim study investigate reason low productivity ... 0 1 0 0 0 0
10373 E2M2: Energy Efficient Mobility Management in ... merging mobile edge computing dense deployment... 1 0 0 0 0 0
10374 Big Data in HEP: A comprehensive use case study experimental particle physics forefront analyz... 1 0 0 0 0 0
10375 Criticality & Deep Learning II: Momentum Renor... guided critical systems found nature develop n... 1 0 0 0 0 0
10376 The Price of Diversity in Assignment Problems introduce analyze extension matching problem w... 1 0 0 0 0 0
10377 X-ray spectral analyses of AGNs from the 7Ms C... present detailed spectral analysis brightest a... 0 1 0 0 0 0
10378 Muon spin relaxation and inelastic neutron sca... ndhfo belonging family geometrically frustrate... 0 1 0 0 0 0
10379 Modeling and Soft-fault Diagnosis of Underwate... noncritical softfaults model deviations challe... 1 0 0 1 0 0
10380 Epidemic Spreading on Activity-Driven Networks... study sis epidemic spreading processes unfoldi... 1 1 0 0 0 0
10381 A generalized family of anisotropic compact ob... present model anisotropic compact star general... 0 1 0 0 0 0
10382 Automated capture and delivery of assistive ta... paper describe evaluate mixed reality system a... 1 0 0 0 0 0
10383 V2X Meets NOMA: Non-Orthogonal Multiple Access... benefited widely deployed infrastructure lte n... 1 0 0 0 0 0
10384 Theoretical Foundation of Co-Training and Disa... disagreementbased approaches generate multiple... 1 0 0 1 0 0
10385 Schrödinger's Man someone built box applies quantum superpositio... 1 0 0 0 0 0
10386 High-Resolution Multispectral Dataset for Sema... unmanned aircraft decreased cost required coll... 1 0 0 0 0 0
10387 A Methodology for the Selection of Requirement... paper present approach select subset requireme... 1 0 0 0 0 0
10388 Nonclassical Light Generation from III-V and G... chapter present stateoftheart generation noncl... 0 1 0 0 0 0
10389 INtERAcT: Interaction Network Inference from V... recent years number biomedical publications st... 0 0 0 0 1 0
10390 Distributed Deep Transfer Learning by Basic Pr... transfer learning popular practice deep neural... 1 0 0 1 0 0
10391 Parameter Learning and Change Detection Using ... paper presents construction particle filter in... 0 0 0 1 0 1
10392 Self-supervised Deep Reinforcement Learning wi... enabling robots autonomously navigate complex ... 1 0 0 0 0 0
10393 Magnetization reversal by superconducting curr... study magnetization reversal varphi josephson ... 0 1 0 0 0 0
10394 Higher Order Accurate Space-Time Schemes for C... computational astrophysics comes pressure beco... 0 1 0 0 0 0
10395 Building Robust Deep Neural Networks for Road ... deep neural networks built generalize outside ... 1 0 0 1 0 0
10396 Statman's Hierarchy Theorem simply typed lambdacalculus statman investigat... 1 0 0 0 0 0
10397 Anisotropic Dzyaloshinskii-Moriya Interaction ... used brillouin light scattering spectroscopy i... 0 1 0 0 0 0
10398 Modeling and Simulation of Robotic Finger Powe... paper shows detailed modeling threelink roboti... 1 0 0 0 0 0
10399 Beyond Log-concavity: Provable Guarantees for ... key task bayesian statistics sampling distribu... 1 0 0 1 0 0
10400 A Compositional Coalgebraic Semantics of Strat... provide compositional coalgebraic semantics st... 1 0 0 0 0 0
10401 Informed Sampling for Asymptotically Optimal P... anytime almostsurely asymptotically optimal pl... 1 0 0 0 0 0
10402 Holistic Planimetric prediction to Local Volum... propose novel approach human pose estimation s... 1 0 0 0 0 0
10403 Automated design of collective variables using... selection appropriate collective variables enh... 0 0 0 1 1 0
10404 Berry-Esseen Theorem and Quantitative homogeni... study random conductance model lattice mathbbz... 0 0 1 0 0 0
10405 Detecting Multiple Communities Using Quantum A... important problem combinatorial optimization p... 1 0 0 0 0 0
10406 Evaluating Feature Importance Estimates estimating influence given feature model predi... 0 0 0 1 0 0
10407 Distributed dynamic modeling and monitoring fo... largescale industrial processes closedloop con... 1 0 0 1 0 0
10408 Learning to compress and search visual data in... problem highdimensional largescale representat... 1 0 0 1 0 0
10409 Simple Round Compression for Parallel Vertex C... recently czumaj etal arxiv presented parallel ... 1 0 0 0 0 0
10410 ELDAR, a new method to identify AGN in multi-f... present eldar new method exploits potential me... 0 1 0 0 0 0
10411 Identification of multiple hard X-ray sources ... hard xray emission solar flare typically chara... 0 0 0 1 0 0
10412 A General Framework for Robust Interactive Lea... propose general framework interactively learni... 1 0 0 0 0 0
10413 Predicting Gravitational Lensing by Stellar Re... gravitational lensing provides means measure m... 0 1 0 0 0 0
10414 Weak separation properties for closed subgroup... three separation properties closed subgroup h ... 0 0 1 0 0 0
10415 A Broader View on Bias in Automated Decision-M... machine learning ml increasingly deployed real... 1 0 0 1 0 0
10416 Solution to the relaxation problem for a gas w... paper presents solution boltzmann kinetic equa... 0 1 0 0 0 0
10417 Robust Regression for Automatic Fusion Plasma ... first step realize automatic experimental data... 0 0 0 1 0 0
10418 Optimizing Long Short-Term Memory Recurrent Ne... article expands research done develop recurren... 1 0 0 0 0 0
10419 PhyShare: Sharing Physical Interaction in Virt... present physhare new haptic user interface bas... 1 0 0 0 0 0
10420 Kneser ranks of random graphs and minimum diff... every graph gve induced subgraph kneser graph ... 0 0 1 0 0 0
10421 Visualizing spreading phenomena on complex net... graph drawings useful tools exploring structur... 1 0 0 0 0 0
10422 In silico evolution of signaling networks usin... one ultimate goals biology understand design p... 0 0 0 0 1 0
10423 Deep Recurrent Neural Networks for seizure det... epilepsy common neurological diseases affectin... 1 0 0 0 0 0
10424 QUICKAR: Automatic Query Reformulation for Con... maintenance software developers deal numerous ... 1 0 0 0 0 0
10425 Learned Belief-Propagation Decoding with Simpl... consider weighted beliefpropagation wbp decode... 1 0 0 1 0 0
10426 Thick-medium model of transverse pattern forma... study pattern forming instability laser driven... 0 1 0 0 0 0
10427 A reinvestigation of the giant Rashba-split st... study electronic spin structures giant rashbas... 0 1 0 0 0 0
10428 Performance Evaluation of Spectrum Mobility in... technological developments alongside vlsi achi... 1 0 0 0 0 0
10429 Tunable Quantum Criticality and Super-ballisti... quantum phase transitions ubiquitous many exot... 0 1 0 0 0 0
10430 Exploring Cosmic Origins with CORE: Survey req... future observations cosmic microwave backgroun... 0 1 0 0 0 0
10431 Influence of material parameters on the perfor... detailed thermal analysis niobium nb based sup... 0 1 0 0 0 0
10432 Shear Viscosity of Uniform Fermi Gases with Po... shear viscosity plays important role studies t... 0 1 0 0 0 0
10433 Equivalence of Intuitionistic Inductive Defini... cyclic proof system gives us another way repre... 1 0 1 0 0 0
10434 Further and stronger analogy between sampling ... paper revisit recently established theoretical... 0 0 1 1 0 0
10435 Probing Spatial Locality in Ionic Liquids with... employ grand canonical adaptive resolution mol... 0 1 0 0 0 0
10436 Towards automation of data quality system for ... daily operation largescale experiment challeng... 1 0 0 0 0 0
10437 Solving a non-linear model of HIV infection fo... aim paper find approximate solution hiv infect... 0 0 0 0 1 0
10438 On Store Languages of Language Acceptors well known store language every pushdown autom... 1 0 0 0 0 0
10439 Exchange constants in molecule-based magnets d... cupyzno quasi onedimensional molecular antifer... 0 1 0 0 0 0
10440 An Extended Relevance Model for Session Search session search task aims best serving users in... 1 0 0 0 0 0
10441 Hierarchical Graph Representation Learning wit... recently graph neural networks gnns revolution... 1 0 0 1 0 0
10442 Ranking and Cooperation in Real-World Complex ... people participate activate online social netw... 1 0 0 0 0 0
10443 Remarks on defective Fano manifolds note continues previous work special secant de... 0 0 1 0 0 0
10444 Precision of the ENDGame: Mixed-precision arit... met offices weather climate simulation code un... 1 0 0 0 0 0
10445 Intra-Cluster Autonomous Coverage Optimization... self organizing networks sons considered vital... 1 0 0 0 0 0
10446 Two-dimensional topological nodal line semimet... topological semimetals dirac points form zerod... 0 1 0 0 0 0
10447 A Real-Valued Modal Logic manyvalued modal logic introduced combines usu... 1 0 0 0 0 0
10448 Embedded tori with prescribed mean curvature construct sequence compact oriented embedded t... 0 0 1 0 0 0
10449 On the reducibility of induced representations... let pi irreducible smooth complex representati... 0 0 1 0 0 0
10450 On derivations with respect to finite sets of ... purpose paper show functions derivate twovaria... 0 0 1 0 0 0
10451 A new magnetic phase in the nickelate perovski... rnio perovskites known order antiferromagnetic... 0 1 0 0 0 0
10452 On the Inverse of Forward Adjacency Matrix routine state space circuit analysis arbitrari... 1 0 0 0 0 0
10453 Constructing and Understanding New and Old Sca... discuss practical problems arising constructin... 0 0 1 0 0 0
10454 Non-compact subsets of the Zariski space of an... let v minimal valuation overring integral doma... 0 0 1 0 0 0
10455 Finite temperature Green's function approach f... present finitetemperature extension retarded c... 0 1 0 0 0 0
10456 Geometric Embedding of Path and Cycle Graphs i... given graph g n vertices set n points plane po... 1 0 0 0 0 0
10457 Simulating Brain Signals: Creating Synthetic E... despite significant recent progress area brain... 0 0 0 0 1 0
10458 An FPTAS for the parametric knapsack problem paper investigate parametric knapsack problem ... 1 0 1 0 0 0
10459 Saliency Benchmarking Made Easy: Separating Mo... dozens new models fixation prediction publishe... 1 0 0 1 0 0
10460 Distributed Framework for Optimal Demand Distr... study focusses selfbalancing microgrids smartl... 1 0 0 0 0 0
10461 Fast, precise, and widely tunable frequency co... optical frequency combs ofc provide convenient... 0 1 0 0 0 0
10462 Compact-Like Operators in Lattice-Normed Spaces linear operator two latticenormed spaces said ... 0 0 1 0 0 0
10463 Near-infrared spectroscopy of 5 ultra-massive ... present results pilot nearinfrared nir spectro... 0 1 0 0 0 0
10464 A hybrid deep learning approach for medical re... mining relationships treatments medical proble... 0 0 0 1 0 0
10465 Performance Optimization of Network Coding Bas... internet things iot changing daily life rapidl... 1 0 0 0 0 0
10466 Time-dependent probability density functions a... probabilistic description essential understand... 0 1 0 0 0 0
10467 A Local-Search Algorithm for Steiner Forest steiner forest problem given graph collection ... 1 0 0 0 0 0
10468 Fundamental bounds on MIMO antennas antenna current optimization often used analyz... 0 1 1 0 0 0
10469 DeepProteomics: Protein family classification ... knowledge regarding function proteins necessar... 0 0 0 1 0 0
10470 Designing Deterministic Polynomial-Space Algor... recent years several powerful techniques devel... 1 0 0 0 0 0
10471 String Attractors let string length n paper introduce notion emp... 1 0 0 0 0 0
10472 Methods for Mapping Forest Disturbance and Deg... purpose review paper presents review current s... 1 0 0 0 0 0
10473 Testing for Global Network Structure Using Sma... study problem testing community structure netw... 0 0 1 1 0 0
10474 A new method of correcting radial velocity tim... magnetic activity strongly impacts stellar rvs... 0 1 0 0 0 0
10475 Differential Testing for Variational Analyses:... differential testing solve oracle problem appl... 1 0 0 0 0 0
10476 Simultaneously Learning Neighborship and Proje... explicitly implicitly dimensionality reduction... 0 0 0 1 0 0
10477 Joint Multichannel Deconvolution and Blind Sou... blind source separation bss challenging matrix... 1 0 0 1 0 0
10478 Bimodule monomorphism categories and RSS equiv... monomorphism category mathscrsa b induced bimo... 0 0 1 0 0 0
10479 The Vanishing viscosity limit for some symmetr... focus paper analysis boundary layer associated... 0 0 1 0 0 0
10480 Anisotropy of transport in bulk Rashba metals recent experimental discovery threedimensional... 0 1 0 0 0 0
10481 A quick guide for student-driven community gen... high quality gene models necessary expand mole... 0 0 0 0 1 0
10482 Copycat CNN: Stealing Knowledge by Persuading ... past years convolutional neural networks cnns ... 0 0 0 1 0 0
10483 Medoids in almost linear time via multi-armed ... computing medoid large number points highdimen... 1 0 0 1 0 0
10484 Early stopping for statistical inverse problem... consider truncated svd spectral cutoff project... 0 0 1 1 0 0
10485 Algorithmic Theory of ODEs and Sampling from W... sampling logconcave functions arising statisti... 1 0 0 0 0 0
10486 The PSLQ Algorithm for Empirical Data celebrated integer relation finding algorithm ... 1 0 1 0 0 0
10487 Tensor Completion Algorithms in Big Data Analy... tensor completion problem filling missing unob... 1 0 0 1 0 0
10488 On Gallai's and Hajós' Conjectures for graphs ... path resp cycle decomposition graph g set edge... 1 0 0 0 0 0
10489 Band and correlated insulators of cold fermion... investigate transport properties neutral fermi... 0 1 0 0 0 0
10490 Stochasticity from function - why the Bayesian... increasing body evidence suggests trialtotrial... 0 0 0 0 1 0
10491 Very Asymmetric Collider for Dark Matter Searc... current searches dark photon mass range gev re... 0 1 0 0 0 0
10492 Some divisibility properties of binomial coeff... paper gave properties binomial coefficient 0 0 1 0 0 0
10493 An Unsupervised Method for Estimating the Glob... paper present method determine global horizont... 0 0 0 1 0 0
10494 Strong anisotropy effect in iron-based superco... anisotropy febased superconductors much smalle... 0 1 0 0 0 0
10495 Example of C-rigid polytopes which are not B-r... simple polytope p said emphbrigid combinatoria... 0 0 1 0 0 0
10496 Dynamic Switching Networks: A Dynamic, Non-loc... concept emergence powerful concept explain com... 1 0 0 0 0 0
10497 The Trouvé group for spaces of test functions trouv group mathcal gmathcal image analysis co... 0 0 1 0 0 0
10498 Robust Motion Planning employing Signal Tempor... motion planning classically concerns problem a... 1 0 0 0 0 0
10499 COREclust: a new package for a robust and scal... paper present new r package coreclust dedicate... 0 0 0 1 0 0
10500 Deep Neural Networks deep neural networks dnns universal function a... 1 0 0 1 0 0
10501 The Rosetta mission orbiter Science overview t... international rosetta mission launched consist... 0 1 0 0 0 0
10502 Back to the Future: an Even More Nearly Optima... describe new cardinality estimation algorithm ... 1 0 0 0 0 0
10503 Tracking Systems as Thinging Machine: A Case S... object tracking systems play important roles t... 1 0 0 0 0 0
10504 Spectral Evidence for an Inner Carbon-Rich Cir... using nasairtf spex bass spectrometers obtaine... 0 1 0 0 0 0
10505 The flyby anomaly: A multivariate analysis app... flyby anomaly unexpected variation asymptotic ... 0 1 0 0 0 0
10506 Opto-Valleytronic Spin Injection in Monolayer ... two dimensional materials provide unique platf... 0 1 0 0 0 0
10507 On singular limit equations for incompressible... consider incompressible euler navierstokes equ... 0 1 1 0 0 0
10508 Flying, Hopping Pit-Bots for Cave and Lava Tub... wheeled ground robots limited exploring extrem... 1 1 0 0 0 0
10509 Design of a Robotic System for Diagnosis and R... currently lower limb robotic rehabilitation wi... 1 1 0 0 0 0
10510 Multi-parametric sensitivity analysis of the b... tetrachiral materials characterized cellular m... 0 1 0 0 0 0
10511 What do the US West Coast Public Libraries Pos... twitter provided great opportunity public libr... 0 0 0 1 0 0
10512 Dynamic Boltzmann Machines for Second Order Mo... dynamic boltzmann machine dybm shown highly ef... 1 0 0 1 0 0
10513 Edge switching transformations of quantum graphs discussed effects basics graph transformations... 0 0 1 0 0 0
10514 Resilient Monotone Submodular Function Maximiz... paper focus applications machine learning opti... 1 0 1 0 0 0
10515 Antireflection Coated Semiconductor Laser Ampl... paper presents laser amplifier based antirefle... 0 1 0 0 0 0
10516 On the structure of radial solutions for some ... paper study entire radial solutions quasilinea... 0 0 1 0 0 0
10517 Bi-class classification of humpback whale soun... automatically detecting sound units humpback w... 1 0 0 1 0 0
10518 A model for a Lindenmayer reconstruction algor... given input string specific lindenmayer system... 1 0 0 0 0 0
10519 Spacetime symmetries and conformal data in the... generalization multiscale entanglement renorma... 0 1 0 0 0 0
10520 Augmenting Input Method Language Model with us... geotags microblog posts shown useful many data... 1 0 0 0 0 0
10521 Cauchy-Lipschitz theory for fractional multi-o... aim present paper contribute development study... 0 0 1 0 0 0
10522 Tanaka formula for strictly stable processes symmetric lvy processes local times exist tana... 0 0 1 0 0 0
10523 The Classical Complexity of Boson Sampling study classical complexity exact boson samplin... 1 0 0 1 0 0
10524 Impurity band conduction in group-IV ferromagn... study carrier transport magnetic properties gr... 0 1 0 0 0 0
10525 On the metastable Mabillard-Wagner conjecture purpose note attract attention following conje... 1 0 1 0 0 0
10526 Reference Publication Year Spectroscopy (RPYS)... studies theories ideas influenced eugene garfi... 1 0 0 0 0 0
10527 Neurogenesis-Inspired Dictionary Learning: Onl... paper focus online representation learning non... 1 0 0 1 0 0
10528 Transiently enhanced interlayer tunneling in o... recent pumpprobe experiments reported enhancem... 0 1 0 0 0 0
10529 An Integer Programming Formulation of the Key ... advent modern communications systems much atte... 1 0 0 0 0 0
10530 Laplacian-Steered Neural Style Transfer neural style transfer based convolutional neur... 1 0 0 0 0 0
10531 A quantized physical framework for understandi... quantized physical framework called fiveanchor... 0 0 0 0 1 0
10532 Reinforcement learning for non-prehensile mani... reinforcement learning emerged promising metho... 1 0 0 0 0 0
10533 A contour for the entanglement entropies in ha... construct contour function entanglement entrop... 0 1 0 0 0 0
10534 A Constrained Coupled Matrix-Tensor Factorizat... topic discovery witnessed significant growth f... 0 0 0 1 0 0
10535 Generalized Commutative Association Schemes, H... well known finite commutative association sche... 0 0 1 0 0 0
10536 BD-19 5044L: discovery of a short-period SB2 s... recently almost nothing known evolution magnet... 0 1 0 0 0 0
10537 A Submillimeter Perspective on the GOODS Field... use ultradeep cm data karl g jansky large arra... 0 1 0 0 0 0
10538 Discrete Spacetime Quantum Field Theory paper begins theoretical explanation spacetime... 0 1 0 0 0 0
10539 Neural network-based arithmetic coding of intr... h hevc contextadaptive binary arithmetic codin... 1 0 0 0 0 0
10540 Securing Information-Centric Networking withou... informationcentric networking promising networ... 1 0 0 0 0 0
10541 Inference in Deep Gaussian Processes using Sto... deep gaussian processes dgps hierarchical gene... 0 0 0 1 0 0
10542 Probabilistic Numerical Methods for PDE-constr... paper develops meshless methods probabilistica... 1 0 1 1 0 0
10543 Some discussions on the Read Paper "Beyond sub... note collection several discussions paper beyo... 0 0 0 1 0 0
10544 FASER: ForwArd Search ExpeRiment at the LHC new physics traditionally expected highpt regi... 0 1 0 0 0 0
10545 Size Agnostic Change Point Detection Framework... changes structure observed social complex netw... 1 0 0 0 0 0
10546 On distributions determined by their upward, s... according wienerhopf factorization characteris... 0 0 1 0 0 0
10547 Spontaneous Octahedral Tilting in the Cubic In... local crystal structures many perovskitestruct... 0 1 0 0 0 0
10548 Kinetics of the Phospholipid Multilayer Format... ordering multilayer consisting dspc bilayers s... 0 1 0 0 0 0
10549 Asymmetric Actor Critic for Image-Based Robot ... deep reinforcement learning rl proven powerful... 1 0 0 0 0 0
10550 Effects of particles on spinodal decomposition... thesis study interplay phase separation wettin... 0 1 0 0 0 0
10551 Tail asymptotics of signal-to-interference rat... consider spatial stochastic model wireless cel... 1 0 1 0 0 0
10552 An Optimal Combination of Proportional and Sto... reinsurance contract address conflicting inter... 0 0 0 1 0 0
10553 Computational complexity and 3-manifolds and z... show problem counting homomorphisms fundamenta... 1 0 1 0 0 0
10554 Learning to Schedule Deadline- and Operator-Se... use semiautonomous autonomous robotic assistan... 1 0 0 0 0 0
10555 r-BTN: Cross-domain Face Composite and Synthes... start asking interesting yet challenging quest... 1 0 0 0 0 0
10556 Regularity of Kleinian limit sets and Patterso... consider several related notions geometric reg... 0 0 1 0 0 0
10557 Large-Scale Sleep Condition Analysis Using Sel... sleep condition closely related individuals he... 1 0 0 0 0 0
10558 A note on the Diophantine equation $2^{n-1}(2^... motivated recent result farhi show nequiv pm p... 0 0 1 0 0 0
10559 Modeling of nonlinear audio effects with end-t... context music production distortion effects ma... 1 0 0 0 0 0
10560 Weak Adaptive Submodularity and Group-Based Ac... paper consider adaptive decisionmaking problem... 1 0 1 1 0 0
10561 Robust Decentralized Learning Using ADMM with ... many machine learning problems formulated cons... 1 0 0 1 0 0
10562 Applying the Delta method in metric analytics:... last decade information technology industry ad... 0 0 0 1 0 0
10563 Chebyshev Approximation and Higher Order Deriv... estimating domain attraction da nonpolynomial ... 1 0 0 0 0 0
10564 Ranking Median Regression: Learning to Order t... article devoted problem predicting value taken... 0 0 1 1 0 0
10565 Anisotropic power-law inflation in a two-scala... examine whether extended scenario twoscalarfie... 0 1 0 0 0 0
10566 Higher-dimensional SYK Non-Fermi Liquids at Li... address key open problem higher dimensional ge... 0 1 0 0 0 0
10567 Convex-constrained Sparse Additive Modeling an... sparse additive modeling class effective metho... 1 0 0 1 0 0
10568 Comparative study of finite element methods us... present performance analysis appropriate compa... 1 0 0 0 0 0
10569 A sharpened Riesz-Sobolev inequality rieszsobolev inequality provides upper bound i... 0 0 1 0 0 0
10570 Unoriented Cobordism Maps on Link Floer Homology study problem defining maps link floer homolog... 0 0 1 0 0 0
10571 3D Object Reconstruction from Hand-Object Inte... recent advances enabled object reconstruction ... 1 0 0 0 0 0
10572 Secular dynamics of a planar model of the Sun-... investigate longtime stability sunjupitersatur... 0 0 1 0 0 0
10573 Variants on the Berz sublinearity theorem consider variants classical berz sublinearity ... 0 0 1 0 0 0
10574 Linguistic Markers of Influence in Informal In... long standing interest understanding social in... 1 0 0 0 0 0
10575 Finding multiple core-periphery pairs in networks coreperiphery structure networks core nodes de... 1 1 0 0 0 0
10576 Central Limit Theorems of Local Polynomial Thr... central limit theorems play important role stu... 0 0 1 0 0 0
10577 Honey from the Hives: A Theoretical and Comput... first half manuscript begin brief review combi... 0 0 0 1 0 0
10578 Pressure-induced ferromagnetism due to an anis... rapid anisotropic modification fermisurface sh... 0 1 0 0 0 0
10579 DataSlicer: Task-Based Data Selection for Visu... visual exploration analysis data determining s... 1 0 0 0 0 0
10580 Convolutional Analysis Operator Learning: Acce... convolutional operator learning increasingly g... 0 0 0 1 0 0
10581 Several Classes of Permutation Trinomials over... construction permutation trinomials finite fie... 1 0 0 0 0 0
10582 Core-powered mass loss and the radius distribu... recent observations identify valley radius dis... 0 1 0 0 0 0
10583 Comparison of Gini index and Tamura coefficien... sparsity gradient sog robust autofocusing crit... 0 1 0 0 0 0
10584 Probabilistic interpretation of HJB equations ... purpose note propose new approach probabilisti... 0 0 1 0 0 0
10585 A Review on Deep Learning Techniques Applied t... image semantic segmentation interest computer ... 1 0 0 0 0 0
10586 Sum-Product Networks for Hybrid Domains kinds mixed data personal data panel scientifi... 1 0 0 1 0 0
10587 Unified Hypersphere Embedding for Speaker Reco... incremental improvements accuracy convolutiona... 1 0 0 0 0 0
10588 Linearly-Recurrent Autoencoder Networks for Le... paper describes method learning lowdimensional... 1 0 0 1 0 0
10589 Macros to Conduct Tests of Multimodality in SAS dip test unimodality silvermans critical bandw... 0 0 0 1 0 0
10590 The James construction and $π_4(\mathbb{S}^3)$... first part paper present formalization agda ja... 1 0 1 0 0 0
10591 Effective One-Dimensional Coupling in the High... inelastic neutron scattering measurements itin... 0 1 0 0 0 0
10592 Graph-Based Ascent Algorithms for Function Max... study problem finding maximum function defined... 1 0 0 1 0 0
10593 Multiequilibria analysis for a class of collec... models collective decisionmaking considered pa... 1 0 1 0 0 0
10594 Pattern Recognition Techniques for the Identif... paper focuses recognition activities daily liv... 1 0 0 0 0 0
10595 Simultaneous dynamic characterization of charg... monitoring structural changes ferroelectric th... 0 1 0 0 0 0
10596 Continuous Relaxations for the Traveling Sales... work aim explore connections dynamical systems... 1 0 1 0 0 0
10597 Isotopes of Octonion Algebras, G2-Torsors and ... octonion algebras rings contrast fields determ... 0 0 1 0 0 0
10598 Second Order Statistics Analysis and Compariso... two fundamental approaches information averagi... 1 0 1 1 0 0
10599 Phonon lasing from optical frequency comb illu... atomic transition addressed single tooth optic... 0 1 0 0 0 0
10600 Blocks with the hyperfocal subgroup $Z_{2^n}\t... paper calculate numbers irreducible ordinary c... 0 0 1 0 0 0
10601 Asymptotic Analysis via Stochastic Differentia... paper investigates asymptotic behaviors gradie... 0 0 0 1 0 0
10602 Pigeonring: A Principle for Faster Thresholded... pigeonhole principle states n items contained ... 1 0 0 0 0 0
10603 Circle compactification and 't Hooft anomaly anomaly matching constrains lowenergy physics ... 0 1 0 0 0 0
10604 High-speed 100 MHz strain monitor using fiber ... highspeed mhz strain monitor using fiber bragg... 0 1 0 0 0 0
10605 Functional limit laws for the increments of Lé... present functional form erdsrenyi law large nu... 0 0 1 1 0 0
10606 R$^3$PUF: A Highly Reliable Memristive Device ... present memristive device based r puf construc... 1 0 0 0 0 0
10607 FML-based Dynamic Assessment Agent for Human-M... paper demonstrate application fuzzy markup lan... 1 0 0 0 0 0
10608 ALMA reveals starburst-like interstellar mediu... present alma detections ci co j co j emission ... 0 1 0 0 0 0
10609 Faster Betweenness Centrality Updates in Evolv... finding central nodes fundamental problem netw... 1 0 0 0 0 0
10610 Constraining Reionization with the $z \sim 5-6... latest measurements cmb electron scattering op... 0 1 0 0 0 0
10611 Third-Person Imitation Learning reinforcement learning rl makes possible train... 1 0 0 0 0 0
10612 Model Trees for Identifying Exceptional Player... drafting strong players crucial team success d... 1 0 0 0 0 0
10613 Collapsed Dark Matter Structures distributions dark matter baryons universe kno... 0 1 0 0 0 0
10614 Locally free actions of groupoids and proper t... let galpha hbeta locally compact hausdorff gro... 0 0 1 0 0 0
10615 Adaptive Lock-Free Data Structures in Haskell:... key part implementing highlevel languages prov... 1 0 0 0 0 0
10616 Output feedback exponential stabilization of a... paper develops systematically output feedback ... 0 0 1 0 0 0
10617 A Microphotonic Astrocomb one essential prerequisites detection earthlik... 0 1 0 0 0 0
10618 Scale out for large minibatch SGD: Residual ne... past years ilsvrc competition imagenet dataset... 1 0 0 1 0 0
10619 Alphabet-dependent Parallel Algorithm for Suff... suffix trees recently become successful data s... 1 0 0 0 0 0
10620 A coupled mitral valve -- left ventricle model... understanding interaction valves walls heart i... 1 1 0 0 0 0
10621 Performance of an Algorithm for Estimation of ... optimal estimation signal amplitude background... 0 1 0 0 0 0
10622 Depth Creates No Bad Local Minima deep learning textitdepth well textitnonlinear... 1 0 1 1 0 0
10623 Some Formulas for Numbers of Restricted Words define quantity cmnk generalization notion com... 0 0 1 0 0 0
10624 Mean Birds: Detecting Aggression and Bullying ... recent years bullying aggression users social ... 1 0 0 0 0 0
10625 Towards an open standard for assessing the sev... robots typically created security main concern... 1 0 0 0 0 0
10626 Fully Distributed and Asynchronized Stochastic... paper considers general datafitting problem ne... 1 0 0 0 0 0
10627 Priv'IT: Private and Sample Efficient Identity... develop differentially private hypothesis test... 1 0 1 1 0 0
10628 Radiative Transfer for Exoplanet Atmospheres remote sensing atmospheres distant worlds moti... 0 1 0 0 0 0
10629 Computational Results for Extensive-Form Adver... provide best knowledge first computational stu... 1 0 0 0 0 0
10630 A Parametric MPC Approach to Balancing the Cos... designing control strategies differentialdrive... 1 0 0 0 0 0
10631 A norm knockout method on indirect reciprocity... although various norms reciprocitybased cooper... 1 1 0 0 0 0
10632 Online control of the false discovery rate wit... online multiple testing problem pvalues corres... 1 0 1 1 0 0
10633 Multi-agent Reinforcement Learning Embedded Ga... current gametheoretic demandside management me... 1 0 0 1 0 0
10634 A locally quasi-convex abelian group without M... give first example locally quasiconvex even co... 0 0 1 0 0 0
10635 How accurate is density functional theory at p... dipole moments simple global measure accuracy ... 0 1 0 0 0 0
10636 Understanding the Impact of Early Citers on Lo... paper explores interesting new dimension chall... 1 0 0 0 0 0
10637 Cause-Effect Deep Information Bottleneck For I... estimating causal effects intervention presenc... 0 0 0 1 0 0
10638 On the restricted almost unbiased Liu estimato... known multicollinearity exists logistic regres... 0 0 1 1 0 0
10639 Camera-trap images segmentation using multi-la... segmentation animals cameratrap images difficu... 1 0 0 0 0 0
10640 The Bi-Lipschitz Equisingularity of Essentiall... bilipschitz geometry one main subjects modern ... 0 0 1 0 0 0
10641 Braid group symmetries of Grassmannian cluster... define action extended affine dstrand braid gr... 0 0 1 0 0 0
10642 Bi-$s^*$-concave distributions introduce new shapeconstrained class distribut... 0 0 1 1 0 0
10643 A central limit theorem for the realised covar... article presents weak law large numbers centra... 0 0 1 1 0 0
10644 First principles investigations of electronic,... based geometry optimization magnetic structure... 0 1 0 0 0 0
10645 Eight-cluster structure of chloroplast genomes... previously sevencluster pattern claiming unive... 0 0 0 0 1 0
10646 Remote Document Encryption - encrypting data f... show party encrypt data epassport holder physi... 1 0 0 0 0 0
10647 Full likelihood inference for max-stable data show perform full likelihood inference maxstab... 0 0 0 1 0 0
10648 Nef vector bundles on a projective space with ... describe nef vector bundles projective space f... 0 0 1 0 0 0
10649 Performance of irradiated thin n-in-p planar p... atlas collaboration replace tracking detector ... 0 1 0 0 0 0
10650 Assessment of sound spatialisation algorithms ... given input sound signal target virtual sound ... 1 0 0 0 0 0
10651 Identification of individual coherent sets ass... present method identifying coherent structures... 0 1 0 1 0 0
10652 Gaussian Processes for HRF estimation for BOLD... present nonparametric joint estimation method ... 0 0 0 1 0 0
10653 Iterated Elliptic and Hypergeometric Integrals... calculate loop master integrals heavy quark co... 1 0 0 0 0 0
10654 Stein Variational Message Passing for Continuo... propose novel distributed inference algorithm ... 1 0 0 1 0 0
10655 PEBP1/RKIP: from multiple functions to a commo... pebps phosphatidylethanolamine binding protein... 0 0 0 0 1 0
10656 A Characterization Theorem for a Modal Descrip... modal description logics feature modalities ca... 1 0 1 0 0 0
10657 Emergence of magnetic long-range order in kago... existence spinliquid ground state heisenberg k... 0 1 0 0 0 0
10658 The multidimensional truncated Moment Problem:... paper moment problem finitedimensional vector ... 0 0 1 0 0 0
10659 PROOF OF VALUE ALIENATION (PoVA) - a concept o... paper describe concept cryptocurrency issuance... 0 0 0 0 0 1
10660 Top-Rank Enhanced Listwise Optimization for St... pairwise ranking methods basis many widely use... 1 0 0 0 0 0
10661 Performance Limits of Stochastic Sub-Gradient ... analysis part revealed interesting properties ... 1 0 1 1 0 0
10662 Aggregating incoherent agents who disagree paper explore aggregate degrees belief group a... 1 0 0 1 0 0
10663 On Fundamental Limits of Robust Learning consider problems robust pac learning distribu... 1 0 0 1 0 0
10664 Robust Multi-view Pedestrian Tracking Using Ne... paper present realtime robust multiview pedest... 1 0 0 0 0 0
10665 A Hybrid Algorithm for Period Analysis from Mu... ongoing future surveys repeat imaging multiple... 0 1 0 0 0 0
10666 A behavioral interpretation of belief functions shafers belief functions introduced seventies ... 0 0 1 0 0 0
10667 Radiation Hardness of Fiber Bragg Grating Ther... photonics sensing long valued tolerance harsh ... 0 1 0 0 0 0
10668 On the inherent competition between valid and ... inductive inference process extracting general... 0 0 0 0 1 0
10669 Computing Stable Models of Normal Logic Progra... present method computing stable models normal ... 1 0 0 0 0 0
10670 Security for 4G and 5G Cellular Networks: A Su... paper presents comprehensive survey existing a... 1 0 0 0 0 0
10671 Deep Learning for Unsupervised Insider Threat ... analysis organizations computer network activi... 1 0 0 1 0 0
10672 Singular branched covers of four-manifolds consider dihedral cover f yto x x fourmanifold... 0 0 1 0 0 0
10673 A Sample Complexity Measure with Applications ... introduce new sample complexity measure refer ... 1 0 1 1 0 0
10674 MDNet: A Semantically and Visually Interpretab... inability interpret model prediction semantica... 1 0 0 0 0 0
10675 I0 and rank-into-rank axioms survey basics things known never published thi... 0 0 1 0 0 0
10676 Low-Dose CT with a Residual Encoder-Decoder Co... given potential xray radiation risk patient lo... 1 1 0 0 0 0
10677 Primes In Arithmetic Progressions And Primitiv... let xgeq large number let leq q integers gcdaq... 0 0 1 0 0 0
10678 Photometric redshift estimation via deep learning need analyze available large synoptic multiban... 0 1 0 0 0 0
10679 Effect of antipsychotics on community structur... schizophrenia mental disorder characterized ab... 0 0 0 1 1 0
10680 Unsupervised Learning of Mixture Models with a... gaussian mixture models one studied mature mod... 0 0 0 1 0 0
10681 Sound emitted by some grassland animals as an ... argued based results numerical modelling exper... 0 1 0 0 0 0
10682 Monochromaticity of coherent Smith-Purcell rad... investigation coherent smithpurcell radiation ... 0 1 0 0 0 0
10683 Search for water vapor in the high-resolution ... groundbased telescopes equipped stateoftheart ... 0 1 0 0 0 0
10684 The Capacity of Some Classes of Polyhedra k borsuk topological conference moscow introdu... 0 0 1 0 0 0
10685 Network Transplanting (extended abstract) paper focuses new task ie transplanting catego... 1 0 0 1 0 0
10686 Extracting Build Changes with BUILDDIFF build systems essential part modern software e... 1 0 0 0 0 0
10687 Integrating car path optimization with train f... essential issue freight transportation system ... 0 0 1 0 0 0
10688 Modeling of networks and globules of charged d... experiments optical stm injection carriers lay... 0 1 0 0 0 0
10689 cGAN-based Manga Colorization Using a Single T... japanese comic format known manga popular worl... 1 0 0 0 0 0
10690 Cooperation and Environment Characterize the L... optical spectrum liquid water analyzed subsyst... 0 1 0 0 0 0
10691 Possible particle-hole instabilities in intera... type ii weyl semimetal three dimensional gaple... 0 1 0 0 0 0
10692 Turbulent shear layers in confining channels present simple model development shear layers ... 0 1 0 0 0 0
10693 Crystal and Magnetic Structures in Layered, Tr... materials composed two dimensional layers bond... 0 1 0 0 0 0
10694 Ramsey theorem for designs prove choice parameters ktlambda class finite ... 1 0 1 0 0 0
10695 Oracle inequalities for the stochastic differe... paper survey recent results adaptive robust no... 0 0 1 0 0 0
10696 Empirical Risk Minimization as Parameter Choic... consider statistical inverse problem recover f... 0 0 1 1 0 0
10697 Disturbance-to-State Stabilization and Quantiz... consider system linear hyperbolic pdes state o... 1 0 1 0 0 0
10698 Energy dependent stereodynamics of the Ne($^3$... stereodynamics nepar penning associative ioniz... 0 1 0 0 0 0
10699 Qubit dynamics at tunneling Fermi-edge singula... consider tunneling spinless electrons singlech... 0 1 0 0 0 0
10700 A general method to describe intersystem cross... intersystem crossing radiationless process tak... 0 1 0 0 0 0
10701 Generating Synthetic Data for Real World Detec... denial service attacks especially pertinent in... 1 0 0 0 0 0
10702 A Data-driven Model for Interaction-aware Pede... paper reports datadriven interactionaware moti... 1 0 0 0 0 0
10703 Performance study of SKIROC2 and SKIROC2A with... skiroc asic readout silicon pad detectors elec... 0 1 0 0 0 0
10704 Priority effects between annual and perennial ... dominance annual plants traditionally consider... 0 0 0 0 1 0
10705 Joining and decomposing reaction networks systems synthetic biology much research focuse... 0 0 0 0 1 0
10706 Evidence for structural damping in a high-stre... resolve thermal motion highstress silicon nitr... 0 1 0 0 0 0
10707 Efficient, sparse representation of manifold d... geodesic distance matrices reveal shape proper... 1 0 0 1 0 0
10708 A First Principle Study on Iron Substituted Li... work structural stability electronic propertie... 0 1 0 0 0 0
10709 Noncommutative Knörrer type equivalences via n... construct knrrer type equivalences outside hyp... 0 0 1 0 0 0
10710 Torsion and K-theory for some free wreath prod... classify torsion actions free wreath products ... 0 0 1 0 0 0
10711 High Dimensional Inference in Partially Linear... propose two semiparametric versions debiased l... 0 0 1 1 0 0
10712 The Impact of Small-Cell Bandwidth Requirement... smallcell deployment licensed unlicensed spect... 1 0 1 0 0 0
10713 Optimisation approach for the Monge-Ampere equ... paper studies numerical approximation solution... 0 0 1 0 0 0
10714 Coupling parallel adaptive mesh refinement wit... study effect adaptive mesh refinement parallel... 1 0 1 0 0 0
10715 The Pragmatics of Indirect Commands in Collabo... todays artificial assistants typically prompte... 1 0 0 0 0 0
10716 The Dawn of the Post-Naturalness Era imaginary conversation guido altarelli express... 0 1 0 0 0 0
10717 An effective likelihood-free approximate compu... approximate bayesian computing powerful likeli... 0 0 1 1 0 0
10718 The word and conjugacy problems in lacunary hy... study word conjugacy problems lacunary hyperbo... 0 0 1 0 0 0
10719 Prediction of ultra-narrow Higgs resonance in ... higgs resonance modes condensed matter systems... 0 1 0 0 0 0
10720 Better Text Understanding Through Image-To-Tex... generic text embeddings successfully used vari... 1 0 0 0 0 0
10721 Two-sample instrumental variable analyses usin... instrumental variable analysis widely used met... 0 0 1 1 0 0
10722 Combinatorial models for Schubert polynomials schubert polynomials basis polynomial ring rep... 0 0 1 0 0 0
10723 Phase-tunable Josephson thermal router since first studies thermodynamics heat transp... 0 1 0 0 0 0
10724 Topology Analysis of International Networks Ba... complex high dimensional unstructured data oft... 1 0 1 1 0 0
10725 Solving the incompressible surface Navier-Stok... consider numerical approach incompressible sur... 0 1 0 0 0 0
10726 Exploring a potential energy surface by machin... propose machinelearning method evaluating pote... 0 1 0 0 0 0
10727 Products of random walks on finite groups with... article consider products random walks finite ... 0 0 1 0 0 0
10728 A Theoretical Analysis of Sparse Recovery Stab... dantzig selector ds lasso problems attracted p... 0 0 1 1 0 0
10729 Input Perturbations for Adaptive Regulation an... design adaptive algorithms simultaneous regula... 1 0 0 0 0 0
10730 Nearly circular domains which are integrable c... birkhoff conjecture says boundary strictly con... 0 0 1 0 0 0
10731 Empirical study on social groups in pedestrian... pedestrian crowds often include social groups ... 0 1 0 0 0 0
10732 Capacity of the Aperture-Constrained AWGN Free... paper derive upper lower bounds well simple cl... 1 0 0 0 0 0
10733 Quasiparticle entropy in superconductor/normal... discuss quasiparticle entropy heat capacity di... 0 1 0 0 0 0
10734 A Kepler Study of Starspot Lifetimes with Resp... widefield high precision photometric surveys k... 0 1 0 0 0 0
10735 Plasmon-Driven Acceleration in a Photo-Excited... plasmonassisted channeling acceleration realiz... 0 1 0 0 0 0
10736 Towards Evaluating Size Reduction Techniques f... formal verification techniques widely used det... 1 0 0 0 0 0
10737 Quantum-continuum simulation of underpotential... underpotential deposition transition metal ion... 0 1 0 0 0 0
10738 Neural Expectation Maximization many real world tasks reasoning physical inter... 1 0 0 1 0 0
10739 Gold Standard Online Debates Summaries and Fir... usage online textual media steadily increasing... 1 0 0 0 0 0
10740 Entropy-SGD optimizes the prior of a PAC-Bayes... show entropysgd chaudhari et al viewed learnin... 1 0 0 1 0 0
10741 DeepFM: A Factorization-Machine based Neural N... learning sophisticated feature interactions be... 1 0 0 0 0 0
10742 How a small quantum bath can thermalize long l... investigate stability manybody localized mbl p... 0 1 0 0 0 0
10743 Transfer Learning for Brain-Computer Interface... almost eegbased braincomputer interfaces bcis ... 0 0 0 1 1 0
10744 Linear and bilinear restriction to certain rot... conditional fourier restriction estimates elli... 0 0 1 0 0 0
10745 Mixed one-bit compressive sensing with applica... measurement falls outside quantization measura... 1 0 1 0 0 0
10746 Stochastic Gradient Descent on Highly-Parallel... increased interest building data analytics fra... 1 0 0 0 0 0
10747 Mixed Precision Training deep neural networks enabled progress wide var... 1 0 0 1 0 0
10748 An elementary representation of the higher-ord... investigate differential equation jacobitype p... 0 0 1 0 0 0
10749 Theory of $L$-edge spectroscopy of strongly co... xray absorption spectroscopy measured ledge tr... 0 1 0 0 0 0
10750 Pseudo-spin Skyrmions in the Phase Diagram of ... topological states matter root fascinating phe... 0 1 0 0 0 0
10751 Large Scale Empirical Risk Minimization via Tr... consider large scale empirical risk minimizati... 1 0 1 1 0 0
10752 Large covers and sharp resonances of hyperboli... let gamma convex cocompact discrete group isom... 0 0 1 0 0 0
10753 Computational Models of Tutor Feedback in Lang... paper investigates role tutor feedback languag... 1 0 0 0 0 0
10754 Non-Saturated Throughput Analysis of Coexisten... paper analyzes coexistence performance wifi ce... 1 0 0 0 0 0
10755 A Dynamic Model for Traffic Flow Prediction Us... realtime traffic flow prediction provide trave... 0 0 0 1 0 0
10756 Think globally, fit locally under the Manifold... since introduction locally linear embedding ll... 0 0 1 1 0 0
10757 Relative energetics of acetyl-histidine protom... studied acetylhistidine ach bare microsolvated... 0 0 0 0 1 0
10758 "Space is blue and birds fly through it" quantum mechanics quantum states values physic... 0 1 0 0 0 0
10759 On the Geometry of Nash and Correlated Equilib... known set correlated equilibria nplayer noncoo... 1 0 0 0 0 0
10760 Multipoint Radiation Induced Ignition of Dust ... known unconfined dust explosions consist relat... 0 1 0 0 0 0
10761 Modeling of the Latent Embedding of Music usin... data volume heterogeneity digital music conten... 1 0 0 0 0 0
10762 Intense keV isolated attosecond pulse generati... theoretically investigate generation intense k... 0 1 0 0 0 0
10763 Games with Costs and Delays demonstrate usefulness adding delay infinite g... 1 0 0 0 0 0
10764 Compile-Time Extensions to Hybrid ODEs reachability analysis hybrid systems active ar... 1 0 0 0 0 0
10765 Sorted Concave Penalized Regression lasso biased concave penalized least squares e... 0 0 1 0 0 0
10766 A New Fully Polynomial Time Approximation Sche... interval subset sum problem issp generalizatio... 1 0 1 0 0 0
10767 Data Dependent Kernel Approximation using Pseu... kernel methods powerful flexible approach solv... 1 0 0 1 0 0
10768 Estimating Historical Hourly Traffic Volumes v... paper focuses problem estimating historical tr... 1 0 0 1 0 0
10769 Monitoring of Wild Pseudomonas Biofilm Strain ... present paper proposes novel method quantifica... 0 0 0 1 1 0
10770 Continuous Measurement of an Atomic Current interested dynamics quantum manybody systems c... 0 1 0 0 0 0
10771 Zero-Inflated Autoregressive Conditional Durat... finance durations successive transactions usua... 0 0 0 0 0 1
10772 Analog Experiments on Tensile Strength of Dust... tensile strength small dusty bodies solar syst... 0 1 0 0 0 0
10773 On Compiling DNNFs without Determinism stateoftheart knowledge compilers generate det... 1 0 0 0 0 0
10774 Algebraic infinite delooping and derived desta... working prime field characteristic two consequ... 0 0 1 0 0 0
10775 WHAI: Weibull Hybrid Autoencoding Inference fo... train inference network jointly deep generativ... 0 0 0 1 0 0
10776 Constraining the Dynamics of Deep Probabilisti... introduce novel generative formulation deep pr... 0 0 0 1 0 0
10777 Democratizing Design for Future Computing Plat... information communications technology continue... 1 0 0 0 0 0
10778 EstimatedWold Representation and Spectral Dens... secondorder dependence structure purely nondet... 0 0 1 0 0 0
10779 A Polynomial Time Match Test for Large Classes... present paper study match test extended regula... 1 0 0 0 0 0
10780 Anomalous Magnetism for Dirac Electrons in Two... spinspin correlation function response low ele... 0 1 0 0 0 0
10781 Estimating Average Treatment Effects with a Do... consider estimating average treatment effects ... 0 0 0 1 0 0
10782 Emotion Detection and Analysis on Social Media paper address problem detection classification... 1 0 0 0 0 0
10783 HotFlip: White-Box Adversarial Examples for Te... propose efficient method generate whitebox adv... 1 0 0 0 0 0
10784 Towards fully commercial, UV-compatible fiber ... present analyze two pathways produce commercia... 0 1 0 0 0 0
10785 Convex Parameterizations and Fidelity Bounds f... model instability poor prediction longterm beh... 1 0 1 0 0 0
10786 Rydberg states of helium in electric and magne... spectroscopic study rydberg states helium n ma... 0 1 0 0 0 0
10787 Change-point inference on volatility in noisy ... work concerned tests structural breaks spot vo... 0 0 1 1 0 0
10788 Double-diffusive erosion of the core of Jupiter present direct numerical simulations transport... 0 1 0 0 0 0
10789 Classifying Exoplanets with Gaussian Mixture M... recently odrzywolek rafelski arxiv found three... 0 1 0 0 0 0
10790 Competing effects of Hund's splitting and symm... study effect uniform external magnetization pw... 0 1 0 0 0 0
10791 Partition function of Chern-Simons theory as r... calculate qdimension kth cartan power fundamen... 0 0 1 0 0 0
10792 Task Recommendation in Crowdsourcing Based on ... workers participating crowdsourcing platform w... 1 0 0 0 0 0
10793 Elliptic Weight Functions and Elliptic q-KZ Eq... using representation theory elliptic quantum g... 0 0 1 0 0 0
10794 Formal duality in finite cyclic groups notion formal duality finite abelian groups ap... 0 0 1 0 0 0
10795 Nonlinear Dynamics of Binocular Rivalry: A Com... eyes presented image brain processes view sing... 0 0 0 0 1 0
10796 Nonstandard Analysis and Constructivism! almost two decades ago wattenberg published pa... 0 0 1 0 0 0
10797 Text-Independent Speaker Verification Using 3D... paper novel method using convolutional neural ... 1 0 0 0 0 0
10798 Sequential identification of nonignorable miss... nonignorable missing data likelihoodbased infe... 0 0 1 1 0 0
10799 Image Stitching by Line-guided Local Warping w... lowtextured image stitching remains challengin... 1 0 0 0 0 0
10800 Large-scale Nonlinear Variable Selection via K... propose new method input variable selection no... 0 0 0 1 0 0
10801 Couple microscale periodic patches to simulate... article proposes new way construct computation... 0 0 1 0 0 0
10802 Determinantal Point Processes for Mini-Batch D... study minibatch diversification scheme stochas... 1 0 0 1 0 0
10803 Proton-induced halo formation in charged meteors despite long history meteor science understand... 0 1 0 0 0 0
10804 Generalised Seiberg-Witten equations and almos... article study generalisation seibergwitten equ... 0 0 1 0 0 0
10805 Enhanced Photon Traps for Hyper-Kamiokande hyperkamiokande next generation large water ch... 0 1 0 0 0 0
10806 A Deep Reinforcement Learning Chatbot (Short V... present milabot deep reinforcement learning ch... 0 0 0 1 0 0
10807 A Recurrent Neural Network for Sentiment Quant... quantification supervised learning task consis... 0 0 0 1 0 0
10808 Data Noising as Smoothing in Neural Network La... data noising effective technique regularizing ... 1 0 0 0 0 0
10809 Optical Flow-based 3D Human Motion Estimation ... present generative method estimate human motio... 1 0 0 0 0 0
10810 Quasi-ordered Rings quasiorder binary reflexive transitive relatio... 0 0 1 0 0 0
10811 Mean-Field Controllability and Decentralized S... paper study controllability stabilizability pr... 1 0 1 0 0 0
10812 Sharp total variation results for maximal func... article prove total variation inequalities max... 0 0 1 0 0 0
10813 Optimal Bipartite Network Clustering study bipartite community detection networks g... 1 0 0 1 0 0
10814 End-to-end Recurrent Neural Network Models for... paper demonstrates endtoend neural network arc... 1 0 0 0 0 0
10815 The Reduced PC-Algorithm: Improved Causal Stru... consider task estimating highdimensional direc... 0 0 0 1 1 0
10816 Theoretical analysis of the electron bridge pr... investigate deexcitation th nucleus via excita... 0 1 0 0 0 0
10817 Memory in de Sitter space and BMS-like supertr... well known memory effect flat spacetime parame... 0 1 0 0 0 0
10818 Data-Driven Estimation Of Mutual Information B... consider problem estimating mutual information... 1 0 0 1 0 0
10819 Wigner functions for gauge equivalence classes... wigner functions forming phase space represent... 0 0 1 0 0 0
10820 Segmentation of Intracranial Arterial Calcific... intracranial carotid artery calcification icac... 1 0 0 0 0 0
10821 HTMoL: full-stack solution for remote access, ... field structural bioinformatics seen significa... 1 0 0 0 0 0
10822 General auction method for real-valued optimal... auction method developed bertsekas late relaxa... 1 0 1 0 0 0
10823 Force sensing with an optically levitated char... levitated optomechanics showing potential prec... 0 1 0 0 0 0
10824 Unveiling Eilenberg-type Correspondences: Birk... purpose present paper show eilenbergtype corre... 1 0 1 0 0 0
10825 Detecting transit signatures of exoplanetary r... context theoretically possible rings formed ar... 0 1 0 0 0 0
10826 MatlabCompat.jl: helping Julia understand Your... scientific legacy code matlaboctave compatible... 1 0 0 0 0 0
10827 Extending the topological analysis and seeking... customary conceive interactions constituents m... 0 1 0 0 0 0
10828 Deep Uncertainty Surrounding Coastal Flood Ris... future sealevel rise drives severe risks many ... 0 1 0 0 0 0
10829 Bounds on the Approximation Power of Feedforwa... approximation power general feedforward neural... 0 0 0 1 0 0
10830 Non-classification of free Araki-Woods factors... define standard borel space free arakiwoods fa... 0 0 1 0 0 0
10831 Data-Driven Learning and Planning for Environm... robots autonomous underwater vehicles auvs aut... 1 0 0 0 0 0
10832 Global spectral graph wavelet signature for su... paper present spectral graph wavelet approach ... 1 0 0 0 0 0
10833 Learning Rates of Regression with q-norm Loss ... paper studies robust regression problems assoc... 0 0 1 1 0 0
10834 Instability, rupture and fluctuations in thin ... thin liquid films ubiquitous natural phenomena... 0 1 0 0 0 0
10835 Fractional Patlak-Keller-Segel equations for c... long range movement certain organisms presence... 0 1 0 0 0 0
10836 Adaptive Risk Bounds in Univariate Total Varia... study trend filtering relatively recent method... 0 0 1 1 0 0
10837 Assessment of First-Principles and Semiempiric... search reliable methodology prediction light a... 0 1 0 0 0 0
10838 Regularizing deep networks using efficient lay... adversarial training shown regularize deep neu... 1 0 0 1 0 0
10839 Improving Dynamic Analysis of Android Apps Usi... android os become popular mobile operating sys... 1 0 0 0 0 0
10840 Process Monitoring Using Maximum Sequence Dive... process monitoring involves tracking systems b... 0 0 0 1 0 0
10841 Some generalizations of Kannan's theorems via ... article go discuss various proper extensions k... 0 0 1 0 0 0
10842 On Exact Sequences of the Rigid Fibrations biss investigated kind fibration called rigid ... 0 0 1 0 0 0
10843 Analytic Gradients for Complete Active Space P... analytic gradient routines desirable feature q... 0 1 0 0 0 0
10844 Northern sky Galactic Cosmic Ray anisotropy be... report analysis tev largescale sidereal anisot... 0 1 0 0 0 0
10845 Count-ception: Counting by Fully Convolutional... counting objects digital images process replac... 1 0 0 1 0 0
10846 A robust inverse scattering transform for the ... propose modification standard inverse scatteri... 0 1 0 0 0 0
10847 Admissible Bayes equivariant estimation of loc... paper investigates estimation mean vector inva... 0 0 1 1 0 0
10848 A proof theoretic study of abstract terminatio... define variety abstract termination principles... 1 0 1 0 0 0
10849 Why exomoons must be rare? problem search satellites exoplanets exomoons ... 0 1 0 0 0 0
10850 Propagation of regularity in $L^p$-spaces for ... consider following kolmogorov type hypoellipti... 0 0 1 0 0 0
10851 On Relation between Constraint Answer Set Prog... constraint answer set programming promising re... 1 0 0 0 0 0
10852 The w-effect in interferometric imaging: from ... modern radio telescopes square kilometre array... 0 1 0 0 0 0
10853 Large Scale Graph Learning from Smooth Signals graphs prevalent tool data science model inher... 1 0 0 1 0 0
10854 Power Plant Performance Modeling with Concept ... power plant complex nonstationary system tradi... 1 0 0 1 0 0
10855 Does putting your emotions into words make you... studies affect labeling ie putting feelings wo... 1 0 0 0 0 0
10856 Axiomatizing Epistemic Logic of Friendship via... paper positively solves open problem possible ... 1 0 1 0 0 0
10857 A novel approach to the Lindelöf hypothesis lindelfs hypothesis one important open problem... 0 0 1 0 0 0
10858 An Overview of Recent Solutions to and Lower B... complex systems wide variety areas biological ... 1 1 0 0 0 0
10859 On Tackling the Limits of Resolution in SAT So... practical success boolean satisfiability sat s... 1 0 0 0 0 0
10860 Penalized Estimation in Additive Regression wi... additive regression provides extension linear ... 0 0 1 1 0 0
10861 Towards Quality Advancement of Underwater Mach... underwater machine vision attracted significan... 1 0 0 0 0 0
10862 Linking Sketches and Diagrams to Source Code A... recent studies shown sketches diagrams play im... 1 0 0 0 0 0
10863 Parsimonious Data: How a single Facebook like ... recently two influential pnas papers shown pre... 1 0 0 0 0 0
10864 The Hidden Vulnerability of Distributed Learni... machine learning going era celebrated success ... 0 0 0 1 0 0
10865 walk2friends: Inferring Social Links from Mobi... development positioning technologies resulted ... 1 0 0 0 0 0
10866 An Optimal Algorithm for Online Unconstrained ... consider basic problem interface two fundament... 0 0 0 1 0 0
10867 Modeling Grasp Motor Imagery through Deep Cond... grasping complex process involving knowledge o... 1 0 0 1 0 0
10868 Designing an Effective Metric Learning Pipelin... stateoftheart speaker diarization systems util... 1 0 0 0 0 0
10869 Mining Application-aware Community Organizatio... social networks typical attributed networks no... 1 1 0 0 0 0
10870 A spin-gapped Mott insulator with the dimeric ... c nuclear magnetic resonance measurements perf... 0 1 0 0 0 0
10871 Li doping kagome spin liquid compounds herbertsmithite zndoped barlowite two compound... 0 1 0 0 0 0
10872 DxNAT - Deep Neural Networks for Explaining No... nonrecurring traffic congestion caused tempora... 0 0 0 1 0 0
10873 Facets of a mixed-integer bilinear covering se... derive closed form description convex hull mix... 0 0 1 0 0 0
10874 Universal partial sums of Taylor series as fun... v nestoridis conjectured omega simply connecte... 0 0 1 0 0 0
10875 Free Cooling of a Granular Gas in Three Dimens... granular gases dilute ensembles particles rand... 0 1 0 0 0 0
10876 The SCUBA-2 Ambitious Sky Survey: a catalogue ... scuba ambitious sky survey sassy composed shal... 0 1 0 0 0 0
10877 A stable and optimally convergent LaTIn-Cut Fi... paper propose novel unfitted finite element me... 1 0 0 0 0 0
10878 Non Fermi liquid behavior and continuously tun... employ recently developed computational manybo... 0 1 0 0 0 0
10879 Beyond Parity: Fairness Objectives for Collabo... study fairness collaborativefiltering recommen... 1 0 0 1 0 0
10880 Blind Regression via Nearest Neighbors under L... consider setup nonparametric blind regression ... 0 0 1 1 0 0
10881 Metalearning for Feature Selection general formulation optimization problems vari... 1 0 0 1 0 0
10882 Variability-Aware Design for Energy Efficient ... portable computing devices include tablets sma... 1 0 0 0 0 0
10883 Quantifying Performance of Bipedal Standing wi... spinal cord stimulation enabled humans motor c... 1 0 0 1 0 0
10884 A framework for on-line calibration of LINAC d... general description online procedure calibrati... 0 1 0 0 0 0
10885 People on Media: Jointly Identifying Credible ... media seems become partisan often providing bi... 1 0 0 1 0 0
10886 Towards Provably Safe Mixed Transportation Sys... currently environment fraction automated vehic... 1 0 0 0 0 0
10887 Streaming kernel regression with provably adap... consider problem streaming kernel regression o... 1 0 0 1 0 0
10888 Estimating reducible stochastic differential e... stochastic differential equations sdes increas... 0 0 0 1 0 0
10889 Deep Tensor Encoding learning encoding feature vectors terms overco... 1 0 0 1 0 0
10890 hMDAP: A Hybrid Framework for Multi-paradigm D... propose hmdap hybrid framework largescale data... 1 0 0 0 0 0
10891 Robust Unsupervised Domain Adaptation for Neur... novel approach unsupervised domain adaptation ... 1 0 0 1 0 0
10892 A Convolutional Neural Network For Cosmic Stri... present detail convolutional neural network us... 0 1 0 0 0 0
10893 Improving Palliative Care with Deep Learning improving quality endoflife care hospitalized ... 1 0 0 1 0 0
10894 Scalable Online Convolutional Sparse Coding convolutional sparse coding csc improves spars... 1 0 0 0 0 0
10895 Improving Speech Related Facial Action Unit Re... challenging recognize facial action unit au sp... 1 0 0 0 0 0
10896 Re-purposing Compact Neuronal Circuit Policies... propose effective method creating interpretabl... 1 0 0 1 0 0
10897 On the Expected Value of the Determinant of Ra... present simple yet useful result expected valu... 1 0 1 0 0 0
10898 A hyperbolic-equation system approach for magn... new approach using hyperbolicequation system h... 0 1 0 0 0 0
10899 Solving delay differential equations through R... general easytocode numerical method based radi... 0 0 1 0 0 0
10900 Learning Filter Functions in Regularisers by M... learning approaches recently become popular fi... 0 0 1 0 0 0
10901 Riemann-Theta Boltzmann Machine general boltzmann machine continuous visible d... 1 0 0 1 0 0
10902 A Joint Quantile and Expected Shortfall Regres... introduce novel regression framework simultane... 0 0 1 1 0 0
10903 Poincaré Embeddings for Learning Hierarchical ... representation learning become invaluable appr... 1 0 0 1 0 0
10904 Randomly cross-linked polymer models polymer models used describe chromatin folded ... 0 1 0 0 0 0
10905 Multi-Stage Complex Contagions in Random Multi... complex contagion models developed understand ... 1 0 0 0 0 0
10906 Secrecy and Robustness for Active Attack in Se... network coding discuss effect sequential error... 1 0 0 0 0 0
10907 SLAMBooster: An Application-aware Controller f... simultaneous localization mapping slam problem... 1 0 0 0 0 0
10908 Modeling sepsis progression using hidden Marko... characterizing patients progression stages sep... 0 0 0 1 1 0
10909 Optimized Bacteria are Environmental Predictio... experimentalists observed phenotypic variabili... 0 0 0 0 1 0
10910 Photo-realistic Facial Texture Transfer style transfer methods achieved significant su... 1 0 0 0 0 0
10911 Segmentation of skin lesions based on fuzzy cl... paper proposes innovative method segmentation ... 1 0 0 1 0 0
10912 Deep Reinforcement Learning for Vision-Based R... paper explore deep reinforcement learning algo... 1 0 0 1 0 0
10913 Incremental Transductive Learning Approaches t... key issues pertaining collection epidemic dise... 1 0 0 0 0 0
10914 Millimeter-scale layered MoSe2 grown on sapphi... molecular beam epitaxy technique used deposit ... 0 1 0 0 0 0
10915 Bootstrapping incremental dialogue systems fro... investigate endtoend method automatically indu... 1 0 0 0 0 0
10916 Learning Deep Latent Spaces for Multi-Label Cl... multilabel classification practical yet challe... 1 0 0 0 0 0
10917 Encoding Multi-Resolution Brain Networks Using... main goal study extract set brain networks mul... 0 0 0 1 0 0
10918 Improper Filter Reduction combinatorial filters subject increasing inter... 1 0 0 0 0 0
10919 Collective Dynamics of Self-propelled Semiflex... collective behavior active semiflexible filame... 0 0 0 0 1 0
10920 Two sources of poor coverage of confidence int... compare following two sources poor coverage po... 0 0 1 1 0 0
10921 On the ERM Principle with Networked Data networked data every training example involves... 1 0 0 1 0 0
10922 Front interaction induces excitable behavior spatially extended systems support local trans... 0 1 1 0 0 0
10923 Characterization of optimal carbon nanotubes u... carbon nanotubes modeled point configurations ... 0 1 1 0 0 0
10924 The Closer the Better: Similarity of Publicati... investigate similarities pairs articles cocite... 1 0 0 0 0 0
10925 MP2-F12 Basis Set Convergence for the S66 Nonc... complementary auxiliary basis sets f explicitl... 0 1 0 0 0 0
10926 Quantized Minimum Error Entropy Criterion comparing traditional learning criteria mean s... 1 0 0 1 0 0
10927 Traffic Flow Forecasting Using a Spatio-Tempor... novel predictor traffic flow forecasting namel... 1 0 0 1 0 0
10928 AlteregoNets: a way to human augmentation person dependent network called alterego net p... 1 0 0 0 0 0
10929 Modalities in homotopy type theory univalent homotopy type theory hott may seen l... 1 0 1 0 0 0
10930 Exponentially Slow Heating in Short and Long-r... analyze dynamics periodicallydriven floquet ha... 0 1 0 0 0 0
10931 High moments of the Estermann function aqinmathbbq estermann function defined dsaqsum... 0 0 1 0 0 0
10932 On Game-Theoretic Risk Management (Part Three)... gametheoretic risk management framework put fo... 0 0 1 1 0 0
10933 PKS 1954-388: RadioAstron Detection on 80,000 ... present results multiwavelength study blazar p... 0 1 0 0 0 0
10934 Smart Assessment of and Tutoring for Computati... one major hurdles toward automatic semantic un... 1 0 0 0 0 0
10935 EasyInterface: A toolkit for rapid development... paper describe easyinterface opensource toolki... 1 0 0 0 0 0
10936 The Cramér-Rao inequality on singular statisti... introduce notion essential tangent bundle para... 0 0 1 1 0 0
10937 Autotune: A Derivative-free Optimization Frame... machine learning applications often require hy... 0 0 0 1 0 0
10938 Reduced fusion systems over $p$-groups with ab... finish classification begun two earlier papers... 0 0 1 0 0 0
10939 Deep learning for studies of galaxy morphology establishing accurate morphological measuremen... 0 1 0 0 0 0
10940 A Diversified Multi-Start Algorithm for Uncons... multistart algorithms common effective tool me... 1 0 0 0 0 0
10941 Low-rank and Sparse NMF for Joint Endmembers' ... estimation number endmembers existing scene co... 1 0 0 1 0 0
10942 On the Necessity of Structured Codes for Commu... problem threeuser multipleaccess channel mac n... 1 0 0 0 0 0
10943 Historical Review of Recurrence Plots last two decades recurrence plots rps introduc... 0 1 0 0 0 0
10944 The Meta Distribution of the SIR for Cellular ... meta distribution signaltointerference ratio s... 1 0 0 0 0 0
10945 Temperature induced transition from p-n to n-n... transport characteristics across pulsed laser ... 0 1 0 0 0 0
10946 N-body simulations of gravitational redshifts ... large redshift surveys galaxies clusters provi... 0 1 0 0 0 0
10947 Few-Shot Learning with Metric-Agnostic Conditi... learning high quality class representations ex... 0 0 0 1 0 0
10948 Gradient Coding from Cyclic MDS Codes and Expa... gradient coding technique straggler mitigation... 0 0 0 1 0 0
10949 Commissioning of te China-ADS injector-I testi... mev acceleratordriven subcritical system ads i... 0 1 0 0 0 0
10950 Impact of the Global Crisis on SME Internal vs... changes capital structure global financial cri... 0 0 0 1 0 0
10951 Dipole force free optical control and cooling ... evanescent field surrounding nanoscale optical... 0 1 0 0 0 0
10952 Control refinement for discrete-time descripto... analysis industrial processes modelled descrip... 1 0 0 0 0 0
10953 Beam Based RF Voltage Measurements and Longitu... increasing proton beam power neutrino producti... 0 1 0 0 0 0
10954 A framework for quantitative modeling and anal... paper presents approach quantitative modeling ... 1 0 0 0 0 0
10955 Generating large misalignments in gapped and b... many protostellar gapped binary discs show mis... 0 1 0 0 0 0
10956 Bilinear approach to the supersymmetric Gardne... study supersymmetric version gardner equation ... 0 1 0 0 0 0
10957 The Effect of Focal Distance, Age, and Brightn... many augmented reality ar applications operate... 1 0 0 0 0 0
10958 Small-amplitude steady water waves with critic... problem twodimensional steady water waves vort... 0 0 1 0 0 0
10959 Emergence of Leadership in Communication study neuroinspired model mimics discussion in... 0 1 0 0 0 0
10960 Throughput-Improving Control of Highways Facin... article study problem controlling highway segm... 1 0 0 0 0 0
10961 Deep Learning for Accelerated Ultrasound Imaging portable ultrafast ultrasound us imaging syste... 1 0 0 1 0 0
10962 Adaptive Estimation for Nonlinear Systems usin... paper extends conventional general framework o... 1 0 0 0 0 0
10963 Weak saturation and weak amalgamation property two modeltheoretic concepts weak saturation we... 0 0 1 0 0 0
10964 Perturbation problems in homogenization of ham... paper concerned behavior ergodic constant asso... 0 0 1 0 0 0
10965 Chimera states: Effects of different coupling ... collective behavior among coupled dynamical un... 0 1 0 0 0 0
10966 Human Activity Recognition using Recurrent Neu... human activity recognition using smart home se... 0 0 0 1 0 0
10967 Eigenvalues of elliptic operators with density consider eigenvalue problems elliptic operator... 0 0 1 0 0 0
10968 A projection pursuit framework for testing gen... article develops framework testing general hyp... 0 0 1 1 0 0
10969 On the impact of quantum computing technology ... quantum computing technologies become hot topi... 1 0 0 0 0 0
10970 Local Monotonic Attention Mechanism for End-to... recently encoderdecoder neural networks shown ... 1 0 0 0 0 0
10971 Unifying Value Iteration, Advantage Learning, ... approximate dynamic programming algorithms app... 1 0 0 1 0 0
10972 Diffusion Convolutional Recurrent Neural Netwo... spatiotemporal forecasting various application... 1 0 0 1 0 0
10973 Machine Learning for Networking: Workflow, Adv... recently machine learning used every possible ... 1 0 0 0 0 0
10974 The WAGGS project - I. The WiFeS Atlas of Gala... present wifes atlas galactic globular cluster ... 0 1 0 0 0 0
10975 Going Viral: Stability of Consensus-Driven Ado... spread new products networked population often... 1 0 0 0 0 0
10976 What's In A Patch, I: Tensors, Differential Ge... develop linear algebraic framework shapefromsh... 1 0 0 0 0 0
10977 Counterexample to Gronwall's Conjecture present projectively invariant description pla... 0 0 1 0 0 0
10978 Urban Swarms: A new approach for autonomous wa... modern cities growing ecosystems face new chal... 1 0 0 0 0 0
10979 An Algorithm of Parking Planning for Smart Par... many vehicles world number vehicles increasing... 1 0 0 0 0 0
10980 Classical Control, Quantum Circuits and Linear... describe categorical models circuitbased quant... 1 0 1 0 0 0
10981 Unifying Map and Landmark Based Representation... works presents formulation visual navigation u... 1 0 0 0 0 0
10982 Accounting for Uncertainty About Past Values I... since population projections cases produced us... 0 0 0 1 0 0
10983 Periodic solutions of a perturbed Kepler probl... existence elliptic periodic solutions perturbe... 0 0 1 0 0 0
10984 Removal of Narrowband Interference (PLI in ECG... suppression interference narrowband frequency ... 0 0 1 1 0 0
10985 Global regularity and fast small scale formati... well known euler vortex patch mathbbr remain r... 0 0 1 0 0 0
10986 Effective interaction in a non-Fermi liquid co... effective interaction itinerant spin degrees f... 0 1 0 0 0 0
10987 Planning with Verbal Communication for Human-R... human collaborators coordinate effectively act... 1 0 0 0 0 0
10988 Magnon Condensation and Spin Superfluidity consider phenomenon boseeinstein condensation ... 0 1 0 0 0 0
10989 Electroweak Vacuum Metastability and Low-scale... study stability electroweak vacuum lowscale in... 0 1 0 0 0 0
10990 Spectral selectivity in capillary dye lasers explore spectral properties capillary dye lase... 0 1 0 0 0 0
10991 The Mechanism of Electrolyte Gating on High-Tc... electrolyte gating widely used induce large ca... 0 1 0 0 0 0
10992 Invariant theory of a special group action on ... past years action mathrmpglmathbb fq set irred... 0 0 1 0 0 0
10993 TIP: Typifying the Interpretability of Procedures provide novel notion means interpretable looki... 1 0 0 1 0 0
10994 Differences in 1D electron plasma wake field a... laboratory astrophysical situations plasma wak... 0 1 0 0 0 0
10995 Estimating network memberships by simplex vert... consider undirected mixed membership network n... 0 0 0 1 0 0
10996 Non-singular Green's functions for the unbound... paper derive nonsingular greens functions unbo... 0 1 1 0 0 0
10997 Evolutionary phases of gas-rich galaxies in a ... report survey molecular gas galaxies xmmxcs j ... 0 1 0 0 0 0
10998 An iterative ensemble Kalman filter in presenc... iterative ensemble kalman filter ienkf determi... 0 1 0 1 0 0
10999 A Bayesian algorithm for detecting identity ma... statistical algorithm categorizing different t... 1 0 0 1 0 0
11000 Adaptive Stimulus Selection in ERP-Based Brain... braincomputer interfaces bcis provide alternat... 1 0 0 0 0 0
11001 Bursting dynamics of viscous film without circ... experimentally investigate bursting dynamics c... 0 1 0 0 0 0
11002 Low-energy electron-positron collider to searc... discuss low energy ee collider production yet ... 0 1 0 0 0 0
11003 Følner functions and the generic Word Problem ... introduce investigate different definitions ef... 0 0 1 0 0 0
11004 Differences between Health Related News Articl... study examine collection healthrelated news ar... 1 0 0 0 0 0
11005 A Numerical Study of Carr and Lee's Correlatio... seminal work robust replication volatility der... 0 0 0 0 0 1
11006 Functional renormalization group study of para... explore effects asymmetry hopping parameters d... 0 1 0 0 0 0
11007 Phenotype-based and Self-learning Inter-indivi... purpose propose phenotypebased artificial inte... 0 0 0 1 0 0
11008 Generative adversarial network-based approach ... paper address problem reconstructing timedomai... 0 0 0 1 0 0
11009 The Braid Shelf braids binfty equipped selfdistributive operat... 0 0 1 0 0 0
11010 Ultra-Fast Relaxation, Decoherence and Localiz... exciton relaxation dynamics photoexcited elect... 0 1 0 0 0 0
11011 Towards Reverse-Engineering Black-Box Neural N... many deployed learned models black boxes given... 1 0 0 1 0 0
11012 Learning Dexterous In-Hand Manipulation use reinforcement learning rl learn dexterous ... 1 0 0 1 0 0
11013 Index transforms with Weber type kernels new index transforms weber type kernels consis... 0 0 1 0 0 0
11014 Computationally Efficient Robust Estimation of... many conventional statistical procedures extre... 1 0 0 1 0 0
11015 Resource Sharing Among mmWave Cellular Service... increasing interest use millimeter wave bands ... 1 0 0 0 0 0
11016 How to Generate Pseudorandom Permutations Over... recent results alagic russell given evidence e... 1 0 1 0 0 0
11017 On Weyl's asymptotics and remainder term for t... examine asymptotics spectral counting function... 0 0 1 0 0 0
11018 Virtual plane-wave imaging via Marchenko redat... marchenko redatuming novel scheme used retriev... 0 1 0 0 0 0
11019 Probing the local nature of excitons and plasm... excitons plasmons two fundamental types collec... 0 1 0 0 0 0
11020 Flavour composition and entropy increase of co... investigate evolution flavour composition cosm... 0 1 0 0 0 0
11021 Random non-Abelian G-circulant matrices. Spect... analyse limiting behavior eigenvalue singular ... 0 0 1 0 0 0
11022 Fog Robotics for Efficient, Fluent and Robust ... active communication robots humans essential e... 1 0 0 0 0 0
11023 An Estimation of the Star Formation Rate in th... present results investigation starforming pote... 0 1 0 0 0 0
11024 Deep Neural Networks - A Brief History introduction deep neural networks history 1 0 0 0 0 0
11025 An advanced active quenching circuit for ultra... commercial photoncounting modules based active... 1 1 0 0 0 0
11026 Shannon entropy: a study of confined hydrogeni... shannon entropy atomic molecular chemical phys... 0 1 0 0 0 0
11027 Exploring Halo Substructure with Giant Stars. ... thanks modern sky surveys twenty stellar strea... 0 1 0 0 0 0
11028 Universal fitness dynamics through an adaptive... fitness species determines abundance survival ... 0 0 0 0 1 0
11029 Integral and measure-turnpike properties for i... first derive general integralturnpike property... 0 0 1 0 0 0
11030 Optimal rate of convergence in Stratified Bous... study vortex patch problem dstratified naviers... 0 0 1 0 0 0
11031 On indirect noise in multicomponent nozzle flows onedimensional unsteady nozzle flow modelled i... 0 1 0 0 0 0
11032 A note on conditional covariance matrices for ... short note provide analytical formula conditio... 0 0 1 1 0 0
11033 The Passive Eavesdropper Affects my Channel: S... channelreciprocity based key generation crkg g... 1 0 1 0 0 0
11034 On dimensions supporting a rational projective... rational projective plane mathbbqp simply conn... 0 0 1 0 0 0
11035 Implicit Causal Models for Genome-wide Associa... progress probabilistic generative models accel... 1 0 0 1 0 0
11036 Vector Quantization as Sparse Least Square Opt... vector quantization aims form new vectorsmatri... 1 0 0 1 0 0
11037 The role of spatial scale in joint optimisatio... effects spatial scale results optimisation tra... 0 1 0 0 0 0
11038 Recovery Guarantees for One-hidden-layer Neura... paper consider regression problems onehiddenla... 1 0 0 1 0 0
11039 Attention-based Information Fusion using Multi... rising number interconnected devices sensors m... 1 0 0 1 0 0
11040 Kharita: Robust Map Inference using Graph Span... widespread availability gps information everyd... 1 0 0 0 0 0
11041 DeepProbe: Information Directed Sequence Under... information extraction user intention identifi... 1 0 0 1 0 0
11042 Dictionary-based Monitoring of Premature Ventr... cardiovascular diseases cvds prevalent across ... 1 0 0 0 0 0
11043 Temporal Multimodal Fusion for Video Emotion C... paper addresses question emotion classificatio... 1 0 0 0 0 0
11044 Bonding charge distribution analysis of molecu... charge transfer among individual atoms molecul... 0 1 0 0 0 0
11045 Shatter functions with polynomial growth rates study single value shatter function set system... 1 0 1 0 0 0
11046 On Newstead's Mayer-Vietoris argument in chara... consider moduli space framed flat u connection... 0 0 1 0 0 0
11047 Hunting high and low: Disentangling primordial... nongaussianities dynamical origin disentangled... 0 1 0 0 0 0
11048 Measure Theory and Integration By and For the ... measure theory integration exposed clear aim h... 0 0 1 0 0 0
11049 Target Tracking for Contextual Bandits: Applic... propose contextualbandit approach demand side ... 1 0 0 1 0 0
11050 Quantizing deep convolutional networks for eff... present overview techniques quantizing convolu... 0 0 0 1 0 0
11051 Angle-dependent electron spin resonance of YbR... present new experimental approach investigate ... 0 1 0 0 0 0
11052 Role of Kohn-Sham Kinetic Energy Density in De... positive definite kohnsham kinetic energykske ... 0 1 0 0 0 0
11053 BB_twtr at SemEval-2017 Task 4: Twitter Sentim... paper describe attempt producing stateoftheart... 1 0 0 1 0 0
11054 Protein Mutation Stability Ternary Classificat... discerning mutation affects stability protein ... 0 0 0 0 1 0
11055 Starspot activity and superflares on solar-typ... analyze correlation starspots superflares sola... 0 1 0 0 0 0
11056 A Contractive Approach to Separable Lyapunov F... monotone systems preserve partial ordering sta... 1 0 0 0 0 0
11057 Isotopic ratios in outbursting comet C/2015 ER61 isotopic ratios comets critical understanding ... 0 1 0 0 0 0
11058 Muon detector for the COSINE-100 experiment cosine dark matter search experiment started t... 0 1 0 0 0 0
11059 Levitated optomechanics with a fiber Fabry-Per... recent years quantum phenomena experimentally ... 0 1 0 0 0 0
11060 Spatial cytoskeleton organization supports tar... efficiency intracellular cargo transport speci... 0 1 0 0 0 0
11061 Backdoor Embedding in Convolutional Neural Net... deep learning models consistently outperformed... 0 0 0 1 0 0
11062 Chiral and Topological Orbital Magnetism of Sp... using semiclassical greens function formalism ... 0 1 0 0 0 0
11063 The Mira-Titan Universe II: Matter Power Spect... introduce new cosmic emulator matter power spe... 0 1 0 0 0 0
11064 k-Anonymously Private Search over Encrypted Data paper compare performance various homomorphic ... 1 0 0 0 0 0
11065 Stability of Correction Procedure via Reconstr... paper consider burgers equation uncertain boun... 0 0 1 0 0 0
11066 Special Solutions of Bi-Riccati Delay-Differen... delaydifferential equations functional differe... 0 1 1 0 0 0
11067 Signatures of the Kondo effect in VSe2 vse transition metal dichaclogenide chargedens... 0 1 0 0 0 0
11068 A Procedural Texture Generation Framework Base... procedural textures normally generated mathema... 1 0 0 0 0 0
11069 Inward Migration of the TRAPPIST-1 Planets as ... multiple planet systems provide ideal laborato... 0 1 0 0 0 0
11070 Bidirectional Conditional Generative Adversari... conditional generative adversarial networks cg... 1 0 0 1 0 0
11071 Micromagnetic study of a feasibility of the ma... attainability modification apparent magnetic a... 0 1 0 0 0 0
11072 On the exponential large sieve inequality for ... complement argument z garaev several ideas obt... 0 0 1 0 0 0
11073 Excess conduction of YBaCuO point contacts bet... ybacuoag pressure point contacts direct conduc... 0 1 0 0 0 0
11074 Quivers with additive labelings: classificatio... show zamolodchikov dynamics recurrent quiver z... 0 0 1 0 0 0
11075 Harnessing bistability for directional propuls... macroscale robotics systems propulsion control... 1 0 0 0 0 0
11076 Cs nDJ Rydberg-atom macrodimers formed by long... longrange macrodimers formed dstate cesium ryd... 0 1 0 0 0 0
11077 A Brief Review of Galactic Winds galactic winds starforming galaxies play key r... 0 1 0 0 0 0
11078 Transfer Learning for Speech Recognition on a ... endtoend training automated speech recognition... 1 0 0 1 0 0
11079 Information-Propogation-Enhanced Neural Machin... even though sequencetosequence neural machine ... 1 0 0 0 0 0
11080 Neural Machine Translation and Sequence-to-seq... tutorial introduces new powerful set technique... 1 0 0 1 0 0
11081 Uncountable realtime probabilistic classes investigate minimum cases realtime probabilist... 1 0 0 0 0 0
11082 A combinatorial model for the path fibration introduce abstract notion necklical set order ... 0 0 1 0 0 0
11083 A Systematic Evaluation of Static API-Misuse D... application programming interfaces apis often ... 1 0 0 0 0 0
11084 Human life is unlimited - but short human lifespan impenetrable biological upper l... 0 0 0 1 0 0
11085 Weakly- and Semi-Supervised Object Detection w... object detection provided imagelevel labels in... 1 0 0 0 0 0
11086 Coverage Analysis in Millimeter Wave Cellular ... coverage probability user mmwave system depend... 1 0 0 1 0 0
11087 Polar Coding for the Binary Erasure Channel wi... study application polar codes deletion channel... 1 0 1 0 0 0
11088 Efficient Structured Surrogate Loss and Regula... dissertation focus several important problems ... 0 0 0 1 0 0
11089 Optimizing the Coherence of Composite Networks consider connect set disjoint networks optimiz... 1 0 1 0 0 0
11090 Deep Learning based Estimation of Weaving Targ... target tracking estimation unknown weaving tar... 0 0 0 1 0 0
11091 On tangent cones to length minimizers in Carno... give detailed proof facts blowup horizontal cu... 0 0 1 0 0 0
11092 Predict Responsibly: Improving Fairness and Ac... many machine learning applications multiple de... 1 0 0 1 0 0
11093 Approximate and Stochastic Greedy Optimization consider two greedy algorithms minimizing conv... 1 0 1 0 0 0
11094 Phase diagram of the triangular-lattice Potts ... study phase diagram triangularlattice qstate p... 0 1 0 0 0 0
11095 Devam vs. Tamam: 2018 Turkish Elections june turkey held historical election transform... 1 0 0 0 0 0
11096 A Practical Approach to Insertion with Variabl... insertion challenging haptic visual control pr... 1 0 0 0 0 0
11097 Off-axis electron holography of magnetic nanos... lorentz offaxis electron holography technique ... 0 1 0 0 0 0
11098 Predicting interactions between individuals wi... capturing structural temporal aspects interact... 1 0 0 0 0 0
11099 Projected Shadowing-based Data Assimilation article develop algorithms data assimilation b... 0 1 0 0 0 0
11100 Where computer vision can aid physics: dynamic... paper describes new algorithm solar energy for... 0 1 0 0 0 0
11101 On Mimura's extension problem determine group strucure rd homotopy group pig... 0 0 1 0 0 0
11102 On critical and supercritical pseudo-relativis... paper investigate existence nonexistence nontr... 0 0 1 0 0 0
11103 Eye Tracker Accuracy: Quantitative Evaluation ... purpose present new method evaluate accuracy e... 1 0 0 0 0 0
11104 Theoretical Foundations of Forward Feature Sel... feature selection problems arise variety appli... 1 0 0 1 0 0
11105 Robust quantum switch with Rydberg excitations develop approach realize quantum switch rydber... 0 1 0 0 0 0
11106 Non-robust phase transitions in the generalize... pemantle steif provided sharp threshold existe... 0 0 1 0 0 0
11107 The Role of Gender in Social Network Organization digital traces leave behind engaging modern wo... 1 0 0 0 0 0
11108 The Schur Lie-Multiplier of Leibinz Algebras free presentation r f g leibniz algebra g baer... 0 0 1 0 0 0
11109 Did we learn from LLC Side Channel Attacks? A ... work presents new tool verify correctness cryp... 1 0 0 0 0 0
11110 Effects of anisotropy in spin molecular-orbita... consider layered decorated honeycomb lattices ... 0 1 0 0 0 0
11111 Design and experimental test of an optical vor... optical vortex coronagraph ovc one promising w... 0 1 0 0 0 0
11112 Symbolic Computation via Program Transformation symbolic computation important approach automa... 1 0 0 0 0 0
11113 Simulating Dirac models with ultracold atoms i... present general model allowing quantum simulat... 0 1 0 0 0 0
11114 Network analysis of Japanese global business u... network analysis techniques remain rarely used... 1 0 0 0 0 0
11115 A Privacy-preserving Community-based P2P OSNs ... online social networks osns become one importa... 1 0 0 0 0 0
11116 Don't Jump Through Hoops and Remove Those Loop... stochastic variancereduced gradient method svr... 1 0 0 1 0 0
11117 Hierarchical Temporal Representation in Linear... recently studies deep reservoir computing rc h... 1 0 0 1 0 0
11118 Bombieri-Vinogradov for multiplicative functio... partandparcel study multiplicative number theo... 0 0 1 0 0 0
11119 Three-component fermions with surface Fermi ar... topological dirac weyl semimetals host quasipa... 0 1 0 0 0 0
11120 Detecting stochastic inclusions in electrical ... work considers inclusion detection problem ele... 0 0 1 0 0 0
11121 On compact Hermitian manifolds with flat Gaudu... given hermitian manifold mng gauduchon connect... 0 0 1 0 0 0
11122 A Support Tensor Train Machine growing interest extending traditional vectorb... 1 0 0 1 0 0
11123 Diffusion under confinement: hydrodynamic fini... investigate finitesize effects diffusion confi... 0 1 0 0 0 0
11124 SPLBoost: An Improved Robust Boosting Algorith... known boosting interpreted gradient descent te... 1 0 0 1 0 0
11125 Influence of thermal boundary conditions on th... investigate resistive switching behaviour math... 0 1 0 0 0 0
11126 Learning Traffic as Images: A Deep Convolution... paper proposes convolutional neural network cn... 1 0 0 1 0 0
11127 The ZX calculus is a language for surface code... quantum computing moving rapidly point deploym... 1 0 0 0 0 0
11128 Learning One-hidden-layer Neural Networks with... consider problem learning onehiddenlayer neura... 1 0 0 1 0 0
11129 Growth and electronic structure of graphene on... direct growth graphene semiconducting insulati... 0 1 0 0 0 0
11130 Alternative Lagrangians obtained by scalar def... study nonconservative like sodes admitting exp... 0 0 1 0 0 0
11131 Accelerated Primal-Dual Policy Optimization fo... constrained markov decision process cmdp natur... 0 0 0 1 0 0
11132 Toward Common Components for Open Workflow Sys... role scalable highperformance workflows flexib... 1 0 0 0 0 0
11133 On the Sampling Problem for Kernel Quadrature standard kernel quadrature method numerical in... 1 0 0 1 0 0
11134 Zeroth order regular approximation approach to... quasirelativistic twocomponent approach effici... 0 1 0 0 0 0
11135 Trace your sources in large-scale data: one ri... important preprocessing step data analysis pip... 0 0 0 1 0 0
11136 The rigorous derivation of the linear Landau e... consider system n particles interacting via sh... 0 0 1 0 0 0
11137 Fractal dimension and lower bounds for geometr... study complexity geometric problems spaces low... 1 0 0 0 0 0
11138 Global Convergence of Langevin Dynamics Based ... present unified framework analyze global conve... 1 0 1 1 0 0
11139 Eigenvalue Analysis via Kernel Density Estimation paper propose eigenvalue analysis system dynam... 1 0 0 0 0 0
11140 The Saga of KPR: Theoretical and Experimental ... article present brief narration origin overvie... 1 0 0 0 0 0
11141 The computational complexity of integer progra... prove integer programming three quantifier alt... 1 0 1 0 0 0
11142 Robust Kronecker-Decomposable Component Analys... dictionary learning component analysis part on... 1 0 0 1 0 0
11143 Adequacy of the Gradient-Descent Method for Cl... despite wide use machine learning adversarial ... 1 0 0 1 0 0
11144 The way to uncover community structure with co... communities ubiquitous nature society individu... 1 1 0 0 0 0
11145 Stochastic comparisons of the largest claim am... let xlambdaldotsxlambdan dependent nonnegative... 0 0 0 0 0 1
11146 An Achilles' Heel of Term-Resolution termresolution provides elegant mechanism prov... 1 0 0 0 0 0
11147 Tunneling estimates and approximate controllab... article concerned quantitative unique continua... 0 0 1 0 0 0
11148 Optimal Resonant Beam Charging for Electronic ... enable electric vehicles evs access internet i... 1 0 0 0 0 0
11149 An Adaptive Version of Brandes' Algorithm for ... betweenness centralitymeasuring many shortest ... 1 0 0 0 0 0
11150 Kinetic cascade in solar-wind turbulence: 3D3V... understanding nature turbulent fluctuations io... 0 1 0 0 0 0
11151 Gamma-Band Correlations in Primary Visual Cortex neural field theory used quantitatively analyz... 0 0 0 0 1 0
11152 A Branch-and-Bound Algorithm for Checkerboard ... address problem cameratolaserscanner calibrati... 1 0 0 0 0 0
11153 On the mapping of Points of Interest through S... use volunteers emerged lowcost alternative gen... 1 0 0 0 0 0
11154 Complex tensor factorisation with PARAFAC2 for... objective coupling neuronal populations magnit... 1 0 0 0 0 0
11155 A New Approach of Exploiting Self-Adjoint Matr... synchronized measurements large power grid ena... 0 0 0 1 0 0
11156 Bayesian Pool-based Active Learning With Abste... study poolbased active learning abstention fee... 1 0 0 1 0 0
11157 Multiconfigurational Short-Range Density-Funct... many chemical systems cannot described quantum... 0 1 0 0 0 0
11158 Shape recognition of volcanic ash by simple co... shape analyses tephra grains result understand... 1 1 0 0 0 0
11159 The Uranie platform: an Open-source software f... highperformance computing resources constant i... 0 0 0 1 0 0
11160 Learning Convolutional Text Representations fo... visual question answering recently proposed ar... 1 0 0 1 0 0
11161 Cross-stream migration of active particles natural microswimmers interplay swimming activ... 0 1 0 0 0 0
11162 Analysis of the Polya-Gamma block Gibbs sample... article construct twoblock gibbs sampler using... 0 0 1 1 0 0
11163 Direct and Simultaneous Observation of Ultrafa... understanding excited carrier dynamics semicon... 0 1 0 0 0 0
11164 Introducing the Robot Security Framework (RSF)... robots gained relevance society increasingly p... 1 0 0 0 0 0
11165 Statistical Verification of Computational Rapp... rapport plays important role communication hel... 1 0 0 0 0 0
11166 Least models of second-order set theories main theorems paper least transitive model kel... 0 0 1 0 0 0
11167 Characterizing K2 Candidate Planetary Systems ... present nearinfrared spectra candidate planeta... 0 1 0 0 0 0
11168 Binary orbits from combined astrometric and sp... efficient bayesian technique estimation proble... 0 1 0 0 0 0
11169 Gyrotropic Zener tunneling and nonlinear IV cu... investigated tunneling current suspended graph... 0 1 0 0 0 0
11170 Accurate, Efficient and Scalable Graph Embedding graph convolutional network gcn model variants... 1 0 0 0 0 0
11171 A principled methodology for comparing related... many different relatedness measures based inst... 1 0 0 0 0 0
11172 A Game-Theoretic Approach for Runtime Capacity... nowadays many companies available large amount... 1 0 0 0 0 0
11173 Holographic Butterfly Effect and Diffusion in ... investigate butterfly effect charge diffusion ... 0 1 0 0 0 0
11174 High-temperature charge density wave correlati... although superconducting cuprates display char... 0 1 0 0 0 0
11175 A unified deep artificial neural network appro... paper use deep feedforward artificial neural n... 1 0 0 1 0 0
11176 Gradient Flows in Uncertainty Propagation and ... purpose work mostly expository aims elucidate ... 1 0 1 0 0 0
11177 Investigating Simulation-Based Metrics for Cha... simulationbased image quality metrics adapted ... 0 1 0 0 0 0
11178 Temporal Difference Learning with Neural Netwo... temporaldifference learning td sutton function... 0 0 0 1 0 0
11179 First Order Theories of Some Lattices of Open ... show first order theory lattice open sets natu... 1 0 1 0 0 0
11180 Efficient Privacy Preserving Viola-Jones Type ... cloud server spent lot time energy money train... 1 0 0 0 0 0
11181 Lagrangian Statistics for Navier-Stokes Turbul... study smallscale highfrequency turbulent fluct... 0 1 0 0 0 0
11182 Conjunctive management of surface and groundwa... hormozgan province located south iran faces se... 0 1 0 0 0 0
11183 Classification in biological networks with hyp... biological cellular systems often modeled grap... 1 0 0 1 0 0
11184 Pair Correlation and Gap Distributions for Sub... study empirical statistical gap distributions ... 0 0 1 0 0 0
11185 Pay-with-a-Selfie, a human-centred digital pay... mobile payment systems increasingly used simpl... 1 0 0 0 0 0
11186 LCDet: Low-Complexity Fully-Convolutional Neur... deep convolutional neural networks cnn stateof... 1 0 0 0 0 0
11187 Phase transitions of a 2D deformed-AKLT model study spin deformedaklt models square lattice ... 0 1 0 0 0 0
11188 Statistical estimation of superhedging prices consider statistical estimation superhedging p... 0 0 0 0 0 1
11189 Ore's theorem on subfactor planar algebras paper proves irreducible subfactor planar alge... 0 0 1 0 0 0
11190 Machine Learning CICY Threefolds latest techniques neural networks support vect... 0 0 0 1 0 0
11191 Weak lensing deflection of three-point correla... weak gravitational lensing alters apparent sep... 0 1 0 0 0 0
11192 Solitonic dynamics and excitations of the nonl... solitons important significant many fields non... 0 1 1 0 0 0
11193 Supporting Ruled Polygons explore several problems related ruled polygon... 1 0 0 0 0 0
11194 Deep Learning for Real-time Gravitational Wave... recent nobelprizewinning detections gravitatio... 1 1 0 0 0 0
11195 Self-doping effect arising from electron corre... selfdoping effect outer inner cuo planes ops i... 0 1 0 0 0 0
11196 Increased Prediction Accuracy in the Game of C... player selection one important tasks sport cri... 1 0 0 0 0 0
11197 Learning Probabilistic Programs Using Backprop... probabilistic modeling enables combining domai... 1 0 0 1 0 0
11198 Turbulent gas accretion between supermassive b... supermassive black holes known coevolve host g... 0 1 0 0 0 0
11199 Grayscale Image Authentication using Neural Ha... many different approaches neural network based... 1 0 0 0 0 0
11200 Binary Image Selection (BISON): Interpretable ... providing systems ability relate linguistic vi... 1 0 0 0 0 0
11201 Parallelization does not Accelerate Convex Opt... paper study limitations parallelization convex... 0 0 0 1 0 0
11202 Velocity dependence of point masses, moving on... applying principle equivalence analogous einst... 0 1 0 0 0 0
11203 Demand Response in the Smart Grid: the Impact ... demand response programs price incentives migh... 1 0 0 0 0 0
11204 Distributed Nesterov gradient methods over arb... letter introduce distributed nesterov method t... 1 0 0 1 0 0
11205 Casualty Detection from 3D Point Cloud Data fo... one important features mobile rescue robots ab... 1 0 0 0 0 0
11206 Representations of superconformal algebras and... well known normaized characters integrable hig... 0 0 1 0 0 0
11207 Anchored Network Users: Stochastic Evolutionar... solve spectrum scarcity problem cognitive radi... 1 0 0 0 0 0
11208 On the rates of convergence of Parallelized Av... growing interest high dimensional functional d... 0 0 1 1 0 0
11209 On Convergence of Extended Dynamic Mode Decomp... extended dynamic mode decomposition edmd algor... 0 0 1 0 0 0
11210 Random problems with R r version patched issue random sampling functi... 0 0 0 1 0 0
11211 Quasinormal modes as a distinguisher between g... quasinormal modes qnm ringdown phase gravitati... 0 1 0 0 0 0
11212 Polymorphism and the obstinate circularity of ... investigations higherorder type theories relat... 1 0 1 0 0 0
11213 Bayesian significance test for discriminating ... evaluation fbst fully bayesian significance te... 0 0 0 1 0 0
11214 A Minimal Closed-Form Solution for Multi-Persp... propose minimal solution pose estimation using... 1 0 0 0 0 0
11215 Learning K-way D-dimensional Discrete Code For... embedding methods word embedding become pillar... 1 0 0 1 0 0
11216 Attention based convolutional neural network f... rnabinding proteins rbps play crucial roles ma... 1 0 0 1 0 0
11217 Ramp Reversal Memory and Phase-Boundary Scarri... transition metal oxides tmos complex electroni... 0 1 0 0 0 0
11218 A multi-channel approach for automatic microse... presence background noise interference arrival... 1 1 0 0 0 0
11219 Universal in vivo Textural Model for Human Ski... currently diagnosis skin diseases based primar... 0 1 0 0 0 0
11220 Batched Large-scale Bayesian Optimization in H... bayesian optimization bo become effective appr... 1 0 1 1 0 0
11221 Will a Large Economy Be Stable? study networks firms leontief production funct... 0 0 0 0 0 1
11222 Linear Convergence of Accelerated Stochastic G... paper study stochastic gradient descent sgd me... 0 0 1 1 0 0
11223 TRINITY: Coordinated Performance, Energy and T... consistent demand better performance lead inno... 1 0 0 0 0 0
11224 Robust Covariate Shift Prediction with General... covariate shift relaxes widelyemployed indepen... 1 0 0 1 0 0
11225 On the Ergodic Control of Ensembles across smartgrid smartcity applications proble... 1 0 0 0 0 0
11226 Relative merits of Phononics vs. Plasmonics: t... common feature various plasmonic schemes abili... 0 1 0 0 0 0
11227 Memory footprint reduction for the FFT-based v... present method memory footprint reduction fftb... 1 0 0 0 0 0
11228 On a property of the nodal set of least energy... note prove paynetype conjecture behaviour noda... 0 0 1 0 0 0
11229 Smooth contractible threefolds with hyperbolic... aim note give alternative proof theorem koras ... 0 0 1 0 0 0
11230 Ergodic Theorems for Nonconventional Arrays an... paper primarily concerned asymptotic behavior ... 0 0 1 0 0 0
11231 Bellman Gradient Iteration for Inverse Reinfor... paper develops inverse reinforcement learning ... 1 0 0 0 0 0
11232 Fast and Accurate Low-Rank Factorization of Co... consider question accurately efficiently compu... 1 0 0 1 0 0
11233 Quantum gravity corrections to the thermodynam... work derive new kind rainbow functions general... 0 1 0 0 0 0
11234 Non-abelian reciprocity laws and higher Brauer... reinterpret kims nonabelian reciprocity maps a... 0 0 1 0 0 0
11235 Learning with Bounded Instance- and Label-depe... instance labeldependent label noise iln widely... 0 0 0 1 0 0
11236 Community Detection in Hypergraphs, Spiked Ten... study problem community detection hypergraphs ... 1 0 1 1 0 0
11237 Presentations of the saturated cluster modular... give finite presentations saturated cluster mo... 0 0 1 0 0 0
11238 Quantum Query Algorithms are Completely Bounde... prove characterization tquery quantum algorith... 1 0 1 0 0 0
11239 Massively-Parallel Feature Selection for Big Data present parallel forwardbackward pruning pfbp ... 1 0 0 1 0 0
11240 Gravitational Wave Sources from Pop III Stars ... detection gravitational waves gws generated me... 0 1 0 0 0 0
11241 A Markov Chain Model for the Cure Rate of Non-... markovchain model developed purpose estimation... 0 0 0 1 0 1
11242 Query-Efficient Black-box Adversarial Examples... note paper superceded blackbox adversarial att... 1 0 0 1 0 0
11243 Beyond the Erdős Matching Conjecture family mathcal fsubset nchoose k usq fldots fs... 1 0 0 0 0 0
11244 pH dependence of charge multipole moments in p... electrostatic interactions play fundamental ro... 0 1 0 0 0 0
11245 A streamlined, general approach for computing ... theory receptorligand binding equilibria long ... 0 0 0 0 1 0
11246 Dynamics of one-dimensional electrons with bro... spincharge separation known broken many physic... 0 1 0 0 0 0
11247 A Rational Distributed Process-level Account o... inconceivable chaotic world would look humans ... 0 0 0 1 1 0
11248 Automata in the Category of Glued Vector Spaces paper adopt categorytheoretic approach concept... 1 0 0 0 0 0
11249 Second order structural phase transitions, fre... selfconsistent harmonic approximation effectiv... 0 1 0 0 0 0
11250 Prioritized Norms in Formal Argumentation resolve conflicts among norms various nonmonot... 1 0 0 0 0 0
11251 Fast and robust tensor decomposition with appl... develop fast spectral algorithms tensor decomp... 1 0 0 1 0 0
11252 Distributed Testing of Conductance study problem testing conductance setting dist... 1 0 0 0 0 0
11253 Ultra high stiffness and thermal conductivity ... recently single crystalline carbon nitride mat... 0 1 0 0 0 0
11254 Automatic Liver Lesion Detection using Cascade... automatic segmentation liver lesions fundament... 1 0 0 0 0 0
11255 Combinatorial metrics: MacWilliams-type identi... work characterize combinatorial metrics admitt... 1 0 0 0 0 0
11256 The curtain remains open: NGC 2617 continues i... optical nearinfrared photometry optical spectr... 0 1 0 0 0 0
11257 The topology on Berkovich affine lines over co... article give full description topology one dim... 0 0 1 0 0 0
11258 An Original Mechanism for the Acceleration of ... suggest ultrahighenergy uhe cosmic rays crs ma... 0 1 0 0 0 0
11259 Expected Time to Extinction of SIS Epidemic Mo... study breakdown epidemic depends parameters ex... 0 0 0 0 1 0
11260 The gyrokinetic limit for the Vlasov-Poisson s... consider asymptotics large external magnetic f... 0 0 1 0 0 0
11261 Deriving Verb Predicates By Clustering Verbs w... handbuilt verb clusters widely used levin clas... 1 0 0 0 0 0
11262 A propagation tool to connect remote-sensing o... remoteness sun harsh conditions prevailing sol... 0 1 0 0 0 0
11263 Chemical-disorder-caused Medium Range Order in... atoms covalent solids rearrange mediumrange le... 0 1 0 0 0 0
11264 Optimal compromise between incompatible condit... models often defined conditional rather joint ... 0 0 1 1 0 0
11265 Estimation for the Prediction of Point Process... estimation intensity point process considered ... 0 0 1 1 0 0
11266 Chordal SLE$_6$ explorations of a quantum disk consider particular type sqrtliouville quantum... 0 0 1 0 0 0
11267 Optimal rate list decoding over bounded alphab... give new constructions two classes algebraic c... 1 0 1 0 0 0
11268 Quadratic Programming Approach to Fit Protein ... paper investigates problem fitting protein com... 0 0 1 0 0 0
11269 Conditions for the equivalence between IQC and... paper provides link timedomain frequencydomain... 1 0 0 0 0 0
11270 Energy-Efficient Wireless Content Delivery wit... propose intelligent proactive content caching ... 1 0 1 0 0 0
11271 Low- and high-order gravitational harmonics of... juno orbiter provided improved estimates even ... 0 1 0 0 0 0
11272 Language Modeling with Generative Adversarial ... generative adversarial networks gans promising... 0 0 0 1 0 0
11273 How AD Can Help Solve Differential-Algebraic E... characteristic feature differentialalgebraic e... 0 0 1 0 0 0
11274 Secure Coding Practices in Java: Challenges an... java platform thirdparty libraries provide var... 1 0 0 0 0 0
11275 Complex Urban LiDAR Data Set paper presents light detection ranging lidar d... 1 0 0 0 0 0
11276 Blind Source Separation Using Mixtures of Alph... propose new blind source separation algorithm ... 1 0 0 1 0 0
11277 Student and instructor framing in upper-divisi... upperdivision physics students spend much time... 0 1 0 0 0 0
11278 Deep Generative Model using Unregularized Scor... accurate automated detection anomalous samples... 0 0 0 1 0 0
11279 Non-collinear magnetic structure and multipola... magnetic properties pyrochlore iridate materia... 0 1 0 0 0 0
11280 OGLE-2013-BLG-1761Lb: A Massive Planet Around ... report discovery analysis planetary microlensi... 0 1 0 0 0 0
11281 Phase-Aware Single-Channel Speech Enhancement ... present singlechannel phasesensitive speech en... 1 0 0 0 0 0
11282 Reduction and specialization of hyperelliptic ... monic polynomial dx even degree express sqrt l... 0 0 1 0 0 0
11283 Three years of SPHERE: the latest view of the ... spatially resolving immediate surroundings you... 0 1 0 0 0 0
11284 Tensor Methods for Nonlinear Matrix Completion low rank matrix completion lrmc problem low ra... 0 0 0 1 0 0
11285 Visual Interaction Networks glance humans make rich predictions future sta... 1 0 0 0 0 0
11286 Using polarimetry to retrieve the cloud covera... context clouds already detected exoplanetary a... 0 1 0 0 0 0
11287 Dirac nodal lines and induced spin Hall effect... found dirac nodal lines dnls band structures m... 0 1 0 0 0 0
11288 Chaotic Dynamics Enhance the Sensitivity of In... hair cells auditory vestibular systems capable... 0 0 0 0 1 0
11289 A Robot Localization Framework Using CNNs for ... external localization essential part indoor op... 1 0 0 0 0 0
11290 Executable Trigger-Action Comments natural language elements eg todo comments fre... 1 0 0 0 0 0
11291 Cardinal Virtues: Extracting Relation Cardinal... information extraction ie text largely focused... 1 0 0 0 0 0
11292 A Decision Tree Approach to Predicting Recidiv... domestic violence dv global social public heal... 0 0 0 1 0 0
11293 On the Necessity of Superparametric Geometry R... provide numerical evidence demonstrating neces... 1 0 0 0 0 0
11294 Low-dose cryo electron ptychography via non-co... electron ptychography seen recent surge intere... 0 1 1 1 0 0
11295 Efficient Charge Collection in Coplanar Grid R... modeled laserinduced transient current wavefor... 0 1 0 0 0 0
11296 Thermalization near integrability in a dipolar... isolated quantum manybody systems integrable d... 0 1 0 0 0 0
11297 Hausdorff dimension of the boundary of bubbles... first consider additive brownian motion proces... 0 0 1 0 0 0
11298 Inverse mean curvature flow in quaternionic hy... paper complete study started pi evolution inve... 0 0 1 0 0 0
11299 Mosquito detection with low-cost smartphones: ... mosquitoes major vector malaria causing hundre... 1 0 0 1 0 0
11300 Leveraging Crowdsourcing Data For Deep Active ... paper presents generic bayesian framework enab... 1 0 0 1 0 0
11301 Using Convolutional Neural Networks to Count P... paper propose supervised learning system count... 1 0 0 0 0 0
11302 The sharp for the Chang model is small woodin shown measurable woodin cardinal approp... 0 0 1 0 0 0
11303 Weak quadrupole moments collective effects deformed atomic nuclei pres... 0 1 0 0 0 0
11304 Fast and Accurate Semantic Mapping through Geo... propose efficient scalable method incrementall... 1 0 0 0 0 0
11305 Pumping Lemma for Higher-order Languages study pumping lemma wordtree languages generat... 1 0 0 0 0 0
11306 Generative Bridging Network in Neural Sequence... order alleviate data sparsity overfitting prob... 1 0 0 1 0 0
11307 A Rule-Based Computational Model of Cognitive ... cognitive arithmetic studies mental processes ... 1 0 0 0 0 0
11308 Modular categories are not determined by their... arbitrarily many pairwise inequivalent modular... 0 0 1 0 0 0
11309 Change Detection in a Dynamic Stream of Attrib... anomaly detection static networks extensively ... 0 0 0 1 0 0
11310 Local Differential Privacy for Physical Sensor... work explore utility locally differentially pr... 1 0 0 0 0 0
11311 Kernel Feature Selection via Conditional Covar... propose method feature selection employs kerne... 1 0 0 1 0 0
11312 2s exciton-polariton revealed in an external m... demonstrate existence excited state excitonpol... 0 1 0 0 0 0
11313 Weight hierarchy of a class of linear codes re... paper discuss generalized hamming weights clas... 0 0 1 0 0 0
11314 Cosmological discordances II: Hubble constant,... examine systematically inconsistency cosmologi... 0 1 0 0 0 0
11315 The perfect spin injection in silicene FS/NS j... theoretically investigate spin injection ferro... 0 1 0 0 0 0
11316 Distance-based Protein Folding Powered by Deep... contactassisted protein folding made good prog... 0 0 0 0 1 0
11317 Double Threshold Digraphs semiorder model preference relations element x... 1 0 0 0 0 0
11318 Directed unions of local quadratic transforms ... let rn mathfrak mn n ge infinite sequence regu... 0 0 1 0 0 0
11319 Lipschitz regularity of deep neural networks: ... deep neural networks notorious sensitive small... 0 0 0 1 0 0
11320 Preference-based Teaching introduce new model teaching named preferenceb... 1 0 0 0 0 0
11321 Unified description of dynamics of a repulsive... study binary spinmixture zerotemperature repul... 0 1 0 0 0 0
11322 Effective inertial frame in an atom interferom... ideal test equivalence principle test masses f... 0 1 0 0 0 0
11323 Phonon-mediated spin-flipping mechanism in the... understand emergent magnetic monopole dynamics... 0 1 0 0 0 0
11324 A hexatic smectic phase with algebraically dec... hexatic phase predicted theories twodimensiona... 0 1 0 0 0 0
11325 Pebble accretion at the origin of water in Europa despite fact observed gradient water content a... 0 1 0 0 0 0
11326 Traffic Graph Convolutional Recurrent Neural N... traffic forecasting particularly challenging a... 0 0 0 1 0 0
11327 Intrinsic Analysis of the Sample Fréchet Mean ... consider two types averaging complex covarianc... 0 0 1 1 0 0
11328 Alternating Optimization for Capacity Region o... paper characterizes capacity region gaussian m... 1 0 0 0 0 0
11329 Tales of Two Cities: Using Social Media to Und... lifestyles valuable model understanding indivi... 1 0 0 0 0 0
11330 Randomized Iterative Reconstruction for Sparse... availability powerful computers iterative reco... 1 0 0 0 0 0
11331 Finding Local Minima via Stochastic Nested Var... propose two algorithms find local minima faste... 0 0 0 1 0 0
11332 Growth rate of the state vector in a generaliz... mean growth rate state vector evaluated genera... 1 0 0 0 0 0
11333 Bayesian Patchworks: An Approach to Case-Based... doctors often rely past experience order diagn... 0 0 0 1 0 0
11334 Strong Black-box Adversarial Attacks on Unsupe... machine learning ml deep learning dl models ac... 1 0 0 1 0 0
11335 Formal affine Demazure and Hecke algebras of K... define formal affine demazure algebra formal a... 0 0 1 0 0 0
11336 Handling Homographs in Neural Machine Translation homographs words different meanings surface fo... 1 0 0 0 0 0
11337 Simple Length Rigidity for Hitchin Representat... show hitchin representation determined spectra... 0 0 1 0 0 0
11338 Towards the Augmented Pathologist: Challenges ... digital pathology one promising fields diagnos... 1 0 0 1 0 0
11339 Morse Code Datasets for Machine Learning present algorithm generate synthetic datasets ... 0 0 0 1 0 0
11340 Guarantees for Spectral Clustering with Fairne... given widespread popularity spectral clusterin... 1 0 0 1 0 0
11341 Using Maximum Entry-Wise Deviation to Test the... stochastic block model widely used detecting c... 0 0 0 1 0 0
11342 Twitter and the Press: an Ego-Centred Analysis ego networks proved valuable tool understandin... 1 0 0 0 0 0
11343 Majorana quasiparticles in condensed matter space less one decade search majorana quasipar... 0 1 0 0 0 0
11344 Proper orthogonal decomposition vs. Fourier an... performed comparative study extraction largesc... 0 1 0 0 0 0
11345 On Gromov--Witten invariants of $\mathbb{P}^1$ propose conjectural explicit formula generatin... 0 1 1 0 0 0
11346 Downwash-Aware Trajectory Planning for Large Q... describe method formationchange trajectory pla... 1 0 0 0 0 0
11347 Flow simulation in a 2D bubble column with the... bubbly flows present bubble column reactors si... 0 1 0 0 0 0
11348 User-friendly guarantees for the Langevin Mont... paper study problem sampling given probability... 1 0 1 1 0 0
11349 Attacking the Madry Defense Model with $L_1$-b... madry lab recently hosted competition designed... 1 0 0 1 0 0
11350 Quantum sensors for the generating functional ... difficult problems described terms interacting... 0 1 0 0 0 0
11351 Sockeye: A Toolkit for Neural Machine Translation describe sockeye version opensource sequenceto... 1 0 0 1 0 0
11352 Bayesian shape modelling of cross-sectional ge... shape information great importance many applic... 0 0 0 1 0 0
11353 Analysing Relations involving small number of ... present day aes one widely used secure encrypt... 1 0 0 0 0 0
11354 q-Virasoro algebra and affine Kac-Moody Lie al... establish natural connection qvirasoro algebra... 0 0 1 0 0 0
11355 The Noise Handling Properties of the Talbot Al... paper examines noise handling properties three... 0 0 1 0 0 0
11356 Short-term Motion Prediction of Traffic Actors... despite ubiquity daily lives ai starting make ... 1 0 0 1 0 0
11357 Tropicalization, symmetric polynomials, and co... grigorievg koshevoy recently proved tropical s... 1 0 0 0 0 0
11358 The normal closure of big Dehn twists, and pla... study normal closure big power one several deh... 0 0 1 0 0 0
11359 Secure Minimum Time Planning Under Environment... cyber physical systems cps becoming ubiquitous... 1 0 0 0 0 0
11360 Treatment-Response Models for Counterfactual R... treatment effects estimated observational data... 1 0 0 1 0 0
11361 Reduced Electron Exposure for Energy-Dispersiv... analytical electron microscopy spectroscopy bi... 1 0 0 0 0 0
11362 Optimization of Smooth Functions with Noisy Ob... consider problem global optimization unknown n... 0 0 0 1 0 0
11363 Raw Waveform-based Speech Enhancement by Fully... study proposes fully convolutional network fcn... 1 0 0 1 0 0
11364 Kinetic Theory for Finance Brownian Motion fro... recent technological development enabled resea... 0 0 0 0 0 1
11365 Assessing Uncertainties in X-ray Single-partic... modern technology producing extremely bright c... 1 1 0 1 0 0
11366 Learning Hawkes Processes from Short Doubly-Ce... many realworld applications require robust alg... 0 0 1 1 0 0
11367 Unveiling the Role of Dopant Polarity on the R... recombination charges important process organi... 0 1 0 0 0 0
11368 Sliced Wasserstein Distance for Learning Gauss... gaussian mixture models gmm powerful parametri... 1 0 0 1 0 0
11369 How constant shifts affect the zeros of certai... study effect constant shifts zeros rational ha... 0 1 1 0 0 0
11370 Discovery and usage of joint attention in images joint visual attention characterized two indiv... 1 0 0 0 1 0
11371 Singular p-Laplacian parabolic system in exter... consider ibvp exterior domains plaplacian para... 0 0 1 0 0 0
11372 Size distribution of galaxies in SDSS DR7: wea... using sample galaxies selected sloan digital s... 0 1 0 0 0 0
11373 Towards thinner convolutional neural networks ... deep network pruning effective method reduce s... 1 0 0 0 0 0
11374 Configurable 3D Scene Synthesis and 2D Image R... propose systematic learningbased approach gene... 1 0 0 1 0 0
11375 Multiband NFC for High-Throughput Wireless Com... vision sensors lie heart computer vision many ... 1 0 0 0 0 0
11376 Learning Rare Word Representations using Seman... propose methodology adapts graph embedding tec... 1 0 0 0 0 0
11377 Effect of annealing temperatures on the electr... electrical conductivity dielectric properties ... 0 1 0 0 0 0
11378 Molecular dynamic simulation of water vapor in... one varieties pores often found natural artifi... 1 1 0 0 0 0
11379 Learning Program Component Order successful programs written maintained one asp... 1 0 0 0 0 0
11380 Random Euler Complex-Valued Nonlinear Filters last decade neural network kernel adaptive fil... 0 0 0 1 0 0
11381 Memory effects on epidemic evolution: The susc... memory great impact evolution every process re... 0 1 0 0 0 0
11382 On the equivalence of Eulerian and Lagrangian ... camassaholm equation twocomponent camassaholm ... 0 0 1 0 0 0
11383 Bulk diffusion in a kinetically constrained la... hydrodynamic regime evolution stochastic latti... 0 1 0 0 0 0
11384 Censored pairwise likelihood-based tests for m... maxmixture processes defined z maxax ay x asym... 0 0 1 1 0 0
11385 From rate distortion theory to metric mean dim... purpose paper point new connection information... 1 0 1 0 0 0
11386 Balanced Quantization: An Effective and Effici... quantized neural networks qnns use low bitwidt... 1 0 0 0 0 0
11387 The Causal Frame Problem: An Algorithmic Persp... frame problem fp puzzle philosophy mind episte... 1 0 0 1 0 0
11388 A Visual Representation of Wittgenstein's Trac... paper present data visualization method togeth... 1 0 0 0 0 0
11389 Primordial perturbations generated by Higgs fi... early universe dominated nonminimally coupled ... 0 1 0 0 0 0
11390 Schubert polynomials, theta and eta polynomial... examine relationship double schubert polynomia... 0 0 1 0 0 0
11391 Massive Fields as Systematics for Single Field... inflation massive fields contribute power spec... 0 1 0 0 0 0
11392 The second boundary value problem of the presc... lecture notes concerned solvability second bou... 0 0 1 0 0 0
11393 Additive Combinatorics: A Menu of Research Pro... text contains three hundred specific open ques... 0 0 1 0 0 0
11394 NMR evidence for static local nematicity and i... present senmr measurements singlecrystalline f... 0 1 0 0 0 0
11395 LitStoryTeller: An Interactive System for Visu... present study proposes litstoryteller interact... 1 0 0 0 0 0
11396 Acoustic Metacages for Omnidirectional Sound S... conventional sound shielding structures typica... 0 1 0 0 0 0
11397 Concave losses for robust dictionary learning traditional dictionary learning methods based ... 1 0 0 1 0 0
11398 Target-Quality Image Compression with Recurren... introduce stopcode tolerant sct approach train... 1 0 0 0 0 0
11399 Embedding simply connected 2-complexes in 3-sp... introduce dual matroids dimensional simplicial... 0 0 1 0 0 0
11400 Excitonic effects in third harmonic generation... linear nonlinear optical properties low dimens... 0 1 0 0 0 0
11401 A general family of congruences for Bernoulli ... prove general family congruences bernoulli num... 0 0 1 0 0 0
11402 The Fourier algebra of a rigid $C^{\ast}$-tens... completely positive completely bounded mutlipl... 0 0 1 0 0 0
11403 On lattice path matroid polytopes: integer poi... paper investigate number integer points lying ... 0 0 1 0 0 0
11404 Quantum effects and magnetism in the spatially... electronic magnetic properties dna structures ... 0 1 0 0 0 0
11405 A Stochastic Model for Short-Term Probabilisti... paper stochastic model regime switching develo... 0 0 0 1 0 0
11406 Stability and elasticity of metastable solid s... employing ab initio calculations discuss chemi... 0 1 0 0 0 0
11407 High Accuracy Classification of Parkinson's Di... early accurate identification parkinsonian syn... 1 0 0 1 0 0
11408 End-to-End Learning for Structured Prediction ... structured prediction energy networks spens si... 1 0 0 1 0 0
11409 Self-compression of spatially limited laser pu... selfaction features wave packets propagating t... 0 1 0 0 0 0
11410 A Hand-Held Multimedia Translation and Interpr... propose network independent handheld system tr... 0 0 0 1 0 0
11411 Adding Neural Network Controllers to Behavior ... paper show controllers created using data driv... 1 0 0 0 0 0
11412 Drop pattern resulting from the breakup of a b... rectangular grid formed liquid filaments parti... 0 1 0 0 0 0
11413 FIRED: Frequent Inertial Resets with Diversifi... cyberphysical system cps defined unique charac... 1 0 0 0 0 0
11414 Modelling of Dictyostelium Discoideum Movement... chemotaxis ubiquitous biological phenomenon ce... 0 0 0 0 1 0
11415 Cycles of Activity in the Jovian Atmosphere jupiters banded appearance may appear unchangi... 0 1 0 0 0 0
11416 Predicting Tactical Solutions to Operational P... paper offers methodological contribution inter... 1 0 0 1 0 0
11417 Consistent Approval-Based Multi-Winner Rules paper axiomatic study consistent approvalbased... 1 0 0 0 0 0
11418 Bridge functional for the molecular density fu... address problem predicting solvation free ener... 0 1 0 0 0 0
11419 Fourier multiplier theorems for Triebel-Lizork... paper study sharp generalizations dotfpq multi... 0 0 1 0 0 0
11420 Individual dynamic predictions using landmarki... diagnosis disease one major objective predict ... 0 0 0 1 0 0
11421 A partial converse to the Andreotti-Grauert th... let x smooth projective manifold dimmathbbc xn... 0 0 1 0 0 0
11422 Ab initio study of magnetocrystalline anisotro... ordered l feni phase tetrataenite recently con... 0 1 0 0 0 0
11423 Modular groups, Hurwitz classes and dynamic po... orientationpreserving branched covering f near... 0 0 1 0 0 0
11424 Proximal Planar Shape Signatures. Homology Ner... article introduces planar shape signatures der... 0 0 1 0 0 0
11425 Asymptotic analysis of a 2D overhead crane wit... paper investigates asymptotic behavior overhea... 0 0 1 0 0 0
11426 Abrupt disappearance and reemergence of the SU... interplay almost degenerate levels quantum dot... 0 1 0 0 0 0
11427 Stochastic Global Optimization Algorithms: A S... know global optimization problems cannot solve... 1 0 1 0 0 0
11428 A complete characterization of optimal diction... dictionaries collections vectors used represen... 1 0 0 1 0 0
11429 Least Square Variational Bayesian Autoencoder ... recent years variation autoencoders become one... 1 0 0 1 0 0
11430 Rational points of rationally simply connected... complex projective manifold rationally connect... 0 0 1 0 0 0
11431 A Koszul sign map define koszul sign map encoding koszul sign co... 0 0 1 0 0 0
11432 Combining low- to high-resolution transit spec... spaceborne lowto mediumresolution r transmissi... 0 1 0 0 0 0
11433 Factorizations in Modules and Splitting Multip... introduce concept multiplicatively closed subs... 0 0 1 0 0 0
11434 ROPPERI - A TPC readout with GEMs, pads and Ti... concept hybrid readout time projection chamber... 0 1 0 0 0 0
11435 A Shared Task on Bandit Learning for Machine T... introduce describe results novel shared task b... 1 0 0 1 0 0
11436 Double Sparsity Kernel Learning with Automatic... learning reproducing kernel hilbert spaces rkh... 0 0 0 1 0 0
11437 Controlling of blow-up responses by a nonlinea... investigate dynamics coupled waveguide system ... 0 1 0 0 0 0
11438 Text Extraction From Texture Images Using Mask... text extraction important problem image proces... 1 0 0 0 0 0
11439 Deep Echo State Networks with Uncertainty Quan... longlead forecasting spatiotemporal systems of... 0 0 0 1 0 0
11440 Using Convex Optimization of Autocorrelation w... imaging modalities recording diffraction data ... 1 0 0 0 0 0
11441 Parametrizations, weights, and optimal predict... consider problem annual mean temperature predi... 0 0 0 1 0 0
11442 Time irreversibility from symplectic non-squee... issue time reversible microscopic dynamics giv... 0 1 1 0 0 0
11443 On Optimal Weighted-Delay Scheduling in Input-... motivated relatively delayoptimal scheduling r... 0 0 1 0 0 0
11444 Hausdorff dimension, projections, intersection... survey recent developments hausdorff dimension... 0 0 1 0 0 0
11445 Interpolating between matching and hedonic pri... consider theoretical properties model encompas... 0 0 1 0 0 0
11446 Modeling and predicting the short term evoluti... coupled evolution magnetic field flow earths c... 0 1 0 0 0 0
11447 Analysing the Potential of BLE to Support Dyna... paper present novel approach broadcasting info... 1 0 0 0 0 0
11448 $\texttt{PyTranSpot}$ - A tool for multiband l... several studies shown stellar activity feature... 0 1 0 0 0 0
11449 Interplay of spatial dynamics and local adapta... distributions species lifetimes species space ... 0 0 0 0 1 0
11450 Routing Symmetric Demands in Directed Minor-Fr... problem routing graphs using nodedisjoint path... 1 0 0 0 0 0
11451 Fast sampling of parameterised Gaussian random... gaussian random fields popular models spatiall... 1 0 0 1 0 0
11452 Universal Scalable Robust Solvers from Computa... show discovery robust scalable numerical solve... 0 0 1 1 0 0
11453 Preliminary Experiments using Subjective Logic... according principle polyrepresentation retriev... 1 0 0 0 0 0
11454 General Robust Bayes Pseudo-Posterior: Exponen... although bayesian inference immensely popular ... 0 0 1 1 0 0
11455 The $H_0$ tension in light of vacuum dynamics ... despite outstanding achievements modern cosmol... 0 1 0 0 0 0
11456 On certain type of difference polynomials of m... paper investigate zeros difference polynomials... 0 0 1 0 0 0
11457 Teaching methods are erroneous: approaches whi... spreadsheets erroneous research found endusers... 1 0 0 0 0 0
11458 Modulational Instability in Linearly Coupled A... investigate modulational instability mi asymme... 0 1 0 0 0 0
11459 Discovering Visual Concept Structure with Spar... discovering automatically semantic structure t... 1 0 0 0 0 0
11460 GALILEO: A Generalized Low-Entropy Mixture Model present new method generating mixture models d... 1 0 0 1 0 0
11461 Approximation by mappings with singular Hessia... let omegasubsetmathbb rn lipschitz domain give... 0 0 1 0 0 0
11462 Adaptive Cardinality Estimation paper address cardinality estimation problem i... 1 0 0 1 0 0
11463 Non-stationary Stochastic Optimization under $... consider nonstationary sequential stochastic o... 1 0 0 1 0 0
11464 Spin conductance of YIG thin films driven from... report study spin conductance ultrathin films ... 0 1 0 0 0 0
11465 Mathematical renormalization in quantum electr... work focus approach noncommutative formal powe... 0 0 1 0 0 0
11466 Inference in Deep Networks in High Dimensions deep generative networks provide powerful tool... 1 0 0 1 0 0
11467 Differentially Private Variational Dropout deep neural networks large number parameters h... 1 0 0 1 0 0
11468 Persistent Currents in Ferromagnetic Condensates persistent currents bose condensates scalar or... 0 1 0 0 0 0
11469 Parameter Adaptation and Criticality in Partic... generality one main advantages heuristic algor... 1 0 0 0 0 0
11470 Model Predictive Control meets robust Kalman f... model predictive control mpc principal control... 0 0 1 0 0 0
11471 Election forensic analysis of the Turkish Cons... majority yes votes constitutional referendum t... 0 1 0 1 0 0
11472 Efficient Bayesian inference for multivariate ... paper discusses efficient bayesian estimation ... 0 0 0 1 0 0
11473 Next Steps for the Colorado Risk-Limiting Audi... colorado conducted risklimiting tabulation aud... 0 0 0 1 0 0
11474 HD 202206 : A Circumbinary Brown Dwarf System hubble space telescope fine guidance sensor as... 0 1 0 0 0 0
11475 On Optimal Group Claims at Voting in a Stochas... paradox model social dynamics determined votin... 1 0 1 0 0 0
11476 Exploring many body localization and thermaliz... discrete truncated wigner approximation dtwa s... 0 1 0 0 0 0
11477 An FPTAS for the Knapsack Problem with Paramet... paper investigate parametric weight knapsack p... 1 0 1 0 0 0
11478 Mellin and Wiener-Hopf operators in a non-clas... markov processes well understood case take pla... 0 0 1 0 0 0
11479 Long-term photometric behavior of the eclipsin... present analysis results eclipsing cataclysmic... 0 1 0 0 0 0
11480 SPUX: Scalable Particle Markov Chain Monte Car... calibration individual based models ibms succe... 1 0 0 1 0 0
11481 A Social Network Analysis Framework for Modeli... health insurance companies brazil data claims ... 1 0 0 0 0 0
11482 Congruences for Restricted Plane Overpartition... corteel savelief vuleti generalized concept ov... 0 0 1 0 0 0
11483 AndroVault: Constructing Knowledge Graph from ... data driven research android gained great mome... 1 0 0 0 0 0
11484 Universal and generalizable restoration strate... humans increasingly stressing ecosystems via h... 0 0 0 0 1 0
11485 Information transmission and signal permutatio... recent experiments show natural artificial mic... 1 1 0 0 0 0
11486 Heuristic Framework for Multi-Scale Testing of... analyzing empirical data often find global lin... 0 0 0 1 0 0
11487 Kitting in the Wild through Online Domain Adap... technological developments call increasing per... 1 0 0 0 0 0
11488 Event Analysis of Pulse-reclosers in Distribut... pulserecloser uses pulse testing technology ve... 1 0 0 0 0 0
11489 Projected Power Iteration for Network Alignment network alignment problem asks best correspond... 1 0 1 1 0 0
11490 3D mean Projective Shape Difference for Face D... give nonparametric methodology hypothesis test... 0 0 0 1 0 0
11491 Video Highlight Prediction Using Audience Chat... sports channel video portals offer exciting do... 1 0 0 0 0 0
11492 Effects of Interactions on Dynamic Correlation... investigate dynamic correlations hardcore boso... 0 1 0 0 0 0
11493 The Frechet distribution: Estimation and Appli... article consider problem estimating parameters... 0 0 0 1 0 0
11494 Prediction of Sea Surface Temperature using Lo... letter adopts long shortterm memorylstm predic... 1 0 0 0 0 0
11495 An Operational Framework for Specifying Memory... great progress recently formally specifying me... 1 0 0 0 0 0
11496 Efficient Algorithms for Moral Lineage Tracing lineage tracing joint segmentation tracking li... 1 0 0 0 0 0
11497 Interpolating between $k$-Median and $k$-Cente... consider generalization kmedian kcenter called... 1 0 0 0 0 0
11498 Statistical Challenges in Modeling Big Brain S... brain signal data inherently big massive amoun... 0 0 0 1 0 0
11499 Injective and Automorphism-Invariant Non-Singu... every automorphisminvariant right nonsingular ... 0 0 1 0 0 0
11500 Visible transitions in Ag-like and Cd-like lan... present visible spectra aglike df cdlike df io... 0 1 0 0 0 0
11501 A gradient flow approach to linear Boltzmann e... introduce gradient flow formulation linear bol... 0 0 1 0 0 0
11502 Constraints on neutrino masses from Lyman-alph... present constraints masses active sterile neut... 0 1 0 0 0 0
11503 BubbleView: an interface for crowdsourcing ima... paper present bubbleview alternative methodolo... 1 0 0 0 0 0
11504 Effects of Disorder on the Pressure-Induced Mo... present study influence disorder mott metalins... 0 1 0 0 0 0
11505 Dark Energy Survey Year 1 Results: Multi-Probe... present methodology detail implementation dark... 0 1 0 0 0 0
11506 Neural-Guided Deductive Search for Real-Time P... synthesizing userintended programs small numbe... 1 0 0 0 0 0
11507 Coupled Electron-Ion Monte Carlo simulation of... performed simulations solid molecular hydrogen... 0 1 0 0 0 0
11508 Spline Based Search Method For Unmodeled Trans... method described detection estimation transien... 0 1 0 0 0 0
11509 Quantum mechanics from an epistemic state space derive hilbert space formalism quantum mechani... 0 1 0 0 0 0
11510 Self-duality and scattering map for the hyperb... paper construct global actionangle variables c... 0 1 1 0 0 0
11511 Inference for heavy tailed stationary time ser... block maxima method extreme value theory consi... 0 0 1 1 0 0
11512 Active tuning of high-Q dielectric metasurfaces demonstrate active tuning alldielectric metasu... 0 1 0 0 0 0
11513 Semi-Supervised QA with Generative Domain-Adap... study problem semisupervised question answerin... 1 0 0 0 0 0
11514 Rationality proofs by curve counting propose approach showing rationality algebraic... 0 0 1 0 0 0
11515 Explainable Artificial Intelligence: Understan... availability large databases recent improvemen... 1 0 0 1 0 0
11516 The study on quantum material WTe2 wte sister alloys attracted tremendous attenti... 0 1 0 0 0 0
11517 Learning Social Image Embedding with Deep Mult... learning social media data embedding deep mode... 1 0 0 1 0 0
11518 DOC: Deep Open Classification of Text Documents traditional supervised learning makes closedwo... 1 0 0 0 0 0
11519 When Is the First Spurious Variable Selected b... applied statisticians use sequential regressio... 0 0 1 1 0 0
11520 Interpreting Blackbox Models via Model Extraction interpretability become incredibly important m... 1 0 0 0 0 0
11521 Extending holomorphic motions and monodromy let e closed set riemann sphere widehatmathbbc... 0 0 1 0 0 0
11522 A/D Converter Architectures for Energy-Efficie... ai applications emerged current world among ai... 1 0 0 0 0 0
11523 Quotients in monadic programming: Projective a... monadic programming datatypes presented free a... 1 0 1 0 0 0
11524 Density Independent Algorithms for Sparsifying... give faster algorithms producing sparse approx... 1 0 0 0 0 0
11525 On a generalized $k$-FL sequence and its appli... introduce generalized kfl sequence special kin... 0 0 1 0 0 0
11526 Supervised Metric Learning with Generalization... crucial importance metrics machine learning al... 1 0 0 0 0 0
11527 Symbolic dynamics for Kuramoto-Sivashinsky PDE... kuramotosivashinsky pde line odd periodic boun... 0 1 0 0 0 0
11528 Individual Dynamical Masses of Ultracool Dwarfs present full results decadelong astrometric mo... 0 1 0 0 0 0
11529 Beta Dips in the Gaia Era: Simulation Predicti... velocity anisotropy parameter beta measure kin... 0 1 0 0 0 0
11530 Computational Flows in Arithmetic computational flow pair consisting sequence co... 1 0 1 0 0 0
11531 Injective homomorphisms of mapping class group... let n compact connected nonorientable surface ... 0 0 1 0 0 0
11532 Transport in a disordered $ν=2/3$ fractional q... electric thermal transport properties nu fract... 0 1 0 0 0 0
11533 Giant Field Enhancement in Longitudinal Epsilo... report longitudinal epsilonnearzero lenz film ... 0 1 0 0 0 0
11534 Analysis and optimal individual pitch control ... trend increasing wind turbine rotor diameters ... 1 0 0 0 0 0
11535 Deep Learning-aided Application Scheduler for ... p based vx communication uses stochastic mediu... 1 0 0 0 0 0
11536 Convergence rates in the central limit theorem... prove moment inequalities class functionals ii... 0 0 1 1 0 0
11537 On Adaptive Estimation for Dynamic Bernoulli B... multiarmed bandit mab problem classic example ... 1 0 0 1 0 0
11538 Near Optimal Sketching of Low-Rank Tensor Regr... study least squares regression problem beginal... 1 0 0 1 0 0
11539 Fast computation of p-values for the permutati... permutation tests among simplest widely used s... 0 0 0 1 0 0
11540 Convergence analysis of the information matrix... gaussian belief propagation bp widely used dis... 1 0 0 0 0 0
11541 Vortex pairs in a spin-orbit coupled Bose-Eins... static dynamic properties vortices twocomponen... 0 1 0 0 0 0
11542 GlobeNet: Convolutional Neural Networks for Ty... advances remote sensing technologies made poss... 1 0 0 0 0 0
11543 The Incremental Multiresolution Matrix Factori... multiresolution analysis matrix factorization ... 1 0 0 1 0 0
11544 Carlsson's rank conjecture and a conjecture on... let k algebraically closed field polynomial al... 0 0 1 0 0 0
11545 Effect of Anodizing Parameters on Corrosion Re... magnesium alloys considered biodegradable biom... 0 1 0 0 0 0
11546 The probabilistic nature of McShane's identity... article discuss probabilistic interpretation m... 0 0 1 0 0 0
11547 RT-DAP: A Real-Time Data Analytics Platform fo... process control systems nowadays process measu... 1 0 0 0 0 0
11548 BFGS convergence to nonsmooth minimizers of co... popular bfgs quasinewton minimization algorith... 0 0 1 0 0 0
11549 A collaborative citizen science platform for r... volunteer computing vc distributed computing p... 1 0 0 0 0 0
11550 Quasiparticle interference in multiband superc... develop theory quasiparticle interference qpi ... 0 1 0 0 0 0
11551 Trading Strategies Generated by Path-dependent... almost twenty years ago er fernholz introduced... 0 0 0 0 0 1
11552 General Bayesian Inference over the Stiefel Ma... introduce approach based givens representation... 0 0 0 1 0 0
11553 Sine wave gating Silicon single-photon detecto... silicon singlephoton detectors spds key device... 0 1 0 0 0 0
11554 A Tutorial on Fisher Information many statistical applications concern mathemat... 0 0 1 1 0 0
11555 A statistical approach to identify superlumino... investigate identification hydrogenpoor superl... 0 1 0 0 0 0
11556 Low fertility rate reversal: a feature of inte... empirical relation indicates increase living s... 0 1 0 0 0 0
11557 Analysis of $p$-Laplacian Regularization in Se... investigate family regression problems semisup... 1 0 1 1 0 0
11558 Spectral stability of shifted states on star g... consider nonlinear schrdinger nls equation sub... 0 1 0 0 0 0
11559 Estimation of the multifractional function and... paper interested multifractional stable proces... 0 0 1 1 0 0
11560 Observation of "Topological" Microflares in th... report observation unusual kind solar microfla... 0 1 0 0 0 0
11561 Commutative positive varieties of languages study commutative positive varieties languages... 1 0 1 0 0 0
11562 A generalized model of social and biological c... present model contagion unifies generalizes ex... 0 1 0 0 0 0
11563 Luminous Efficiency Estimates of Meteors -I. U... luminous efficiency meteors poorly known criti... 0 1 0 0 0 0
11564 Application of Van Der Waals Density Functiona... van der waals vdw density functional implement... 0 1 0 0 0 0
11565 Secondary atmospheres on HD 219134 b and c analyze interiors hdb c among coolest super ea... 0 1 0 0 0 0
11566 Classification of rank two Lie conformal algebras give complete classification isomorphism lie c... 0 0 1 0 0 0
11567 Smooth equivalence of deformations of domains ... prove two smooth families connected domains cc... 0 0 1 0 0 0
11568 A lower bound of the hyperbolic dimension for ... improve existing lower bounds hyperbolic dimen... 0 0 1 0 0 0
11569 Invariant Causal Prediction for Nonlinear Models important problem many domains predict system ... 0 0 0 1 0 0
11570 Geometric Ergodicity of the MUCOGARCH(1,1) pro... multivariate cogarch volatility process show s... 0 0 1 0 0 0
11571 Cognitive networks: brains, internet, and civi... short essay discuss basic features cognitive a... 1 0 0 0 0 0
11572 Expect the unexpected: Harnessing Sentence Com... trigram love expected followed positive words ... 1 0 0 0 0 0
11573 Sensitivity Analysis of Deep Neural Networks deep neural networks dnns achieved superior pe... 1 0 0 1 0 0
11574 An application of the Hylleraas-B-splines basi... hylleraasbsplines basis set introduced paper u... 0 1 0 0 0 0
11575 Jupiter's South Equatorial Belt cycle in 2009-... revival south equatorial belt seb organised di... 0 1 0 0 0 0
11576 Improved Regularization Techniques for End-to-... regularization important endtoend speech model... 1 0 0 1 0 0
11577 On the limits of coercivity in permanent magnets maximum coercivity achieved given hard magneti... 0 1 0 0 0 0
11578 $N$-soliton formula and blowup result of the W... formulate n soliton solution wadatikonnoichika... 0 1 1 0 0 0
11579 Introduction of Improved Repairing Locality in... repairing locality appreciated feature distrib... 1 0 0 0 0 0
11580 A counterexample to a conjecture of Kiyota, Mu... kiyota murai wada conjectured largest eigenval... 0 0 1 0 0 0
11581 Minimal Hermite-type eigenbasis of the discret... exist many ways build orthonormal basis mathbb... 0 0 1 0 0 0
11582 Disagreement-Based Combinatorial Pure Explorat... design new algorithms combinatorial pure explo... 1 0 0 1 0 0
11583 Insulator to Metal Transition in WO$_3$ Induce... tungsten oxide associated bronzes compounds tu... 0 1 0 0 0 0
11584 Extensions and Exact Solutions to the Quaterni... examine problem transforming matching collecti... 0 0 0 0 1 0
11585 Particles, Cutoffs and Inequivalent Representa... critically review recent debate doreen fraser ... 0 1 0 0 0 0
11586 Dynamic Analysis of Executables to Detect and ... needed ensure integrity systems process sensit... 1 0 0 1 0 0
11587 Network support of talented people network support key success factor talented pe... 1 1 0 0 0 0
11588 How to Escape Saddle Points Efficiently paper shows perturbed form gradient descent co... 1 0 1 1 0 0
11589 Geert Hofstede et al's set of national cultura... article outlines different stages development ... 0 0 0 0 0 1
11590 Deep and Confident Prediction for Time Series ... reliable uncertainty estimation time series pr... 0 0 0 1 0 0
11591 Coverage Analysis of a Vehicular Network Model... paper consider vehicular network wireless node... 1 0 0 0 0 0
11592 Database Engines: Evolution of Greenness context information technology consumes worlds... 1 0 0 0 0 0
11593 Parseval Networks: Improving Robustness to Adv... introduce parseval networks form deep neural n... 1 0 0 1 0 0
11594 Production of 82Se enriched Zinc Selenide (ZnS... high purity zinc selenide znse crystals produc... 0 1 0 0 0 0
11595 Computing Human-Understandable Strategies algorithms equilibrium computation generally m... 0 0 0 1 0 0
11596 A statistical model for aggregating judgments ... propose probabilistic model aggregate answers ... 0 0 0 1 0 0
11597 The Inner 25 AU Debris Distribution in the eps... debris disk morphology wavelength dependent du... 0 1 0 0 0 0
11598 Model-Based Clustering of Nonparametric Weight... water pollution major global environmental pro... 0 0 0 1 0 0
11599 FPGA-Based Tracklet Approach to Level-1 Track ... high luminosity lhc cms detector need charged ... 0 1 0 0 0 0
11600 Isolating effects of age with fair representat... one prevalent symptoms among elderly populatio... 0 0 0 1 0 0
11601 The Trimmed Lasso: Sparsity and Robustness nonconvex penalty methods sparse modeling line... 0 0 1 1 0 0
11602 Mobile phone identification through the built-... mobile phones identification built components ... 1 0 0 0 0 0
11603 A Machine Learning Framework for Stock Selection paper demonstrates apply machine learning algo... 0 0 0 1 0 1
11604 Zampa's systems theory: a comprehensive theory... article outlines memoriam prof pavel zampas co... 1 0 0 0 0 0
11605 Learning Data Manifolds with a Cutting Plane M... consider problem classifying data manifolds ma... 1 0 0 1 0 0
11606 Theory of magnetism in La$_2$NiMnO$_6$ magnetism ordered disordered lanimno explained... 0 1 0 0 0 0
11607 Counterexample-guided Abstraction Refinement f... partially observable markov decision process p... 1 0 0 0 0 0
11608 An Overview of Multi-Task Learning in Deep Neu... multitask learning mtl led successes many appl... 1 0 0 1 0 0
11609 Low temperature synthesis of heterostructures ... largearea simcm films vertical heterostructure... 0 1 0 0 0 0
11610 Virtual refinements of the Vafa-Witten formula conjecture formula generating function virtual... 0 0 1 0 0 0
11611 Uncertainty in Multitask Transfer Learning using variational bayes neural networks develo... 0 0 0 1 0 0
11612 Geared Rotationally Identical and Invariant Co... theorems techniques form different types trans... 1 0 0 1 0 0
11613 Conditional quantum one-time pad suppose alice bob located distant laboratories... 1 0 0 0 0 0
11614 The Representation Theory of 2-Sylow Subgroups... study bratteli diagram sylow subgroups symmetr... 0 0 1 0 0 0
11615 Debiasing the Debiased Lasso with Bootstrap paper prove proper conditions bootstrap debias... 0 0 1 1 0 0
11616 Asymptotic Normality of Extensible Grid Sampling recently owen proposed use hilberts space fill... 0 0 1 1 0 0
11617 Hardening Stratum, the Bitcoin Pool Mining Pro... stratum defacto mining communication protocol ... 1 0 0 0 0 0
11618 Representations associated to small nilpotent ... paper provides comparison kstructure unipotent... 0 0 1 0 0 0
11619 Fast Linear Transformations in Python paper introduces new free library python progr... 1 0 0 0 0 0
11620 Physical description of nature from a system-i... objectivity often considered ideal scientific ... 0 1 0 0 0 0
11621 Training-induced inversion of spontaneous exch... work report synthesis structural electronic ma... 0 1 0 0 0 0
11622 Efficient and Adaptive Linear Regression in Se... consider linear regression problem semisupervi... 0 0 1 1 0 0
11623 Small Moving Window Calibration Models for Sof... five simple soft sensor methodologies two upda... 1 0 0 1 0 0
11624 Deep Learning the Physics of Transport Phenomena developed new datadriven paradigm rapid infere... 1 1 0 0 0 0
11625 A Survey on Methods and Theories of Quantized ... deep neural networks stateoftheart methods man... 0 0 0 1 0 0
11626 Constructing confidence sets for the matrix co... present note consider problem constructing hon... 0 0 1 1 0 0
11627 Ring objects in the equivariant derived Satake... second companion paper arxiv consider morphism... 0 0 1 0 0 0
11628 Well-Posedness of a Navier-Stokes/Mean Curvatu... consider twophase flow two incompressible visc... 0 0 1 0 0 0
11629 Off The Beaten Lane: AI Challenges In MOBAs Be... mobas represent huge segment online gaming gro... 1 0 0 0 0 0
11630 Domains for Higher-Order Games study twoplayer inclusion games played wordgen... 1 0 0 0 0 0
11631 Improved torque formula for low and intermedia... migration planets nearly circular noninclined ... 0 1 0 0 0 0
11632 The fluid running in the subnanochannel with f... researched motion gas subnanochannel functiona... 0 1 0 0 0 0
11633 Data-Driven Decentralized Optimal Power Flow implementation optimal power flow opf methods ... 0 0 0 1 0 0
11634 Thermal-induced stress of plasmonic magnetic n... present theoretical calculations interpret opt... 0 1 0 0 0 0
11635 High-resolution photoelectron-spectroscopic in... photoelectron spectrum water recorded vicinity... 0 1 0 0 0 0
11636 Connectedness of the Balmer spectra of right b... virtue balmers celebrated theorem classificati... 0 0 1 0 0 0
11637 Underdamped Langevin MCMC: A non-asymptotic an... study underdamped langevin diffusion log targe... 1 0 0 1 0 0
11638 Two-dimensional compressible viscous flow arou... direct numerical simulation performed study co... 0 1 0 0 0 0
11639 BindsNET: A machine learning-oriented spiking ... development spiking neural network simulation ... 0 0 0 0 1 0
11640 Monaural Audio Speaker Separation with Source ... propose algorithm separate simultaneously spea... 1 0 0 1 0 0
11641 Variational Probability Flow for Biologically ... quest biologically plausible deep learning dri... 1 0 0 1 0 0
11642 Node classification for signed networks using ... signed networks crucial tool modeling friend f... 1 0 0 1 0 0
11643 Ensemble representation learning: an analysis ... recently proposed general ensemblebased featur... 1 0 0 1 0 0
11644 Anisotropic Fermi surface probed by the de Haa... tasb predicted theoretically proposed magnetot... 0 1 0 0 0 0
11645 Stochastic Deconvolutional Neural Network Ense... training generative adversarial networks diffi... 0 0 0 1 0 0
11646 A Local Prime Factor Decomposition Algorithm f... work concerned prime factor decomposition pfd ... 1 0 0 0 0 0
11647 Dispersion for the wave equation outside a bal... purpose note prove dispersive estimates wave e... 0 0 1 0 0 0
11648 Minimal surfaces near short geodesics in hyper... finite volume complete hyperbolic manifold qua... 0 0 1 0 0 0
11649 Softening and Yielding of Soft Glassy Materials solids deform fluids flow soft glassy material... 0 1 0 0 0 0
11650 Seemless Utilization of Heterogeneous XSede Re... describe technical effort used process volumin... 0 0 0 0 1 0
11651 Nonlinear Network description for many-body qu... show recently introduced iterative backflow re... 0 1 0 0 0 0
11652 Winding number $m$ and $-m$ patterns acting on... prove winding number pattern p winding number ... 0 0 1 0 0 0
11653 Averages of shifted convolution sums for $GL(3... let afn normalized fourier coefficients gl maa... 0 0 1 0 0 0
11654 Reply to Hicks et al 2017, Reply to Morrison e... present letter editor one series publications ... 0 0 0 1 0 0
11655 Fourier Multipliers on the Heisenberg groups r... paper give explicit expressions differentialdi... 0 0 1 0 0 0
11656 Free Boundary Minimal Surfaces in the Unit Thr... construct new family high genus examples free ... 0 0 1 0 0 0
11657 Multi-scale Transactive Control In Interconnec... thesis presents design analysis validation hie... 0 1 0 0 0 0
11658 Constraining the contribution of active galact... recent results suggested active galactic nucle... 0 1 0 0 0 0
11659 Two-walks degree assortativity in graphs and n... degree ssortativity tendency nodes high degree... 1 1 0 0 0 0
11660 Variational Analysis of Constrained M-Estimators propose unified framework establishing existen... 0 0 1 1 0 0
11661 Minimally-Supervised Attribute Fusion for Data... aggregate analysis comparing countrywise sales... 1 0 0 0 0 0
11662 Diffusivities bounds in the presence of Weyl c... paper investigate behavior thermoelectric dc c... 0 1 0 0 0 0
11663 Family-specific scaling laws in bacterial genomes among several quantitative invariants found ev... 0 1 0 0 0 0
11664 Crowdsourcing Multiple Choice Science Questions present novel method obtaining highquality dom... 1 0 0 1 0 0
11665 Ce 3$p$ hard x-ray photoelectron spectroscopy ... bulk sensitive hard xray photoelectron spectro... 0 1 0 0 0 0
11666 A short proof of the middle levels theorem consider graph vertices bitstrings length n ex... 1 0 0 0 0 0
11667 Don't Fear the Bit Flips: Optimized Coding Str... trained classifiers must often operate data co... 1 0 0 1 0 0
11668 Kropina change of a Finsler space with m-th ro... paper find condition finsler space kropina cha... 0 0 1 0 0 0
11669 Direct Visualization of 2D Topological Insulat... grow nearly freestanding singlelayer twte grap... 0 1 0 0 0 0
11670 Joint Structured Learning and Predictions unde... paper concerned structured machine learning su... 1 0 0 1 0 0
11671 Mobile big data analysis with machine learning paper investigates identify requirement develo... 0 0 0 1 0 0
11672 Enhancement of Galaxy Overdensity around Quasa... investigate galaxy overdensity around protoclu... 0 1 0 0 0 0
11673 Search for cosmic dark matter by means of ultr... dark matter search project means ultra high pu... 0 1 0 0 0 0
11674 On Training Recurrent Networks with Truncated ... recurrent neural networks dominant models many... 1 0 0 0 0 0
11675 Wavelength Dependence of Picosecond Laser-Indu... physical mechanisms laserinduced periodic surf... 0 1 0 0 0 0
11676 Time-efficient Garbage Collection in SSDs ssds currently replacing magnetic disks many a... 1 0 0 0 0 0
11677 Annealed limit theorems for the ising model on... recent paper giardin giberti hofstad prioriell... 0 1 1 0 0 0
11678 Multi-Task Learning of Keyphrase Boundary Clas... keyphrase boundary classification kbc task det... 1 0 0 1 0 0
11679 On the interior motive of certain Shimura vari... aim article construction interior motive picar... 0 0 1 0 0 0
11680 SenGen: Sentence Generating Neural Variational... present new topic model generates documents sa... 1 0 0 1 0 0
11681 Atomistic-continuum multiscale modelling of ma... article problems related multiscale modelling ... 0 1 1 0 0 0
11682 Regularly Varying Functions, Generalized conte... revisit problem characterizing eigenvalue dist... 0 0 1 0 0 0
11683 The Geodesic Distance between $\mathcal{G}_I^0... mathcalgi distribution able characterize diffe... 1 0 0 1 0 0
11684 Search for Common Minima in Joint Optimization... present novel optimization method named combin... 0 0 0 1 0 0
11685 Statistical Inferences for Polarity Identifica... information forms basis human behavior includi... 1 0 0 1 0 0
11686 Effect of Adaptive and Cooperative Adaptive Cr... paper evaluates influence maximum vehicle acce... 1 0 0 0 0 0
11687 Very cost effective bipartition in Gamma(Z_n) let zn finite commutative ring residue classes... 0 0 1 0 0 0
11688 Doubly dressed bosons - exciton-polaritons in ... demonstrate existence novel quasiparticle exci... 0 1 0 0 0 0
11689 Fast Stability Scanning for Future Grid Scenar... future grid scenario analysis requires major d... 1 0 0 1 0 0
11690 Femtosecond Mega-electron-volt Electron Energy... pumpprobe electron energyloss spectroscopy eel... 0 1 0 0 0 0
11691 On the Power of Symmetric Linear Programs consider families symmetric linear programs lp... 1 0 0 0 0 0
11692 Pulsar science with the CHIME telescope chime telescope canadian hydrogen intensity ma... 0 1 0 0 0 0
11693 Approximation by generalized Kantorovich sampl... present article analyse behaviour new family k... 0 0 1 0 0 0
11694 Mechanical Instability Leading Epithelial Cell... theoretically investigate mechanical stability... 0 0 0 0 1 0
11695 A two-layer shallow water model for bedload se... twolayer shallow water type model proposed des... 0 1 0 0 0 0
11696 Chondrule Accretion with a Growing Protoplanet chondrules primitive materials solar system fo... 0 1 0 0 0 0
11697 Exemplar or Matching: Modeling DCJ Problems wi... edit distance dcj model computed linear time g... 1 0 0 0 0 0
11698 MIHash: Online Hashing with Mutual Information learningbased hashing methods widely used near... 1 0 0 0 0 0
11699 On the Dedekind different of a Cayley-Bacharac... given dimensional scheme mathbbx projective sp... 0 0 1 0 0 0
11700 A note on the role of projectivity in likeliho... widespread confusion role projectivity likelih... 0 0 1 1 0 0
11701 Alternating Double Euler Sums, Hypergeometric ... work derive relations generating functions dou... 0 0 1 0 0 0
11702 Achieving Dilution without Knowledge of Coordi... considerable literature developed various fund... 1 0 0 0 0 0
11703 Probing the topology of density matrices mixedness quantum state usually seen adversary... 0 1 0 0 0 0
11704 Stable Limit Theorems for Empirical Processes ... paper introduces new concept stochastic depend... 0 0 1 1 0 0
11705 Topological Maxwell Metal Bands in a Supercond... experimentally explore topological maxwell met... 0 1 0 0 0 0
11706 Pressure effect and Superconductivity in $β$-B... report detailed study transport coefficients b... 0 1 0 0 0 0
11707 Backprop-Q: Generalized Backpropagation for St... realworld scenarios appealing learn model carr... 0 0 0 1 0 0
11708 Development of a low-alpha-emitting μ-PIC for ... newage directionsensitive darkmattersearch exp... 0 1 0 0 0 0
11709 Online characterization of planetary surfaces:... lack opensource tools hyperspectral data visua... 1 1 0 0 0 0
11710 GM-PHD Filter for Searching and Tracking an Un... study problem searching tracking collection mo... 1 0 0 0 0 0
11711 Regularity of solutions to scalar conservation... prove regularity estimates entropy solutions s... 0 0 1 0 0 0
11712 Coupled identical localized fermionic chains w... analyze ground state localization properties a... 0 1 0 0 0 0
11713 Calibrated Filtered Reduced Order Modeling propose calibrated filtered reduced order mode... 0 1 1 0 0 0
11714 Population of collective modes in light scatte... interaction light atomic sample containing lar... 0 1 0 0 0 0
11715 A Framework for Accurate Drought Forecasting S... technological advancement wireless sensor netw... 1 0 0 0 0 0
11716 Readings and Misreadings of J. Willard Gibbs E... j willard gibbs elementary principles statisti... 0 1 0 0 0 0
11717 Multilingual Adaptation of RNN Based ASR Systems work focus multilingual systems based recurren... 1 0 0 0 0 0
11718 SPIDERS: Selection of spectroscopic targets us... spiders spectroscopic identification erosita s... 0 1 0 0 0 0
11719 Task-specific Word Identification from Short T... taskspecific word identification aims choose t... 1 0 0 0 0 0
11720 Merlin-Arthur with efficient quantum Merlin an... introduce simple subuniversal quantum computin... 1 0 0 0 0 0
11721 Light sterile neutrinos, dark matter, and new ... present psimssm model based upsi extension min... 0 1 0 0 0 0
11722 Accurate halo-galaxy mocks from automatic bias... reliable extraction cosmological information c... 0 1 0 0 0 0
11723 Time-Optimal Path Tracking via Reachability An... given geometric path timeoptimal path tracking... 1 0 0 0 0 0
11724 Measurements of Three-Level Hierarchical Struc... consider deep classifying neural networks expo... 1 0 0 1 0 0
11725 Discrete-Time Statistical Inference for Multis... study statistical inference smallnoiseperturbe... 0 0 1 1 0 0
11726 Taggle: Scalable Visualization of Tabular Data... visualization tabular datafor presentation exp... 1 0 0 0 0 0
11727 A parity-breaking electronic nematic phase tra... strong electron interactions drive metallic sy... 0 1 0 0 0 0
11728 Sparse bounds for a prototypical singular Rado... use variant technique laca give sparse lplogl ... 0 0 1 0 0 0
11729 Sterile neutrinos in cosmology sterile neutrinos natural extensions standard ... 0 1 0 0 0 0
11730 A Statistical Approach to Increase Classificat... probabilistic mixture models widely used diffe... 1 0 0 1 0 0
11731 Kinematics and workspace analysis of a 3ppps p... paper presents kinematic analysis ppps paralle... 1 0 0 0 0 0
11732 Accurate spectroscopic redshift of the multipl... context gravitational lensing time delay metho... 0 1 0 0 0 0
11733 Upper bounds on the smallest size of a saturat... projective plane piq necessarily desarguesian ... 1 0 1 0 0 0
11734 A Neural Representation of Sketch Drawings present sketchrnn recurrent neural network rnn... 1 0 0 1 0 0
11735 Privileged Multi-label Learning paper presents privileged multilabel learning ... 1 0 0 1 0 0
11736 A Diophantine approximation problem with two p... refine result last two authors diophantine app... 0 0 1 0 0 0
11737 Reexamining Low Rank Matrix Factorization for ... trace norm regularization widely used approach... 1 0 0 1 0 0
11738 Tier structure of strongly endotactic reaction... reaction networks mainly used model timeevolut... 0 0 0 0 1 0
11739 Relative FP-injective and FP-flat complexes an... paper introduce notions rm fpninjective rm fpn... 0 0 1 0 0 0
11740 An Interactive Tool to Explore and Improve the... given straightline drawing gamma graph gve eve... 1 0 0 0 0 0
11741 Distinguishing the albedo of exoplanets from s... light curves show flux variation target star o... 0 1 0 0 0 0
11742 Inverse Reinforcement Learning Under Noisy Obs... consider problem performing inverse reinforcem... 1 0 0 0 0 0
11743 Using Perturbed Underdamped Langevin Dynamics ... paper introduce analyse langevin samplers cons... 0 0 1 1 0 0
11744 Meta learning Framework for Automated Driving success automated driving deployment highly de... 1 0 0 1 0 0
11745 MOBILITY21: Strategic Investments for Transpor... americas transportation infrastructure backbon... 1 0 0 0 0 0
11746 Hysteretic behaviour of metal connectors for h... crosslaminated timber clt prefabricated solid ... 0 1 0 0 0 0
11747 Partial Knowledge In Embeddings representing domain knowledge crucial task wid... 1 0 0 0 0 0
11748 Impact of the latest measurement of Hubble con... investigate constraint results inflation model... 0 1 0 0 0 0
11749 Ultra-light and strong: the massless harmonic ... classical mechanics light particle bound stron... 0 1 0 0 0 0
11750 The Shannon-McMillan-Breiman theorem beyond am... introduce new isomorphisminvariant notion entr... 0 0 1 0 0 0
11751 Assistive robotic device: evaluation of intell... assistive robotic devices used help people upp... 1 0 0 0 0 0
11752 Solving the Brachistochrone Problem by an Infl... influence diagrams decisiontheoretic extension... 1 0 1 0 0 0
11753 OH Survey along Sightlines of Galactic Observa... obtained oh spectra four transitions pi ground... 0 1 0 0 0 0
11754 Strain manipulation of Majorana fermions in gr... graphene nanoribbons armchair edges studied ex... 0 1 0 0 0 0
11755 Relativistic wide-angle galaxy bispectrum on t... given important role galaxy bispectrum recentl... 0 1 0 0 0 0
11756 Recent progress in many-body localization article brief introduction rapidly evolving fi... 0 1 0 0 0 0
11757 Magnetic Field Dependence of Spin Glass Free E... measure field dependence spin glass free energ... 0 1 0 0 0 0
11758 Topological Structures on DMC spaces two channels said equivalent degraded space eq... 1 0 1 0 0 0
11759 The spectral element method as an efficient to... paper presents transient numerical simulations... 0 1 0 0 0 0
11760 Re-entrant charge order in overdoped (Bi,Pb)$_... charge modulations considered leading competit... 0 1 0 0 0 0
11761 A Spectral Approach for the Design of Experime... paper proposes new approach construct high qua... 1 0 0 1 0 0
11762 Detection and Tracking of General Movable Obje... paper studies problem detection tracking gener... 1 0 0 0 0 0
11763 Mapping the aberrations of a wide-field spectr... demonstrate new approach calibrating spectrals... 0 1 0 0 0 0
11764 On The Asymptotic Efficiency of Selection Proc... field discrete event simulation optimization t... 0 0 1 1 0 0
11765 DSOD: Learning Deeply Supervised Object Detect... present deeply supervised object detector dsod... 1 0 0 0 0 0
11766 Data Capture & Analysis to Assess Impact of Ca... data enables nongovernmental organisations ngo... 1 0 0 0 0 0
11767 Conducting Simulations in Causal Inference wit... past decade seen increasing body literature de... 0 0 0 1 0 0
11768 Finite Semihypergroups Built From Groups necessary sufficient conditions finite semihyp... 0 0 1 0 0 0
11769 Auslander Modules paper introduce notion auslander modules inspi... 0 0 1 0 0 0
11770 Verifying Security Protocols using Dynamic Str... current formal approaches successfully used fi... 1 0 0 0 0 0
11771 Distribution uniformity of laser-accelerated p... compared conventional accelerators laser plasm... 0 1 0 0 0 0
11772 Learning to Detect Human-Object Interactions study problem detecting humanobject interactio... 1 0 0 0 0 0
11773 Data clustering with edge domination in comple... paper presents model dynamical system particle... 1 1 0 0 0 0
11774 sWSI: A Low-cost and Commercial-quality Whole ... paper scalable whole slide imaging swsi novel ... 1 1 0 0 0 0
11775 Predicting multicellular function through mult... motivation understanding functions proteins sp... 1 0 0 1 0 0
11776 Toward Microphononic Circuits on Chip: An Eval... investigate prospects micronscale acoustic wav... 0 1 0 0 0 0
11777 Adaptive Submodular Influence Maximization wit... paper examines problem adaptive influence maxi... 1 0 0 0 0 0
11778 Evaluation of Direct Haptic 4D Volume Renderin... work presents evaluation study using force fee... 1 1 0 0 0 0
11779 The Role of Big Data on Smart Grid Transition despite popularly referred ultimate solution p... 1 0 0 0 0 0
11780 Learning Deep ResNet Blocks Sequentially using... deep neural networks known difficult train due... 1 0 0 0 0 0
11781 Total energy of radial mappings main aim paper extend one main results iwaniec... 0 0 1 0 0 0
11782 Divergence and Sufficiency for Convex Optimiza... logarithmic score information divergence appea... 1 1 1 0 0 0
11783 Compact linear programs for 2SAT integer n present explicit formulation compact... 1 0 1 0 0 0
11784 Distributed Protocols at the Rescue for Trustw... online services emerge areas life voting proce... 1 0 0 0 0 0
11785 Isomonodromy aspects of the tt* equations of C... paper third series completes description radia... 0 0 1 0 0 0
11786 Decorative Plasmonic Surfaces lowprofile patterned plasmonic surfaces synerg... 0 1 0 0 0 0
11787 Hamiltonian approach to slip-stacking dynamics hamiltonian dynamics applied study slipstackin... 0 1 0 0 0 0
11788 Materials processing with intense pulsed ion b... intense pulsed ion beams locally heat material... 0 1 0 0 0 0
11789 Distributions of Historic Market Data -- Impli... undertake systematic comparison implied volati... 0 0 0 0 0 1
11790 Variational Walkback: Learning a Transition Op... propose novel method directly learn stochastic... 1 0 0 1 0 0
11791 Toward a language-theoretic foundation for pla... address problems underlying algorithmic questi... 1 0 0 0 0 0
11792 Algebraic relations between solutions of Painl... calculate model theoretic ranks painlev equati... 0 0 1 0 0 0
11793 Pore lifetimes in cell electroporation: Comple... review basic concepts possible pore structures... 0 1 0 0 0 0
11794 Data-driven causal path discovery without prio... causal discovery broadens inference possibilit... 0 0 0 1 0 0
11795 Computation of Ground States of the Gross-Pita... paper combine concepts riemannian optimization... 0 1 1 0 0 0
11796 On the symplectic size of convex polytopes paper introduce combinatorial formula ekelandh... 0 0 1 0 0 0
11797 A Fully Convolutional Neural Network Approach ... paper describe novel approach cocktail party p... 1 0 0 1 0 0
11798 Tunnelling Spectroscopy of Andreev States in G... normal conductor placed good contact supercond... 0 1 0 0 0 0
11799 Volatility estimation for stochastic PDEs usin... study parameter estimation parabolic linear se... 0 0 1 1 0 0
11800 A Conic Integer Programming Approach to Constr... consider constrained assortment optimization p... 0 0 1 0 0 0
11801 Voyager 1 Measurements Beyond the Heliopause o... obtained energy spectra cosmic ray b c mg fe n... 0 1 0 0 0 0
11802 Block Mean Approximation for Efficient Second ... advanced optimization algorithms newton method... 0 0 0 1 0 0
11803 A Minimum Discounted Reward Hamilton-Jacobi Fo... propose novel formulation approximating reacha... 1 0 0 0 0 0
11804 Imbedding results in Musielak-Orlicz spaces wi... prove continuous embedding allows us obtain bo... 0 0 1 0 0 0
11805 Defend against advanced persistent threats: An... new cyber attack pattern advanced persistent t... 1 0 0 0 0 0
11806 Challenges in Designing Datasets and Validatio... autonomous driving getting lot attention last ... 1 0 0 1 0 0
11807 Improving Adversarial Robustness via Promoting... though deep neural networks achieved significa... 1 0 0 1 0 0
11808 Majorana stripe order on the surface of a thre... issue effect interactions topological states c... 0 1 0 0 0 0
11809 Academic Engagement and Commercialization in a... academic engagement accelerate crowd commercia... 0 0 0 0 0 1
11810 Affine-Gradient Based Local Binary Pattern Des... present novel affinegradient based local binar... 1 0 0 0 0 0
11811 Decomposition theorems for asymptotic property... combine aspects notions finite decomposition c... 0 0 1 0 0 0
11812 Three dimensional free-surface flow over arbit... consider steady nonlinear free surface flow pa... 0 1 0 0 0 0
11813 Spin-polaron formation and magnetic state diag... laxcaxmno lcmo studied framework density funct... 0 1 0 0 0 0
11814 Power-law citation distributions are not scale... analyze time evolution statistical distributio... 1 0 0 0 0 0
11815 Atmospheric stellar parameters for large surve... era vast spectroscopic surveys focusing galact... 0 1 0 0 0 0
11816 Bingham flow in porous media with obstacles of... using unfolding operators periodic homogenizat... 0 0 1 0 0 0
11817 Eigenstate entanglement in the Sachdev-Ye-Kita... sachdevyekitaev model argue entanglement entro... 0 1 0 0 0 0
11818 Finite presheaves and $A$-finite generation of... inspired work henn lannes schwartz unstable al... 0 0 1 0 0 0
11819 Ejection of rocky and icy material from binary... single star systems like solar system comets d... 0 1 0 0 0 0
11820 Two-photon excitation of rubidium atoms inside... study twophoton laser excitation energy level ... 0 1 0 0 0 0
11821 Readout of the atomtronic quantum interference... boseeinstein condensate confined ring shaped l... 0 1 0 0 0 0
11822 Apprentice: Using Knowledge Distillation Techn... deep learning networks achieved stateoftheart ... 1 0 0 0 0 0
11823 An IDE-Based Context-Aware Meta Search Engine traditional web search forces developers leave... 1 0 0 0 0 0
11824 Sharing Data Homomorphically Encrypted with Di... paper propose first homomorphic based proxy re... 1 0 0 0 0 0
11825 Low temperature features in the heat capacity ... explore competition coupling vibrational elect... 0 1 0 0 0 0
11826 Designing spin and orbital exchange Hamiltonia... demonstrate electric fields arbitrary time pro... 0 1 0 0 0 0
11827 A Novel Comprehensive Approach for Estimating ... computation semantic similarity concepts impor... 1 0 0 0 0 0
11828 Tannakian duality for affine homogeneous spaces associated closed quantum subgroup gsubset un ... 0 0 1 0 0 0
11829 Strong comparison principle for the fractional... following show strong comparison principle fra... 0 0 1 0 0 0
11830 The uniformity and time-invariance of the intr... distribution metals intracluster medium encode... 0 1 0 0 0 0
11831 Improving Native Ads CTR Prediction by Large S... click rate ctr prediction important native adv... 0 0 0 1 0 0
11832 On the Communication Cost of Determining an Ap... consider closest lattice point problem distrib... 1 0 0 0 0 0
11833 One shot entanglement assisted classical and q... capacity quantum channel characterizes limits ... 1 0 0 0 0 0
11834 Conformally variational Riemannian invariants conformally variational riemannian invariants ... 0 0 1 0 0 0
11835 Caching Meets Millimeter Wave Communications f... one promising approaches overcome uncertainty ... 1 0 0 0 0 0
11836 Poison Frogs! Targeted Clean-Label Poisoning A... data poisoning attack machine learning models ... 0 0 0 1 0 0
11837 Sorting Phenomena in a Mathematical Model For ... macroscopic models systems involving diffusion... 0 0 1 0 0 0
11838 Ab initio design of drug carriers for zoledron... monomolecular drug carriers based calixnarenes... 0 1 0 0 0 0
11839 Skeleton-based Action Recognition of People Ha... visual surveillance systems necessary recogniz... 1 0 0 0 0 0
11840 Active classification with comparison queries study extension active learning learning algor... 1 0 0 0 0 0
11841 Behavior of digital sequences through exotic n... many digital functions studied literature eg s... 1 0 0 0 0 0
11842 Quantum cognition goes beyond-quantum: modelin... psychological measurements two levels distingu... 0 0 0 0 1 0
11843 Geometry of Projective Perfectoid and Integer ... line bundles rational degree defined using per... 0 0 1 0 0 0
11844 Determinantal Generalizations of Instrumental ... linear structural equation models relate compo... 0 0 1 1 0 0
11845 Computational insights and the observation of ... increasing number twodimensional materials inc... 0 1 0 0 0 0
11846 Non-Homogeneous Hydrodynamic Systems and Quasi... paper present novel construction nonhomogeneou... 0 1 0 0 0 0
11847 Latest results of the Tunka Radio Extension (I... tunka radio extension tunkarex antenna array c... 0 1 0 0 0 0
11848 The Rabi frequency on the $H^3Δ_1$ to $C^1Π$ t... calculations correlations rabi frequency hdelt... 0 1 0 0 0 0
11849 Deriving mesoscopic models of collective behav... animal groups exhibit emergent properties cons... 0 0 0 0 1 0
11850 First Indirect X-Ray Imaging Tests With An 88-... using bmc beamline advanced photon source aps ... 0 1 0 0 0 0
11851 A randomized Halton algorithm in R randomized quasimonte carlo rqmc sampling brin... 1 0 0 1 0 0
11852 Leveraging Node Attributes for Incomplete Rela... relational data usually highly incomplete prac... 1 0 0 1 0 0
11853 pMR: A high-performance communication library many parallel machines time lqcd applications ... 1 1 0 0 0 0
11854 Extending a Function Just by Multiplying and D... describe purelymultiplicative method extending... 0 0 1 0 0 0
11855 Towards Modeling the Interaction of Spatial-As... daily perceptual experience driven different n... 0 0 0 0 1 0
11856 Dex-Net 2.0: Deep Learning to Plan Robust Gras... reduce data collection time deep learning robu... 1 0 0 0 0 0
11857 Effects of temperature and strain rate on mech... mechanical behaviors monolayer black phosphore... 0 1 0 0 0 0
11858 Ward identities for charge and heat currents o... ward identities charge heat currents derived p... 0 1 0 0 0 0
11859 Ultrafast imprinting of topologically protecte... short electron pulses demonstrated trigger con... 0 1 0 0 0 0
11860 Recurrent Environment Simulators models simulate environments change response a... 1 0 0 1 0 0
11861 Exceeding the Shockley-Queisser limit within t... shockleyqueisser limit one fundamental results... 0 1 0 0 0 0
11862 Effect of disorder on the optical response of ... communication present detailed study effect ch... 0 1 0 0 0 0
11863 Train on Validation: Squeezing the Data Lemon model selection validation data essential step... 0 0 0 1 0 0
11864 Local migration quantification method for scra... motivation scratch assay standard experimental... 0 0 0 0 1 0
11865 Assessing the level of merging errors for coau... robust analysis coauthorship networks based hi... 1 0 0 0 0 0
11866 Blood-based metabolic signatures in Alzheimer'... introduction identification bloodbased metabol... 0 0 0 1 0 0
11867 The Indecomposable Solutions of Linear Congrue... article considers minimal nonzero indecomposab... 0 0 1 0 0 0
11868 Weak multiplier Hopf algebras III. Integrals a... let adelta weak multiplier hopf algebra pair n... 0 0 1 0 0 0
11869 Monte-Carlo Tree Search by Best Arm Identifica... recent advances bandit tools techniques sequen... 1 0 0 1 0 0
11870 Efficient Model-Based Deep Reinforcement Learn... modern reinforcement learning algorithms reach... 0 0 0 1 0 0
11871 Griffiths Singularities in the Random Quantum ... antiferromagnetic ising chain transverse longi... 0 1 0 0 0 0
11872 Which Neural Net Architectures Give Rise To Ex... give rigorous analysis statistical behavior gr... 0 0 0 1 0 0
11873 Curriculum-Based Neighborhood Sampling For Seq... task multistep ahead prediction language model... 0 0 0 1 0 0
11874 Randomized Composable Coresets for Matching an... common approach designing scalable algorithms ... 1 0 0 0 0 0
11875 simode: R Package for statistical inference of... paper describe simode separable integral match... 0 0 0 1 0 0
11876 Positive scalar curvature and the Euler class prove following generalization classical lichn... 0 0 1 0 0 0
11877 Online Service with Delay paper introduce online service delay problem p... 1 0 0 0 0 0
11878 Comparison of dynamic mechanical properties of... influence superheat treatment microstructure d... 0 1 0 0 0 0
11879 On the accuracy and usefulness of analytic ene... paper presents refinements executioncachememor... 1 0 0 0 0 0
11880 A Simple Solution for Maximum Range Flight within standard framework quasisteady flight p... 0 0 1 0 0 0
11881 Multiscale Residual Mixture of PCA: Dynamic Di... paper interested problem learning overcomplete... 1 0 0 1 0 0
11882 On factorizations of graphical maps study categories governing infinity wheeled pr... 0 0 1 0 0 0
11883 Raking-ratio empirical process with auxiliary ... rakingratio method statistical computational m... 0 0 1 1 0 0
11884 Improving drug sensitivity predictions in prec... predicting efficacy drug given individual usin... 1 0 0 1 0 0
11885 On Vague Computers vagueness something everyone familiar fact peo... 1 0 0 0 0 0
11886 Exploiting OxRAM Resistive Switching for Dynam... present unique application oxram devices cmos ... 1 0 0 0 0 0
11887 Magnetic control of Goos-Hanchen shifts in a y... investigate gooshanchen gh shifts reflected tr... 0 1 0 0 0 0
11888 Effective mass of quasiparticles from thermody... discuss potential advantages calculating effec... 0 1 0 0 0 0
11889 Dynamics over Signed Networks signed network network link associated positiv... 1 0 0 0 0 0
11890 On the Estimation of Entropy in the FastICA Al... fastica algorithm popular dimension reduction ... 0 0 0 1 0 0
11891 Spatial-Temporal Imaging of Anisotropic Photoc... emerging single elemental layered material low... 0 1 0 0 0 0
11892 The maximal order of iterated multiplicative f... following wigert great number authors includin... 0 0 1 0 0 0
11893 Extending applicability of bimetric theory: ch... article extends bimetric formulations massive ... 0 1 0 0 0 0
11894 The Scaling Limit of High-Dimensional Online I... analyze dynamics online algorithm independent ... 1 1 0 1 0 0
11895 Direct characterization of a nonlinear photoni... integrated photonics leading platform quantum ... 0 1 0 0 0 0
11896 The Accuracy of Confidence Intervals for Field... comparing average citation impact research gro... 1 0 0 0 0 0
11897 Generalized Theta Functions. I generalizations classical theta functions prop... 0 1 0 0 0 0
11898 Constructing grids for molecular quantum dynam... challenge molecular quantum dynamics qd calcul... 0 1 0 0 0 0
11899 3D Pursuit-Evasion for AUVs paper consider problem pursuitevasion using mu... 1 0 0 0 0 0
11900 Local Gradient Estimates for Second-Order Nonl... theory secondorder nonlinear elliptic paraboli... 0 0 1 0 0 0
11901 Dynamic patterns of knowledge flows across tec... purpose study investigate structure evolution ... 1 1 0 0 0 0
11902 Accurate calculation of oblate spheroidal wave... alternative expressions calculating oblate sph... 0 0 1 0 0 0
11903 Fully Decentralized Policies for Multi-Agent S... learning cooperative policies multiagent syste... 1 1 1 0 0 0
11904 Ion distribution and ablation depth measuremen... ablation solid tin surfaces nanometerwavelengt... 0 1 0 0 0 0
11905 Measuring the Hubble constant with Type Ia sup... precise local measurements h rely observations... 0 1 0 0 0 0
11906 Accurate, Large Minibatch SGD: Training ImageN... deep learning thrives large neural networks la... 1 0 0 0 0 0
11907 Universal Construction of Cheater-Identifiable... conventional secret sharing cheaters submit po... 1 0 0 0 0 0
11908 Regrasp Planning Considering Bipedal Stability... paper presents center mass com based manipulat... 1 0 0 0 0 0
11909 Unsaturated deformable porous media flow with ... present paper continuum model introduced fluid... 0 0 1 0 0 0
11910 Active Mini-Batch Sampling using Repulsive Poi... convergence speed stochastic gradient descent ... 0 0 0 1 0 0
11911 Customizing First Person Image Through Desired... paper studies problem inverse visual path plan... 1 0 0 0 0 0
11912 Michell trusses in two dimensions as a Gamma-l... reconsider minimization compliance two dimensi... 0 0 1 0 0 0
11913 Moment analysis of highway-traffic clearance d... help planning intervehicular communication net... 0 1 0 0 0 0
11914 Single-image Tomography: 3D Volumes from 2D Cr... many different volumes could produce xray imag... 1 0 0 0 0 0
11915 Stochastic Methods for Composite and Weakly Co... consider minimization stochastic functionals c... 0 0 1 1 0 0
11916 Thermal Expansion of the Heavy-fermion Superco... performed highresolution powder xray diffracti... 0 1 0 0 0 0
11917 Versatile Auxiliary Classifier with Generative... conditional generators learn data distribution... 0 0 0 1 0 0
11918 A Lagrangian Model to Predict Microscallop Mot... need develop models predict motion microrobots... 1 0 0 0 0 0
11919 Towards a Bootstrap approach to higher orders ... employ hybrid approach determining anomalous d... 0 1 0 0 0 0
11920 Small-scale Effects of Thermal Inflation on Ha... study impact thermal inflation formation cosmo... 0 1 0 0 0 0
11921 Finiteness theorems for holomorphic mappings f... prove space dominantnonconstant holomorphic ma... 0 0 1 0 0 0
11922 Time and media-use of Italian Generation Y: di... time spent leisure minor research question ack... 1 0 0 1 0 0
11923 Recurrent Multimodal Interaction for Referring... paper interested problem image segmentation gi... 1 0 0 0 0 0
11924 Motion of a thin elliptic plate under symmetri... anisotropy friction force proved important fac... 0 1 0 0 0 0
11925 Combinatorial Auctions with Online XOS Bidders combinatorial auctions designer must decide al... 1 0 0 0 0 0
11926 Application of Convolutional Neural Network to... adaptability convolutional neural network cnn ... 1 0 0 1 0 0
11927 Bayesian inference in Y-linked two-sex branchi... ylinked twosex branching process mutations bli... 0 0 0 1 1 0
11928 Effective Theories for 2+1 Dimensional Non-Abe... work propose effective lowenergy theory large ... 0 1 0 0 0 0
11929 Coset space construction for the conformal gro... selfcontained method obtaining effective theor... 0 1 0 0 0 0
11930 The morphodynamics of 3D migrating cancer cells cell shape important biomarker previously exte... 0 0 0 0 1 0
11931 Evolution Strategies as a Scalable Alternative... explore use evolution strategies es class blac... 1 0 0 1 0 0
11932 IoT Localization for Bistatic Passive UHF RFID... passive radiofrequency identification rfid sys... 1 0 0 0 0 0
11933 Multidimensional upwind hydrodynamics on unstr... present new method numerical hydrodynamics use... 0 1 0 0 0 0
11934 Voice Conversion Based on Cross-Domain Feature... effective approach nonparallel voice conversio... 1 0 0 0 0 0
11935 Density matrix expansion based semi-local exch... exchange hole principle constituent density fu... 0 1 0 0 0 0
11936 CANDELS Sheds Light on the Environmental Quenc... investigate environmental quenching galaxies e... 0 1 0 0 0 0
11937 BP-homology of elementary abelian 2-groups: BP... determine bpmodule structure mod higher filtra... 0 0 1 0 0 0
11938 Probabilistic Active Learning of Functions in ... consider problem learning functions computing ... 1 0 0 1 0 0
11939 Neural Episodic Control deep reinforcement learning methods attain sup... 1 0 0 1 0 0
11940 School bus routing by maximizing trip compatib... school bus planning usually divided routing sc... 1 0 0 0 0 0
11941 Solvability of abstract semilinear equations b... work proivied new simpler proof global diffeom... 0 0 1 0 0 0
11942 Learning a Generative Model for Validity in Co... deep generative models successfully used learn... 1 0 0 1 0 0
11943 On discrete structures in finite Hilbert spaces present brief review discrete structures finit... 0 0 1 0 0 0
11944 Selected topics on Toric Varieties article based series lectures toric varieties ... 0 0 1 0 0 0
11945 Control Capacity feedback control actively dissipates uncertain... 1 0 1 0 0 0
11946 Benefits from Superposed Hawkes Processes superposition temporal point processes studied... 0 0 0 1 0 0
11947 Network Embedding as Matrix Factorization: Uni... since invention wordvec skipgram model signifi... 1 0 0 1 0 0
11948 Differentially Private Query Learning: from Da... development big data cloud data sharing privac... 1 0 0 0 0 0
11949 Flexible Level-1 Consensus Ensuring Stable Soc... level consensus property preferenceprofile int... 1 0 0 0 0 0
11950 Fracture imaging within a granitic rock aquife... sparsely spaced highly permeable fractures gra... 0 1 0 0 0 0
11951 The asymptotic behavior of automorphism groups... purpose paper investigate asymptotic behavior ... 0 0 1 0 0 0
11952 Bootstrap Robust Prescriptive Analytics address problem prescribing optimal decision f... 0 0 0 1 0 0
11953 Tverberg type theorems for matroids paper show variant colorful tverbergs theorem ... 0 0 1 0 0 0
11954 Dynamic Erdős-Rényi graphs propose two classes dynamic versions classical... 0 0 1 0 0 0
11955 Mining Density Contrast Subgraphs dense subgraph discovery key primitive many gr... 1 0 0 0 0 0
11956 Unsupervised Learning by Predicting Noise convolutional neural networks provide visual f... 1 0 0 1 0 0
11957 Trajectory Generation for Millimeter Scale Fer... microrobots potential impact many areas micros... 1 0 0 0 0 0
11958 Decoupled Block-Wise ILU(k) Preconditioner on GPU research investigates implementation mechanism... 1 0 0 0 0 0
11959 Multi-agent Economics and the Emergence of Cri... dual crises subprime mortgage crisis global fi... 0 0 0 0 0 1
11960 Error-Correcting Neural Sequence Prediction paper propose novel neural language modelling ... 1 0 0 1 0 0
11961 Sampling as optimization in the space of measu... study sampling optimization space measures foc... 0 0 0 1 0 0
11962 Deep laser cooling in optical trap: two-level ... study laser cooling mg atoms dipole optical tr... 0 1 0 0 0 0
11963 JADE: Joint Autoencoders for Dis-Entanglement problem feature disentanglement explored liter... 1 0 0 1 0 0
11964 Numerical Simulations of Collisional Cascades ... consider longterm collisional dynamical evolut... 0 1 0 0 0 0
11965 Causal Effect Inference with Deep Latent-Varia... learning individuallevel causal effects observ... 1 0 0 1 0 0
11966 Gamma-ray bursts and their relation to astropa... article gives overview gammaray bursts grbs re... 0 1 0 0 0 0
11967 Discrete-time Risk-sensitive Mean-field Games paper study class discretetime meanfield games... 1 0 0 0 0 0
11968 Glasner's problem for Polish groups with metri... problem glasner known glasners problem asks wh... 0 0 1 0 0 0
11969 VAE with a VampPrior many different methods train deep generative m... 1 0 0 1 0 0
11970 Fast and Strong Convergence of Online Learning... paper study online learning algorithm without ... 1 0 0 1 0 0
11971 A new continuum theory for incompressible swel... swelling media eg gels tumors usually describe... 0 0 1 0 0 0
11972 The Hidden Binary Search Tree:A Balanced Rotat... paper generalize definition search trees st en... 1 0 0 0 0 0
11973 The sdB pulsating star V391 Peg and its putati... v peg alias hs subdwarf b sdb pulsating star s... 0 1 0 0 0 0
11974 Rates of convergence for inexact Krasnosel'ski... study convergence inexact version classical kr... 0 0 1 0 0 0
11975 Automatic Estimation of Fetal Abdominal Circum... ultrasound diagnosis routinely used obstetrics... 1 0 0 1 0 0
11976 Heavy fermion quantum criticality at dilute ca... study quantum phase transitions nickel pnctide... 0 1 0 0 0 0
11977 Invariant Gibbs measures for the 2-d defocusin... consider defocusing nonlinear wave equations n... 0 0 1 0 0 0
11978 Topological Analysis and Synthesis of Structur... fundamental characteristic computer networks t... 1 0 0 0 0 0
11979 A distributed-memory hierarchical solver for g... present parallel hierarchical solver general s... 1 0 0 0 0 0
11980 Quasar: Datasets for Question Answering by Sea... present two new largescale datasets aimed eval... 1 0 0 0 0 0
11981 Choreographic and Somatic Approaches for the D... robotic systems moved factory work cells human... 1 0 0 0 0 0
11982 Development of verification system of socio-de... important task developing verification system ... 1 0 0 0 0 0
11983 Demonstration of an efficient, photonic-based ... demonstrate first time efficient photonicbased... 0 1 0 0 0 0
11984 A Game of Random Variables paper analyzes simple game n players fix mean ... 1 0 0 0 0 0
11985 Parallel Structure from Motion from Local Incr... paper tackle accurate consistent structure mot... 1 0 0 0 0 0
11986 Proceedings 2nd Workshop on Models for Formal ... volume contains proceedings mars second worksh... 1 0 0 0 0 0
11987 Negative electronic compressibility and nanosc... electron density highly crystalline thin films... 0 1 0 0 0 0
11988 Symbolic Music Genre Transfer with CycleGAN deep generative models variational autoencoder... 1 0 0 0 0 0
11989 Methodology for Multi-stage, Operations- and U... develop new optimization methodology planning ... 1 1 1 0 0 0
11990 PC Proxy: A New Method of Dynamical Tracer Rec... detailed development principal component proxy... 0 1 0 0 0 0
11991 Magnetic Correlations in the Two-dimensional R... repulsive fermi hubbard model square lattice r... 0 1 0 0 0 0
11992 Bridge type classification: supervised learnin... key phase bridge design process selection stru... 0 0 0 1 0 0
11993 Automatic Question-Answering Using A Deep Simi... automatic questionanswering classical problem ... 1 0 0 0 0 0
11994 Long ties accelerate noisy threshold-based con... changes network structure substantially affect... 1 0 0 0 0 0
11995 Detecting topological transitions in two dimen... show evolution twocomponent particles governed... 0 1 0 0 0 0
11996 A search for optical bursts from the repeating... present search optical bursts repeating fast r... 0 1 0 0 0 0
11997 de Haas-van Alphen measurement of the antiferr... report results de haasvan alphen dhva measurem... 0 1 0 0 0 0
11998 Indoor Frame Recovery from Refined Line Segments important yet challenging problem understandin... 1 0 0 0 0 0
11999 Fairly Allocating Contiguous Blocks of Indivis... paper study classic problem fairly allocating ... 1 0 0 0 0 0
12000 Optimization and Testing in Linear Non-Gaussia... independent component analysis ica decomposes ... 0 0 1 1 0 0
12001 New Horizons Ring Collision Hazard: Constraint... new horizons spacecrafts nominal trajectory cr... 0 1 0 0 0 0
12002 Dependability of Sensor Networks for Industria... maintenance important activity industry perfor... 1 0 0 0 0 0
12003 On Markov Chain Gradient Descent stochastic gradient methods workhorse algorith... 0 0 0 1 0 0
12004 Reduction of Second-Order Network Systems with... paper proposes general framework structurepres... 1 0 0 0 0 0
12005 Higher-rank graph algebras are iterated Cuntz-... given finitely aligned kgraph lambda let lambd... 0 0 1 0 0 0
12006 Ultracold Atomic Gases in Artificial Magnetic ... phenomenon hardly found accompanied physical p... 0 1 0 0 0 0
12007 Stream VByte: Faster Byte-Oriented Integer Com... arrays integers often compressed search engine... 1 0 0 0 0 0
12008 Kondo Signatures of a Quantum Magnetic Impurit... study kondo physics quantum magnetic impurity ... 0 1 0 0 0 0
12009 Waldschmidt constants for Stanley-Reisner idea... present note study waldschmidt constants stanl... 0 0 1 0 0 0
12010 FO model checking of geometric graphs past two decades main focus research firstorde... 1 0 0 0 0 0
12011 Pseudo-linear regression identification based ... paper generalize three identification recursiv... 1 0 0 0 0 0
12012 Lower bounds for weak approximation errors for... although number semilinear stochastic wave equ... 0 0 1 0 0 0
12013 Structured low-rank matrix learning: algorithm... consider problem learning lowrank matrix const... 0 0 0 1 0 0
12014 Greed Works - Online Algorithms For Unrelated ... paper establishes first performance guarantees... 1 0 0 0 0 0
12015 On a combinatorial curvature for surfaces with... paper introduce new combinatorial curvature tr... 0 0 1 0 0 0
12016 Improving End-to-End Speech Recognition with P... connectionist temporal classification ctc wide... 1 0 0 1 0 0
12017 Better Protocol for XOR Game using Communicati... buhrman showed efficient communication protoco... 1 0 1 0 0 0
12018 DTN: A Learning Rate Scheme with Convergence R... propose novel diminishing learning rate scheme... 1 0 0 1 0 0
12019 Minimax Distribution Estimation in Wasserstein... wasserstein metric important measure distance ... 0 0 0 1 0 0
12020 Uniformization and Steinness shown unit ball mathbb cn complex manifold uni... 0 0 1 0 0 0
12021 Recent progress on conditional randomness article recent progress mlrandomness respect c... 1 0 1 0 0 0
12022 The evolution of red supergiants to supernovae red supergiants rsgs predicted end lives type ... 0 1 0 0 0 0
12023 Conformally invariant elliptic Liouville equat... symmetry algebra real elliptic liouville equat... 0 1 1 0 0 0
12024 Discrete diffusion Lyman-alpha radiative transfer due accuracy generality monte carlo radiative ... 0 1 0 0 0 0
12025 Kosterlitz-Thouless transition and vortex-anti... present theoretical study finitetemperature ko... 0 1 0 0 0 0
12026 Chiral Optical Tamm States: Temporal Coupled-M... chiral optical tamm state cots special localiz... 0 1 0 0 0 0
12027 Functional inequalities for Fox-Wright functions paper aim show mean value inequalities foxwrig... 0 0 1 0 0 0
12028 Collaboration Spheres: a Visual Metaphor to Sh... research objects ros semantically enhanced agg... 1 0 0 0 0 0
12029 Intelligent flat-and-textureless object manipu... work introduces approach flat textureless obje... 1 0 0 0 0 0
12030 Constraints on the Intergalactic Magnetic Fiel... pair creation cosmic infrared background subse... 0 1 0 0 0 0
12031 Learning Deep Representations with Probabilist... knowledge transfer kt techniques tackle proble... 0 0 0 1 0 0
12032 Pluricanonical Periods over Compact Riemann Su... article attempt generalize riemanns bilinear r... 0 0 1 0 0 0
12033 Stochastic Gradient Descent: Going As Fast As ... applied training deep neural networks stochast... 0 0 0 1 0 0
12034 Stacked Convolutional and Recurrent Neural Net... paper studies detection bird calls audio segme... 1 0 0 0 0 0
12035 Gibbs posterior convergence and the thermodyna... paper consider bayesian framework making infer... 0 0 1 1 0 0
12036 Retrieval Analysis of the Emission Spectrum of... analyze emission spectrum hot jupiter waspb us... 0 1 0 0 0 0
12037 Model Learning for Look-ahead Exploration in C... propose exploration method incorporates lookah... 1 0 0 0 0 0
12038 Efficient and Scalable View Generation from a ... singleimagebased view generation sivg importan... 1 0 0 0 0 0
12039 An Empirical Analysis of Approximation Algorit... applications many disciplines traveling salesm... 1 0 0 0 0 0
12040 Dynamical compensation and structural identifi... concept dynamical compensation recently introd... 1 0 0 0 0 0
12041 Characterization of the beam from the RFQ of t... mev cw rfq installed commissioned fermilabs te... 0 1 0 0 0 0
12042 Money on the Table: Statistical information ig... softmax standard final layer used neural nets ... 1 0 0 1 0 0
12043 Generalized Stieltjes constants and integrals ... note recall kummers fourier series expansion p... 0 0 1 0 0 0
12044 On the Combinatorial Lower Bound for the Exten... study extensions polytopes combinatorial optim... 1 0 1 0 0 0
12045 An Introduction to Classic DEVS devs popular formalism modelling complex dynam... 1 0 0 0 0 0
12046 Nanoscale Solid State Batteries Enabled By The... several active areas research novel energy sto... 0 1 0 0 0 0
12047 Classification of crystallization outcomes usi... machine recognition crystallization outcomes m... 0 0 0 1 1 0
12048 Private Information, Credit Risk and Graph Str... research investigated potential improving peer... 1 0 0 0 0 1
12049 Nonmonotonous classical magneto-conductivity o... magnetotransport measurements combination mole... 0 1 0 0 0 0
12050 Pushing STEM-education through a social-media-... science education crucial issue longterm impac... 1 0 0 0 0 0
12051 Hidden area and mechanical nonlinearities in f... investigated effect outofplane crumpling mecha... 0 1 0 0 0 0
12052 Solving Partial Differential Equations on Mani... solutions partial differential equations pdes ... 1 0 1 0 0 0
12053 Zonal Flow Magnetic Field Interaction in the S... four giant planets solar system feature zonal ... 0 1 0 0 0 0
12054 Superpixel-based Semantic Segmentation Trained... semantic segmentation like fields computer vis... 1 0 0 0 0 0
12055 Photometric Stereo by Hemispherical Metric Emb... photometric stereo methods seek reconstruct sh... 1 0 0 0 0 0
12056 Time Reversal, SU(N) Yang-Mills and Cobordisms... introduce web strongly correlated interacting ... 0 1 1 0 0 0
12057 Forest-based methods and ensemble model output... rainfall ensemble forecasts skillful low preci... 0 0 1 1 0 0
12058 Non interactive simulation of correlated distr... basic problem information theory following let... 1 0 1 0 0 0
12059 Effective Completeness for S4.3.1-Theories wit... computable model theory modal logic initiated ... 0 0 1 0 0 0
12060 DeepTingle deeptingle text prediction classification syst... 1 0 0 0 0 0
12061 Degrees of Freedom in Cached MIMO Relay Networ... ability physical layer relay caching increase ... 1 0 0 0 0 0
12062 A perturbation theory for water with an associ... theoretical description thermodynamics water c... 0 1 0 0 0 0
12063 Finite Sample Complexity of Sequential Monte C... present bounds finite sample error sequential ... 0 0 0 1 0 0
12064 Reduced chemistry for butanol isomers at engin... butanol received significant research attentio... 0 1 0 0 0 0
12065 A Measure of Dependence Between Discrete and C... mutual information mi useful tool recognition ... 0 0 0 1 0 0
12066 Stein Variational Online Changepoint Detection... bayesian online changepoint detection bocpd ad... 1 0 0 1 0 0
12067 Quantum Teleportation and Super-dense Coding i... let mathcalbd unital calgebra generated elemen... 0 0 1 0 0 0
12068 A Practical Randomized CP Tensor Decomposition candecompparafac cp decomposition leading meth... 1 0 0 0 0 0
12069 Two dimensional potential flow around a rectan... potential flow around circular cylinder common... 0 1 0 1 0 0
12070 Fixed Price Approximability of the Optimal Gai... bilateral trade fundamental economic scenario ... 1 0 0 0 0 0
12071 $^{139}$La and $^{63}$Cu NMR investigation of ... report la cu nmr investigation successive char... 0 1 0 0 0 0
12072 An Exploratory Study of Field Failures field failures failures caused faults escape t... 1 0 0 0 0 0
12073 Crowdsourcing Predictors of Residential Electr... crowdsourcing successfully applied many domain... 1 0 0 1 0 0
12074 One-dimensional fluids with positive potentials study class onedimensional classical fluids pe... 0 1 1 0 0 0
12075 Recovery of Sparse and Low Rank Components of ... letter propose algorithm recovery sparse low r... 1 0 0 1 0 0
12076 Reduced Order Modelling for the Simulation of ... contributions discusses simulation magnetother... 1 1 0 0 0 0
12077 Life in the "Matrix": Human Mobility Patterns ... wide adoption multicommunity setting many popu... 1 0 0 0 0 0
12078 A Novel Subclass of Univalent Functions Involv... paper introduce investigate novel class analyt... 0 0 1 0 0 0
12079 Local bandwidth selection for kernel density e... propose adaptive estimator stationary distribu... 0 0 1 1 0 0
12080 Sparse geometries handling in lattice-Boltzman... describe highperformance implementation lattic... 1 0 0 0 0 0
12081 From Multimodal to Unimodal Webpages for Devel... multimodal web elements text images associated... 1 0 0 1 0 0
12082 Light curves of hydrogen-poor Superluminous Su... investigate lightcurve properties sample spect... 0 1 0 0 0 0
12083 Sharing Means Renting?: An Entire-marketplace ... airbnb online marketplace accommodations exper... 1 1 0 0 0 0
12084 What Happens - After the First Race? Enhancing... dynamic race detection problem determining obs... 1 0 0 0 0 0
12085 Proceedings of the Workshop on Data Mining for... process exploring exploiting oil gas og genera... 1 0 0 1 0 0
12086 Chiral magnetic effect of light study photonic analog chiral magnetic vortical... 0 1 0 0 0 0
12087 New Pressure-Induced Polymorphic Transitions o... effects pressure crystal structure three known... 0 1 0 0 0 0
12088 Optimal transport and integer partitions link theory optimal transportation theory inte... 0 0 1 0 0 0
12089 An Automated Auto-encoder Correlation-based He... paper studies intelligent ultimate technique h... 1 0 0 1 0 0
12090 Temporal Type Theory: A topos-theoretic approa... book introduces temporal type theory first kin... 0 0 1 0 0 0
12091 On Poletsky theory of discs in compact manifolds provide direct construction poletsky discs via... 0 0 1 0 0 0
12092 Continuous DR-submodular Maximization: Structu... drsubmodular continuous functions important ob... 1 0 0 1 0 0
12093 A Structural Characterization for Certifying R... symmetric matrix robinsonian rows columns simu... 1 0 1 0 0 0
12094 A new scenario for gravity detection in plants... detection gravity plays fundamental role growt... 0 1 0 0 0 0
12095 Techniques for proving Asynchronous Convergenc... markov chain monte carlo mcmc methods gibbs sa... 1 0 0 1 0 0
12096 Predicting Hurricane Trajectories using a Recu... hurricanes cyclones circulating defined center... 0 0 0 1 0 0
12097 HJB equations in infinite dimension and optima... stochastic optimal control problem driven abst... 0 0 1 0 0 0
12098 Developing a Method to Determine Electrical Co... magnetic induction first proposed planetary he... 0 1 0 0 0 0
12099 A KiDS weak lensing analysis of assembly bias ... investigate possible signatures halo assembly ... 0 1 0 0 0 0
12100 VIP: Vortex Image Processing package for high-... present vortex image processing vip library py... 0 1 0 0 0 0
12101 Domain-Sharding for Faster HTTP/2 in Lossy Cel... http h new standard web communications already... 1 0 0 0 0 0
12102 Extremal copositive matrices with minimal zero... let cal cn extremal copositive matrix unit dia... 0 0 1 0 0 0
12103 A Projected Inverse Dynamics Approach for Dual... propose method dualarm manipulation rigid obje... 1 0 0 0 0 0
12104 AC-Biased Shift Registers as Fabrication Proce... develop acbiased shift register introduced pre... 0 1 0 0 0 0
12105 Designing diagnostic platforms for analysis of... emerging era personalized medicine relies medi... 0 0 0 0 1 0
12106 Stopping GAN Violence: Generative Unadversaria... costs human violence attracted great deal atte... 1 0 0 1 0 0
12107 Cas d'existence de solutions d'EDP give examples existence solutions geometric pd... 0 0 1 0 0 0
12108 The Onset of Thermally Unstable Cooling from t... present accurate mass thermodynamic profiles s... 0 1 0 0 0 0
12109 The linearized Calderon problem in transversal... article study linearized anisotropic calderon ... 0 0 1 0 0 0
12110 Almost isometries between Teichmüller spaces prove teichmller space surfaces given boundary... 0 0 1 0 0 0
12111 Distributed Policy Iteration for Scalable Appr... decision making multiagent systems mas great c... 1 0 0 0 0 0
12112 Integrable Floquet dynamics discuss several classes integrable floquet sys... 0 1 1 0 0 0
12113 Topologically independent sets in precompact g... simple fact subgroup generated subset abelian ... 0 0 1 0 0 0
12114 Efficient Simulation of Temperature Evolution ... transmission lines vital components power syst... 1 0 0 0 0 0
12115 Multiuser Communication Based on the DFT Eigen... eigenstructure discrete fourier transform dft ... 1 0 0 1 0 0
12116 Paris-Lille-3D: a large and high-quality groun... paper introduces new urban point cloud dataset... 1 0 0 1 0 0
12117 Viden: Attacker Identification on In-Vehicle N... various defense schemes determine presence att... 1 0 0 0 0 0
12118 Constraining black hole spins with low-frequen... black hole xray transients show variety state ... 0 1 0 0 0 0
12119 On a generalization of Lie($k$): a CataLAnKe t... define generalization free lie algebra based n... 0 0 1 0 0 0
12120 Inference for Multiple Change-points in Linear... paper develop generalized likelihood ratio sca... 0 0 1 1 0 0
12121 Acceleration of Convergence of Some Infinite S... paper deal acceleration convergence infinite s... 0 0 1 0 0 0
12122 Fiber Orientation Estimation Guided by a Deep ... diffusion magnetic resonance imaging dmri curr... 1 0 0 0 0 0
12123 The hypotensive effect of activated apelin rec... apelinergic system important player regulation... 0 0 0 0 1 0
12124 The Shape of Bouncing Universes happens general closed oscillating universes g... 0 1 0 0 0 0
12125 Multi-sensor authentication to improve smartph... widespread use smartphones gives rise new secu... 1 0 0 0 0 0
12126 The ALF (Algorithms for Lattice Fermions) proj... algorithms lattice fermions package provides g... 0 1 0 0 0 0
12127 A Survey on Blockchain Technology and Its Pote... disruptive technology blockchain particularly ... 1 0 0 0 0 0
12128 Toroidal trapped surfaces and isoperimetric in... analytically construct infinite number trapped... 0 0 1 0 0 0
12129 Federated Tensor Factorization for Computation... tensor factorization models offer effective ap... 1 0 0 1 0 0
12130 Optical fluxes in coupled $\cal PT$-symmetric ... work first examine transverse longitudinal flu... 0 1 0 0 0 0
12131 QCRI Machine Translation Systems for IWSLT 16 paper describes qcris machine translation syst... 1 0 0 0 0 0
12132 Detecting the direction of a signal on high-di... consider one important problems directional st... 0 0 1 1 0 0
12133 Hamiltonicity is Hard in Thin or Polygonal Gri... arkin et al initiated systematic study complex... 1 0 0 0 0 0
12134 More on cyclic amenability of the Lau product ... two banach algebras b tlau product atimest b r... 0 0 1 0 0 0
12135 Data-Augmented Contact Model for Rigid Body Si... accurately modeling contact behaviors realworl... 1 0 0 0 0 0
12136 Assessing the Performance of Deep Learning Alg... retailer management newsvendor problem widely ... 1 0 0 1 0 0
12137 STWalk: Learning Trajectory Representations in... analyzing temporal behavior nodes timevarying ... 1 0 0 1 0 0
12138 A Study on Performance and Power Efficiency of... paper present novel cache design based multile... 1 0 0 0 0 0
12139 Characterization theorems for $Q$-independent ... let x locally compact abelian group character ... 0 0 1 0 0 0
12140 Controlling competing orders via non-equilibri... ultrafast perturbations offer unique tool mani... 0 1 0 0 0 0
12141 The Junk News Aggregator: Examining junk news ... recent years phenomenon online misinformation ... 1 0 0 0 0 0
12142 Quantum Blockchain using entanglement in time conceptual design quantum blockchain proposed ... 0 0 0 0 0 1
12143 Sensor Transformation Attention Networks recent work encoderdecoder models sequencetose... 1 0 0 0 0 0
12144 Outrageously Large Neural Networks: The Sparse... capacity neural network absorb information lim... 1 0 0 1 0 0
12145 Finite Size Corrections and Likelihood Ratio F... paper study principal components analysis regi... 0 0 1 1 0 0
12146 Meta-Learning by Adjusting Priors Based on Ext... metalearning agent extracts knowledge observed... 1 0 0 1 0 0
12147 Accurate Optical Flow via Direct Cost Volume P... present optical flow estimation approach opera... 1 0 0 0 0 0
12148 Linear Convergence of a Frank-Wolfe Type Algor... propose rankk variant classical frankwolfe alg... 1 0 0 1 0 0
12149 A Note on Exponential Inequalities in Hilbert ... manuscript present exponential inequalities sp... 0 0 1 1 0 0
12150 Polygons pulled from an adsorbing surface consider selfavoiding lattice polygons hypercu... 0 1 0 0 0 0
12151 O$^2$TD: (Near)-Optimal Off-Policy TD Learning temporal difference learning residual gradient... 1 0 0 1 0 0
12152 Comprehensive classification for Bose-Fermi mi... present analytical studies bosonfermion mixtur... 0 1 0 0 0 0
12153 Navigation Objects Extraction for Better Conte... existing works extracting navigation objects w... 1 0 0 0 0 0
12154 Source Selection for Cluster Weak Lensing Meas... present optimized source galaxy selection sche... 0 1 0 0 0 0
12155 Dense blowup for parabolic SPDEs main result paper examples stochastic partial ... 0 0 1 0 0 0
12156 Batched High-dimensional Bayesian Optimization... optimization highdimensional blackbox function... 1 0 1 1 0 0
12157 Classifying Time-Varying Complex Networks on t... core understanding dynamical systems ability m... 1 0 0 0 0 0
12158 An Adversarial Regularisation for Semi-Supervi... propose method semisupervised training structu... 1 0 0 0 0 0
12159 Elliptic operators on refined Sobolev scales o... introduce refined sobolev scale vector bundle ... 0 0 1 0 0 0
12160 CoDraw: Collaborative Drawing as a Testbed for... work propose goaldriven collaborative task con... 1 0 0 0 0 0
12161 Learning Fast and Slow: PROPEDEUTICA for Real-... paper introduce evaluate propedeutica novel me... 1 0 0 1 0 0
12162 Metachronal motion of artificial magnetic cilia organisms use hairlike cilia beat metachronal ... 0 0 0 0 1 0
12163 Power-of-$d$-Choices with Memory: Fluid Limit ... multiserver distributed queueing systems acces... 1 0 0 0 0 0
12164 Structural Compression of Convolutional Neural... convolutional neural networks cnns stateofthea... 1 0 0 0 0 0
12165 Testing the Young Neutron Star Scenario with P... recently repeating fast radio burst frb confir... 0 1 0 0 0 0
12166 Critical Vertices and Edges in $H$-free Graphs vertex edge graph critical deletion reduces ch... 1 0 0 0 0 0
12167 Transverse Weitzenböck formulas and de Rham co... prove transverse weitzenbck identities horizon... 0 0 1 0 0 0
12168 An adaptive Newton algorithm for optimal contr... work present adaptive newtontype method solve ... 0 0 1 0 0 0
12169 Characterization of the Two-Dimensional Five-F... fedorov discovered convex domain form lattice ... 0 0 1 0 0 0
12170 Projectors separating spectra for $L^2$ on pse... spectrum l pseudounitary group upq assume pge ... 0 0 1 0 0 0
12171 Predicting Individual Physiologically Acceptab... objective predict patientspecific vitals deeme... 1 0 0 1 0 0
12172 Unsupervised learning of object frames by dens... one key challenges visual perception extract a... 1 0 0 1 0 0
12173 Channel surfaces in Lie sphere geometry discuss channel surfaces context lie sphere ge... 0 0 1 0 0 0
12174 A Parallelizable Acceleration Framework for Pa... paper presents acceleration framework packing ... 1 0 0 1 0 0
12175 $L^p$ estimates for the Bergman projection on ... obtain lp regularity bergman projection reinha... 0 0 1 0 0 0
12176 Generic Axiomatization of Families of Noncross... present simple encoding unlabeled noncrossing ... 1 0 0 0 0 0
12177 Computation of Optimal Transport on Discrete M... paper investigate numerical approximation anal... 0 0 1 0 0 0
12178 Torsions of integral homology and cohomology o... according result ehresmann torsions integral h... 0 0 1 0 0 0
12179 PACO: Signal Restoration via PAtch COnsensus many signal processing algorithms operate brea... 0 0 0 1 0 0
12180 Hyperplane arrangements associated to symplect... study hyperplane arrangements associated via m... 0 0 1 0 0 0
12181 CTCModel: a Keras Model for Connectionist Temp... report extension keras model called ctcmodel p... 1 0 0 1 0 0
12182 Software Distribution Transparency and Auditab... large user base relies software updates provid... 1 0 0 0 0 0
12183 Imputation Approaches for Animal Movement Mode... analysis telemetry data common animal ecologic... 0 0 0 1 0 0
12184 Motion planning in high-dimensional spaces motion planning key tool allows robots navigat... 1 0 0 0 0 0
12185 Emergent low-energy bound states in the two-or... repulsive coulomb interaction electrons differ... 0 1 0 0 0 0
12186 Improved thermal lattice Boltzmann model for s... paper improved thermal lattice boltzmann lb mo... 0 1 0 0 0 0
12187 A fresh look at effect aliasing and interactio... interactions effect aliasing among fundamental... 0 0 0 1 0 0
12188 Effects of sampling skewness of the importance... importanceweighting popular wellresearched tec... 0 0 0 1 0 0
12189 Minimizing the Cost of Team Exploration group mobile agents given task explore edgewei... 1 0 0 0 0 0
12190 Exponential Source/Channel Duality propose sourcechannel duality exponential regi... 1 0 0 0 0 0
12191 Delta Theorem in the Age of High Dimensions provide new version delta theorem takes accoun... 0 0 1 1 0 0
12192 Deep Learning Interior Tomography for Region-o... interior tomography regionofinterest roi imagi... 1 0 0 1 0 0
12193 Structured Parallel Programming for Monte Carl... paper present new algorithm parallel monte car... 1 0 0 0 0 0
12194 Single-Atom Scale Structural Selectivity in Te... extreme nanowires ens represent ultimate class... 0 1 0 0 0 0
12195 Navigating through the R packages for movement advent miniaturized biologging devices provide... 0 0 0 0 1 0
12196 Image classification and retrieval with random... study image classification retrieval performan... 0 0 0 1 0 0
12197 Spatial dynamics of flower organ formation understanding emergence biological structures ... 0 0 0 0 1 0
12198 Percent Change Estimation in Large Scale Onlin... online experiments fundamental component devel... 0 0 0 1 0 0
12199 Characterization of Near-Earth Asteroids using... present vri spectrophotometry nearearth astero... 0 1 0 0 0 0
12200 Stochastic comparisons of series and parallel ... paper discuss stochastic comparisons parallel ... 0 0 1 1 0 0
12201 Statistical inference in two-sample summary-da... mendelian randomization mr method exploiting g... 0 0 0 1 0 0
12202 Edgeworth correction for the largest eigenvalu... study improved approximations distribution lar... 0 0 1 1 0 0
12203 On one nearly everywhere continuous and nowher... paper devoted investigation following function... 0 0 1 0 0 0
12204 Hochschild cohomology for periodic algebras of... describe dimensions low hochschild cohomology ... 0 0 1 0 0 0
12205 Fracton Models on General Three-Dimensional Ma... fracton models collection exotic gapped lattic... 0 1 0 0 0 0
12206 Topic Modeling on Health Journals with Regular... topic modeling enables exploration compact rep... 0 0 0 1 0 0
12207 On the Taylor coefficients of a subclass of me... let mathcalvplambda collection functions f def... 0 0 1 0 0 0
12208 Loss Surfaces, Mode Connectivity, and Fast Ens... loss functions deep neural networks complex ge... 0 0 0 1 0 0
12209 On the scaling patterns of infectious disease ... urban areas larger connected populations offer... 0 0 0 0 1 0
12210 Homological subsets of Spec investigate homological subsets prime spectrum... 0 0 1 0 0 0
12211 Mean field repulsive Kuramoto models: Phase lo... phenomenon selfsynchronization populations osc... 0 0 0 0 1 0
12212 Signal tracking beyond the time resolution of ... study causal waveform estimation tracking time... 0 1 0 0 0 0
12213 Case Study: Explaining Diabetic Retinopathy De... report applied integrated gradients explaining... 1 0 0 0 0 0
12214 6.2-GHz modulated terahertz light detection us... fast detection terahertz radiation great impor... 0 1 0 0 0 0
12215 Inference via low-dimensional couplings investigate lowdimensional structure determini... 0 0 0 1 0 0
12216 A unified thermostat scheme for efficient conf... show unified secondorder scheme constructing s... 0 1 0 0 0 0
12217 Wide Bandwidth, Frequency Modulated Free Elect... shown via theory simulation resonant frequency... 0 1 0 0 0 0
12218 A Transformation-Proximal Bundle Algorithm for... paper presents novel transformationproximal bu... 1 0 0 0 0 0
12219 Dual SVM Training on a Budget present dual subspace ascent algorithm support... 0 0 0 1 0 0
12220 AWAKE readiness for the study of the seeded se... awake protondriven plasma wakefield accelerati... 0 1 0 0 0 0
12221 Exploring the Psychological Basis for Transiti... lieu abstract first paragraph species remotely... 0 0 0 0 1 0
12222 Well quasi-orders and the functional interpret... purpose article study role gdels functional in... 1 0 1 0 0 0
12223 A local limit theorem for Quicksort key compar... proved rgnier rsler number key comparisons req... 0 0 1 0 0 0
12224 On the Computation of Kantorovich-Wasserstein ... work present method compute kantorovich distan... 0 0 0 1 0 0
12225 Efficient anchor loss suppression in coupled n... elastic dissipation radiation towards substrat... 0 1 0 0 0 0
12226 Searching for previously unknown classes of ob... proceedings application fuzzy support vector m... 0 1 0 0 0 0
12227 Stability of laminar Couette flow of compressi... cylindrical couette flow subject main focus lo... 0 1 0 0 0 0
12228 A Hierarchical Max-infinitely Divisible Proces... understanding spatial extent extreme precipita... 0 0 0 1 0 0
12229 The dependence of cluster galaxy properties on... present study connection brightest cluster gal... 0 1 0 0 0 0
12230 Gaussian Prototypical Networks for Few-Shot Le... propose novel architecture kshot classificatio... 1 0 0 1 0 0
12231 Uncertainty principle and geometry of the infi... study pairs projections pifchiif qjf leftchij ... 0 0 1 0 0 0
12232 Existence and symmetry of solutions for critic... paper concerned following fractional schrdinge... 0 0 1 0 0 0
12233 Early Detection of Promoted Campaigns on Socia... social media expose millions users every day i... 1 0 0 0 0 0
12234 Discovery of statistical equivalence classes u... discrete statistical models supported labelled... 0 0 1 1 0 0
12235 Can Boltzmann Machines Discover Cluster Updates ? boltzmann machines physics informed generative... 0 1 0 1 0 0
12236 Evaluating Graph Signal Processing for Neuroim... graph signal processing gsp promising framewor... 1 0 0 1 0 0
12237 Weak subsolutions to complex Monge-Ampère equa... compare various notions weak subsolutions dege... 0 0 1 0 0 0
12238 Bayesian inversion of convolved hidden Markov ... efficient assessment convolved hidden markov m... 0 1 0 1 0 0
12239 On the post-Keplerian corrections to the orbit... detailed numerical analyses orbital motion tes... 0 1 0 0 0 0
12240 Disentangling top-down vs. bottom-up and low-l... bottomup topdown well lowlevel highlevel facto... 0 0 0 0 1 0
12241 Sharp estimates for oscillatory integral opera... sharp range lpestimates class hrmandertype osc... 0 0 1 0 0 0
12242 Inhomogeneous Heisenberg Spin Chain and Quantu... hasimoto map various dynamical systems mapped ... 0 1 0 0 0 0
12243 An Information-Theoretic Analysis of Deduplica... deduplication finds removes longrange data dup... 1 0 1 0 0 0
12244 A neural network trained to predict future vid... deep neural networks take loose inspiration ne... 0 0 0 0 1 0
12245 Triangulum II: Not Especially Dense After All among milky way satellites discovered past thr... 0 1 0 0 0 0
12246 Improving the upper bound on the length of the... improve best known upper bound length shortest... 1 0 0 0 0 0
12247 Graphite: Iterative Generative Modeling of Graphs graphs fundamental abstraction modeling relati... 1 0 0 1 0 0
12248 Characteristic classes in general relativity o... characteristic classes spacetime manifolds dis... 0 1 0 0 0 0
12249 Observation of a 3D magnetic null point describe high resolution observations goes bcl... 0 1 0 0 0 0
12250 3D spatial exploration by E. coli echoes motor... unraveling bacterial strategies spatial explor... 0 0 0 0 1 0
12251 Unsupervised Latent Behavior Manifold Learning... behavioral annotation using signal processing ... 1 0 0 0 0 0
12252 Test map characterizations of local properties... local properties fundamental group pathconnect... 0 0 1 0 0 0
12253 Adaptive channel selection for DOA estimation ... present adaptive strategies antenna selection ... 1 0 0 0 0 0
12254 Photometric characterization of the Dark Energ... characterize variation photometric response da... 0 1 0 0 0 0
12255 Tough self-healing elastomers by molecular enf... selfhealing polymers crosslinked solely revers... 0 1 0 0 0 0
12256 SYK Models and SYK-like Tensor Models with Glo... paper study syk model syklike tensor model glo... 0 1 0 0 0 0
12257 Which Stars are Ionizing the Orion Nebula ? common assumption thetaori c dominant ionizing... 0 1 0 0 0 0
12258 FLaapLUC: a pipeline for the generation of pro... large majority high energy sources detected fe... 0 1 0 0 0 0
12259 A network approach to topic models one main computational scientific challenges m... 1 0 0 1 0 0
12260 CRPropa 3.1 -- A low energy extension based on... propagation charged cosmic rays galactic envir... 0 1 0 0 0 0
12261 Isometries in spaces of Kähler potentials space khler potentials compact khler manifold ... 0 0 1 0 0 0
12262 On the Statistical Challenges of Echo State Ne... echo state networks powerful recurrent neural ... 0 0 0 1 0 0
12263 Identifiability of Gaussian Structural Equatio... paper prove gaussian structural equation model... 0 0 0 1 0 0
12264 Smart Contract SLAs for Dense Small-Cell-as-a-... disruptive power blockchain technologies repre... 1 0 0 0 0 0
12265 On Kiguradze theorem for linear boundary value... investigate limiting behavior solutions nonhom... 0 0 1 0 0 0
12266 Fidelity Lower Bounds for Stabilizer and CSS Q... paper estimate fidelity stabilizer css codes f... 1 0 0 0 0 0
12267 Cross-validation improved by aggregation: Agghoo crossvalidation widely used selecting among fa... 0 0 1 1 0 0
12268 MAT: A Multimodal Attentive Translator for Ima... work formulate problem image captioning multim... 1 0 0 0 0 0
12269 A Semi-Supervised and Inductive Embedding Mode... mobile gaming emerged promising market billion... 0 0 0 1 0 0
12270 Sequential rerandomization seminal work morgan rubin considers rerandomiz... 0 0 0 1 0 0
12271 Neural SLAM: Learning to Explore with External... present approach agents learn representations ... 1 0 0 0 0 0
12272 Information Storage and Retrieval using Macrom... store information extremely highdensity datara... 1 1 0 0 0 0
12273 Morgan type uncertainty principle and unique c... paper morgan type uncertainty principle unique... 0 0 1 0 0 0
12274 Can the Journal Impact Factor Be Used as a Cri... early researchers careers difficult assess goo... 1 1 0 0 0 0
12275 Deep MIMO Detection paper consider use deep neural networks contex... 1 0 0 1 0 0
12276 Cross-View Image Matching for Geo-localization... paper address problem crossview image geolocal... 1 0 0 0 0 0
12277 Understanding the Feedforward Artificial Neura... recent years deep learning based artificial ne... 1 0 0 0 0 0
12278 Excitation of multiple 2-mode parametric reson... demonstrate autoparametric excitation two dist... 0 1 0 0 0 0
12279 Solar system science with the Wide-Field Infra... present communityled assessment solar system i... 0 1 0 0 0 0
12280 Combining Generative and Discriminative Approa... unsupervised dependency parsing aims learn dep... 1 0 0 0 0 0
12281 Near-Infrared Knots and Dense Fe Ejecta in the... report results broadband mum nearinfrared spec... 0 1 0 0 0 0
12282 On the conjecture of Jeśmanowicz give survey results covering last years concer... 0 0 1 0 0 0
12283 Lattice implementation of Abelian gauge theori... real time evolution classical gauge fields rel... 0 1 0 0 0 0
12284 II-FCN for skin lesion analysis towards melano... dermoscopy image detection stays tough task du... 1 0 0 0 0 0
12285 Zero-Shot Visual Imitation current dominant paradigm imitation learning r... 1 0 0 1 0 0
12286 Spreading in kinetic reaction-transport equati... paper extend complement previous works propaga... 0 0 1 0 0 0
12287 Matching of orbital integrals (transfer) and R... let f nonarchimedan local field g connected re... 0 0 1 0 0 0
12288 Testing atomic collision theory with the two-p... accurate rates energydegenerate lchanging coll... 0 1 0 0 0 0
12289 Metrologically useful states of spin-1 Bose co... study theoretically usefulness spin bose conde... 0 1 0 0 0 0
12290 The Final Chapter In The Saga Of YIG magnetic insulator yttrium iron garnet grown e... 0 1 0 0 0 0
12291 Modeling and Analysis of HetNets with mm-Wave ... characterize multi tier network classical macr... 1 0 0 0 0 0
12292 Ermakov-Painlevé II Symmetry Reduction of a Ko... class nonlinear schrdinger equations involving... 0 1 1 0 0 0
12293 Geometric Matrix Completion with Recurrent Mul... matrix completion models among common formulat... 1 0 0 1 0 0
12294 Value Asymptotics in Dynamic Games on Large Ho... paper concerned twoperson dynamic zerosum game... 0 0 1 0 0 0
12295 Classical counterparts of quantum attractors i... context dissipative systems show quantum chaot... 0 1 0 0 0 0
12296 Marginal likelihood based model comparison in ... recent paper introduced fuzzy bayesian learnin... 0 0 0 1 0 0
12297 Position-sensitive propagation of information ... excitement convergence tweets specific topics ... 1 1 0 0 0 0
12298 The application of Monte Carlo methods for lea... monte carlo method broad class computational a... 0 0 0 1 0 0
12299 Language Bootstrapping: Learning Word Meanings... address problem bootstrapping language acquisi... 1 0 0 1 0 0
12300 Parallel implementation of the coupled harmoni... article presents parallel implementation coupl... 1 0 0 0 0 0
12301 TiEV: The Tongji Intelligent Electric Vehicle ... tiev autonomous driving platform implemented t... 1 0 0 0 0 0
12302 Towards Decoding as Continuous Optimization in... propose novel decoding approach neural machine... 1 0 0 0 0 0
12303 A tail cone version of the Halpern-Läuchli the... classical halpernluchli theorem states finite ... 0 0 1 0 0 0
12304 Over the Air Deep Learning Based Radio Signal ... conduct depth study performance deep learning ... 1 0 0 0 0 0
12305 On conditional parity as a notion of non-discr... identify conditional parity general notion non... 1 0 0 1 0 0
12306 A Low-Complexity Approach to Distributed Coope... consider caching cellular networks base statio... 1 0 0 0 0 0
12307 Linear, Second order and Unconditionally Energ... paper consider numerical approximations solvin... 0 0 1 0 0 0
12308 On Security and Sparsity of Linear Classifiers... machinelearning techniques widely used securit... 1 0 0 0 0 0
12309 Sharp-interface limits of a phase-field model ... sharpinterface limits phasefield model general... 0 1 0 0 0 0
12310 Notes on Discrete Compound Poisson Point Proce... first part notes provides new characterization... 0 0 1 1 0 0
12311 Characteristic cycles of highest weight Harish... characteristic cycles leading term cycles irre... 0 0 1 0 0 0
12312 Assessing the effect of advertising expenditur... propose robust implementation nerlovearrow mod... 0 0 0 1 0 1
12313 Anytime Exact Belief Propagation statistical relational models recently probabi... 1 0 0 0 0 0
12314 Appropriate conditions to realize a $p$-wave s... theoretically investigate spinorbit coupled sw... 0 1 0 0 0 0
12315 On the vanishing of self extensions over Cohen... celebrated auslanderreiten conjecture vanishin... 0 0 1 0 0 0
12316 Finite Temperature Phase Diagrams of a Two-ban... explore temperature effects superconducting ph... 0 1 0 0 0 0
12317 Detecting Multiple Change Points Using Adaptiv... time series frequently case neuroscience rarel... 0 0 0 0 1 0
12318 The Automorphism Group of Hall's Universal Group study automorphism group halls universal local... 0 0 1 0 0 0
12319 On Atiyah-Singer and Atiyah-Bott for finite ab... linear multilinear valuation finite abstract s... 1 0 1 0 0 0
12320 Evolution of macromolecular structure: a 'doub... evolution structure biology driven accretion c... 0 0 0 0 1 0
12321 An estimate of the root mean square error incu... let f bandlimited function lmathbbr fix suppos... 0 0 1 0 0 0
12322 Learning Topic-Sensitive Word Representations distributed word representations widely used m... 1 0 0 0 0 0
12323 Celestial Walk: A Terminating Oblivious Walk f... present new oblivious walking strategy convex ... 1 0 0 0 0 0
12324 Kernel k-Groups via Hartigan's Method energy statistics proposed szkely inspired new... 1 0 1 1 0 0
12325 Estimators of the correlation coefficient in t... finitesupport constraint parameter space used ... 0 0 0 1 0 0
12326 A theoretical framework for retinal computatio... neural circuits retina divide incoming visual ... 0 0 0 0 1 0
12327 Learning to Associate Words and Images Using a... develop approach unsupervised learning associa... 1 0 0 0 0 0
12328 A dichotomy theorem for nonuniform CSPs paper prove dichotomy conjecture complexity no... 1 0 0 0 0 0
12329 Transition from Weak Wave Turbulence to Solito... report experimental investigation effect finit... 0 1 0 0 0 0
12330 Hybrid Forecasting of Chaotic Processes: Using... modelbased approach forecasting chaotic dynami... 0 0 0 1 0 0
12331 Field-free perpendicular magnetization switchi... heavy metalferromagnetic layers perpendicular ... 0 1 0 0 0 0
12332 On Generalizing Decidable Standard Prefix Clas... recently separated fragment sf firstorder logi... 1 0 0 0 0 0
12333 Poisson traces, D-modules, and symplectic reso... survey theory poisson traces zeroth poisson ho... 0 0 1 0 0 0
12334 Nonequilibrium transport and Electron-Glass ef... report results nonequilibrium transport measur... 0 1 0 0 0 0
12335 Non-Gaussian Autoregressive Processes with Tuk... performing time series analysis continuous dat... 0 0 0 1 0 0
12336 Frequency responses of the K-Rb-$^{21}$Ne co-m... frequency responses krbne comagnetometer magne... 0 1 0 0 0 0
12337 Some new bounds of placement delivery arrays coded caching scheme technique reduce load pea... 1 0 0 0 0 0
12338 Itineraries for Inverse Limits of Tent Maps: a... previously published admissibility conditions ... 0 0 1 0 0 0
12339 EmbedInsight: Automated Grading of Embedded Sy... grading embedded systems courses typically req... 1 0 0 0 0 0
12340 On the $p'$-subgraph of the Young graph let p prime number article study restriction m... 0 0 1 0 0 0
12341 Electronic origin of melting T-P curves of alk... group elements alkali metals li na k rb cs exa... 0 1 0 0 0 0
12342 Gene Shaving using influence function of a ker... identifying significant subsets genes gene sha... 0 0 0 1 1 0
12343 Compressing Green's function using intermediat... new modelindependent compact representations i... 0 1 0 1 0 0
12344 Machine Learning for the Geosciences: Challeng... geosciences field great societal relevance req... 1 1 0 0 0 0
12345 Generalized singular value thresholding operat... well known affine matrix rank minimization pro... 0 0 1 0 0 0
12346 Unifying the Brascamp-Lieb Inequality and the ... entropy power inequality epi brascamplieb ineq... 1 0 0 0 0 0
12347 Risk ratios for contagious outcomes risk ratio popular tool summarizing relationsh... 0 0 0 1 0 0
12348 Instrument Orientation-Based Metrics for Surgi... technical skill surgeons directly impacts pati... 1 0 0 0 0 0
12349 Formal Methods for Adaptive Control of Dynamic... develop method control discretetime systems co... 1 0 1 0 0 0
12350 Sublayer of Prandtl boundary layers aim paper investigate stability prandtl bounda... 0 0 1 0 0 0
12351 Effects of a Price limit Change on Market Stab... paper investigates effects price limit change ... 0 0 0 0 0 1
12352 Adversarial Perturbations Against Real-Time Vi... recent research demonstrated brittleness machi... 0 0 0 1 0 0
12353 Wasserstein Identity Testing uniformity testing general identity testing we... 1 0 1 0 0 0
12354 Concordances from differences of torus knots t... known connected sums positive torus knots conc... 0 0 1 0 0 0
12355 The classification of Rokhlin flows on C*-alge... study flows calgebras rokhlin property show ev... 0 0 1 0 0 0
12356 Unusual evolution of B_{c2} and T_c with incli... recently reported enhanced superconductivity r... 0 1 0 0 0 0
12357 Bounded game-theoretic semantics for modal mu-... introduce new gametheoretic semantics gts moda... 1 0 1 0 0 0
12358 Putative spin liquid in the triangle-based iri... report thermodynamic magnetization muon spin r... 0 1 0 0 0 0
12359 Herding behavior in cryptocurrency markets solid arguments sustain digital currencies fut... 0 0 0 0 0 1
12360 Los agujeros negros y las ondas del Doctor Ein... describe main scientific developments lead lig... 0 1 0 0 0 0
12361 Symmetries of flat manifolds, Jordan property ... obtain sufficient necessary condition finite g... 0 0 1 0 0 0
12362 Hidden Fermi Liquidity and Topological Critica... fate exotic spin liquid states fractionalized ... 0 1 0 0 0 0
12363 Semi-automated labelling of medical images: be... purpose goal study show advantage collaborativ... 1 1 0 0 0 0
12364 Lexical Features in Coreference Resolution: To... lexical features major source information stat... 1 0 0 0 0 0
12365 Complete Semantics to empower Touristic Servic... tourism industry significant impact worlds eco... 1 0 0 0 0 0
12366 Reducing variance in importance-weighted cross... covariate shift classification problems princi... 1 0 0 1 0 0
12367 Comparing Aggregators for Relational Probabili... relational probabilistic models challenge aggr... 1 0 0 1 0 0
12368 The Sad State of Entrepreneurship in America: ... entrepreneurial scene suffers sick venture cap... 1 0 0 0 0 0
12369 Filtering Variational Objectives used surrogate objective maximum likelihood es... 1 0 0 1 0 0
12370 Annealing stability of magnetic tunnel junctio... study annealing stability bottompinned perpend... 0 1 0 0 0 0
12371 The Eigenoption-Critic Framework eigenoptions eos recently introduced promising... 1 0 0 0 0 0
12372 A perturbation analysis of some Markov chains ... study regularity properties locally stationary... 0 0 1 1 0 0
12373 Exploring patterns of demand in bike sharing s... understanding patterns demand fundamental flee... 0 0 0 1 0 0
12374 High-performance nanoscale topological energy ... realization highperformance smallfootprint onc... 0 1 0 0 0 0
12375 Multigrid-based inversion for volumetric radar... study concentrates advancing mathematical comp... 0 1 0 0 0 0
12376 Fluid dynamics of diving wedges diving induces large pressures water entry acc... 0 1 0 0 0 0
12377 Scenic: Language-Based Scene Generation synthetic data proved increasingly useful trai... 1 0 0 0 0 0
12378 An exactly solvable model for Dynamic Nuclear ... introduce solvable model driven fermions eluci... 0 1 0 0 0 0
12379 The Research Data Alliance: Building Bridges t... research data alliance international organizat... 0 1 0 0 0 0
12380 Modulated magnetic structure of Fe3PO7 as seen... paper reports new results fe mssbauer measurem... 0 1 0 0 0 0
12381 Mutation invariance for the zeroth coefficient... show zeroth coefficient cables homfly polynomi... 0 0 1 0 0 0
12382 Seasonal Variation of the Underground Cosmic M... daya bay experiment consists eight identically... 0 1 0 0 0 0
12383 Valid Inference Corrected for Outlier Removal ordinary least square ols estimation linear re... 0 0 1 1 0 0
12384 On the error term of a lattice counting proble... riemann hypothesis improve error term asymptot... 0 0 1 0 0 0
12385 Gamma-Ray Emission from Arp 220: Indications o... extragalactic cosmic ray populations important... 0 1 0 0 0 0
12386 The fundamental factor of optical interference widely accepted electric field alone fundament... 0 1 0 0 0 0
12387 Evidence for a Dusty Dark Dwarf Galaxy in the ... report sigma detection faint object flux mjy v... 0 1 0 0 0 0
12388 Universal abstract elementary classes and loca... exhibit equivalence modeltheoretic framework u... 0 0 1 0 0 0
12389 q-Viscous Burgers' Equation: Dynamical Symmetr... propose new type qdiffusive heat equation nons... 0 1 0 0 0 0
12390 Comparison of invariant metrics and distances ... prove strongly pseudoconvex domain dsubsetmath... 0 0 1 0 0 0
12391 The strong ring of simplicial complexes define ring r geometric objects g generated fi... 1 0 1 0 0 0
12392 Holonomy representation of quasi-projective le... prove representation fundamental group quasipr... 0 0 1 0 0 0
12393 Super Extensions of the Short Pulse Equation super extension wadati konno ichikawa scheme i... 0 1 0 0 0 0
12394 Nonequational Stable Groups introduce combinatorial criterion verifying wh... 0 0 1 0 0 0
12395 Analyzing biological and artificial neural net... deep neural networks dnns transform stimuli ac... 0 0 0 0 1 0
12396 Recurrences in an isolated quantum many-body s... even though evolution isolated quantum system ... 0 1 0 0 0 0
12397 Multiview Learning of Weighted Majority Vote b... tackle issue classifier combinations observati... 0 0 0 1 0 0
12398 Temporal Overbooking of Lambda Functions in th... consider problem scheduling serverless computi... 1 0 0 0 0 0
12399 Orbital degeneracy loci and applications degeneracy loci morphisms vector bundles used ... 0 0 1 0 0 0
12400 Homology of the family of hyperelliptic curves homology braid groups artin groups related stu... 0 0 1 0 0 0
12401 Simulation of Drop Impact on a Hot Wall using ... study presents smoothed particle hydrodynamics... 0 1 0 0 0 0
12402 Generation of attosecond electron beams in rel... ionization relativistically intense short lase... 0 1 0 0 0 0
12403 Surface defects and elliptic quantum groups brane construction integrable lattice model pr... 0 0 1 0 0 0
12404 Disentangling and Assessing Uncertainties in M... measuring corporate default risk broadly impor... 0 0 0 1 0 1
12405 The XXL Survey: XVII. X-ray and Sunyaev-Zel'do... present results ks xmmnewton observation galax... 0 1 0 0 0 0
12406 A bound for rational Thurston-Bennequin invari... paper introduce rational tau invariant rationa... 0 0 1 0 0 0
12407 Generalized Fréchet Bounds for Cell Entries in... consider lattice mathcall subsets multidimensi... 0 0 1 1 0 0
12408 Signaling on the Continuous Spectrum of Nonlin... paper studies different signaling techniques c... 1 1 0 0 0 0
12409 Symmetry analysis and soliton solution of (2+1... traveling wave solutions dimensional zoomeron ... 0 1 1 0 0 0
12410 Estimation in the convolution structure densit... paper continues research started citelw framew... 0 0 1 1 0 0
12411 Explaining Recurrent Neural Network Prediction... recently technique called layerwise relevance ... 1 0 0 1 0 0
12412 Generalized Coherence Concurrence and Path dis... propose new family coherence monotones named e... 1 0 0 0 0 0
12413 Passivity Based Whole-body Control for Quadrup... present passivitybased wholebody control appro... 1 0 0 0 0 0
12414 Accelerations for Graph Isomorphism paper present two main results first one conje... 1 0 0 0 0 0
12415 Multi-Objective Maximization of Monotone Submo... consider problem multiobjective maximization m... 1 0 0 1 0 0
12416 Cosmology from conservation of global energy argued many problems ambiguities standard cosm... 0 1 0 0 0 0
12417 Electric field modulation of the non-linear ar... study ferromagnetic layer thickness dependence... 0 1 0 0 0 0
12418 Gapless surface states originated from acciden... tetragonal photonic crystal composed highindex... 0 1 0 0 0 0
12419 On the impact of pull request decisions on fut... pullbased development process become prevalent... 1 0 0 0 0 0
12420 The unreasonable effectiveness of the forget gate given success gated recurrent unit natural que... 0 0 0 1 0 0
12421 WMRB: Learning to Rank in a Scalable Batch Tra... propose new learning rank algorithm named weig... 1 0 0 1 0 0
12422 Learning Features from Co-occurrences: A Theor... representing word cooccurrences words context ... 1 0 1 1 0 0
12423 Azumaya algebras and canonical components let compact manifold gammapim work thurston cu... 0 0 1 0 0 0
12424 On the Spectrum of Multi-Frequency Quasiperiod... study multifrequency quasiperiodic schrdinger ... 0 0 1 0 0 0
12425 Model Spaces of Regularity Structures for Spac... study model spaces sense hairer stochastic par... 0 0 1 0 0 0
12426 Transit Detection of a "Starshade" at the Inne... watercovered rocky planets inner habitable zon... 0 1 0 0 0 0
12427 Automatic Error Analysis of Human Motor Perfor... context fitness coaching rehabilitation purpos... 1 0 0 0 0 0
12428 A mechanism of synaptic clock underlying subje... temporal resolution visual information process... 0 0 0 0 1 0
12429 Optimal Packings of Two to Four Equal Circles ... find explicit formulas radii locations circles... 0 0 1 0 0 0
12430 Obfuscation in Bitcoin: Techniques and Politics cryptographic currency bitcoin transactions re... 1 0 0 0 0 0
12431 Path Planning and Controlled Crash Landing of ... paper presents framework controlled emergency ... 1 0 0 0 0 0
12432 Exact short-time height distribution in 1D KPZ... early time regime kardarparisizhang kpz equati... 0 1 0 0 0 0
12433 The role of cosmology in modern physics subject article relationship modern cosmology ... 0 1 0 0 0 0
12434 TURN TAP: Temporal Unit Regression Network for... temporal action proposal tap generation import... 1 0 0 0 0 0
12435 Efficiently Learning Nonstationary Gaussian Pr... real world phenomena sunlight distribution for... 0 0 0 1 0 0
12436 Causal Holography in Application to the Invers... given smooth compact manifold introduce open c... 0 0 1 0 0 0
12437 Inferring short-term volatility indicators fro... paper study possibility inferring early warnin... 1 0 0 0 0 1
12438 Discrete structure of the brain rhythms neuronal activity brain generates synchronous ... 0 0 0 0 1 0
12439 A new class of solutions for the multi-compone... construct point transformation two integrable ... 0 1 0 0 0 0
12440 Multivariate Generalized Linear Mixed Models f... paper explores improvements prediction accurac... 0 0 0 1 0 0
12441 Accelerator Codesign as Non-Linear Optimization propose optimization approach determining hard... 1 0 0 0 0 0
12442 Riddim: A Rhythm Analysis and Decomposition To... goal thesis implement tool given digital audio... 1 0 0 0 0 0
12443 Cholesterol modulates acetylcholine receptor d... translational motion neurotransmitter receptor... 0 1 0 0 0 0
12444 Incidence systems on Cartesian powers of algeb... show reduct zariski structure algebraic curve ... 0 0 1 0 0 0
12445 Automated versus do-it-yourself methods for ca... statisticians made great progress creating met... 0 0 0 1 0 0
12446 Certified Computation from Unreliable Datasets wide range learning tasks require human input ... 1 0 0 0 0 0
12447 A sparse grid approach to balance sheet risk m... work present numerical method based sparse gri... 0 0 0 0 0 1
12448 Towards Metamerism via Foveated Style Transfer problem textitvisual metamerism defined findin... 1 0 0 0 0 0
12449 Modeling Sheep pox Disease from the 1994-1998 ... sheep pox highly transmissible disease cause s... 0 0 0 1 0 0
12450 Minimal hard surface-unlink and classical unli... describe method generating minimal hard prime ... 0 0 1 0 0 0
12451 Fading of collective attention shapes the evol... language change involves competition alternati... 0 0 0 0 1 0
12452 Continuous-Time User Modeling in the Presence ... user modeling plays important role delivering ... 1 0 0 0 0 0
12453 Testing for observation-dependent regime switc... testing regime switching regime switching prob... 0 0 1 1 0 0
12454 The finiteness dimension of modules and relati... let r commutative noetherian ring mathfrak mat... 0 0 1 0 0 0
12455 On Ladder Logic Bombs in Industrial Control Sy... industrial control systems devices programmabl... 1 0 0 0 0 0
12456 Stochastic variance reduced multiplicative upd... nonnegative matrix factorization nmf dimension... 1 0 0 1 0 0
12457 Bi-National Delay Pattern Analysis For Commerc... border crossing delays new york state southern... 1 0 0 0 0 0
12458 A Scalable and Adaptive Method for Finding Sem... scientific knowledge constantly subject variet... 1 0 0 0 0 0
12459 An optimization method to simultaneously estim... central pattern generators cpgs appear evolved... 0 1 0 0 0 0
12460 Overdensities of SMGs around WISE-selected, ul... investigate extremely luminous dusty galaxies ... 0 1 0 0 0 0
12461 Constrained Best Linear Unbiased Estimation least squares ls estimator best linear unbiase... 0 0 1 1 0 0
12462 Compact Tensor Pooling for Visual Question Ans... performing high level cognitive tasks requires... 1 0 0 0 0 0
12463 Beam-induced Back-streaming Electron Suppressi... facility based nextgeneration highflux dd neut... 0 1 0 0 0 0
12464 Vertical stratification of forest canopy for s... airborne lidar point cloud representing forest... 1 0 0 0 0 0
12465 Temperature effect observed by the Nagoya muon... temperature coefficients directions nagoya muo... 0 1 0 0 0 0
12466 Generalizing Hamiltonian Monte Carlo with Neur... present generalpurpose method train markov cha... 1 0 0 1 0 0
12467 Multiplicities of Character Values of Binary S... binary sidelnikovlempelcohneastman sequences s... 1 0 1 0 0 0
12468 Complex and Holographic Embeddings of Knowledg... embeddings knowledge graphs received significa... 1 0 0 1 0 0
12469 Deep Image Prior deep convolutional networks become popular too... 0 0 0 1 0 0
12470 Efficient SMC$^2$ schemes for stochastic kinet... fitting stochastic kinetic models represented ... 0 0 0 1 0 0
12471 Unpaired Image-to-Image Translation using Cycl... imagetoimage translation class vision graphics... 1 0 0 0 0 0
12472 Consistent structure estimation of exponential... consider challenging problem statistical infer... 0 0 1 1 0 0
12473 Taskonomy: Disentangling Task Transfer Learning visual tasks relationship unrelated instance c... 1 0 0 0 0 0
12474 The Energy Measure for the Euler and Navier-St... potential failure energy equality solution u e... 0 0 1 0 0 0
12475 Inference of Spatio-Temporal Functions over Gr... inference spacetime varying signals graphs eme... 1 0 0 1 0 0
12476 Z2-Thurston Norm and Complexity of 3-Manifolds... sequel earlier papers three authors obtain new... 0 0 1 0 0 0
12477 Discriminative k-shot learning using probabili... paper introduces probabilistic framework kshot... 1 0 0 1 0 0
12478 Comparative analysis of criteria for filtering... paper describes method nonlinear wavelet thres... 0 0 0 1 0 0
12479 Extend of the $\mathbb{Z}_2$-spin liquid phase... mathbbz topological phase quantum dimer model ... 0 1 0 0 0 0
12480 Accelerated Stochastic Quasi-Newton Optimizati... propose lbfgs optimization algorithm riemannia... 0 0 1 1 0 0
12481 Bridging trees for posterior inference on Ance... present new markov chain monte carlo algorithm... 0 0 0 0 1 0
12482 Strong magnetic frustration in Y$_{3}$Cu$_{9}$... present crystal structure magnetic properties ... 0 1 0 0 0 0
12483 The Character Field Theory and Homology of Cha... construct extended oriented epsilondimensional... 0 0 1 0 0 0
12484 A new generator of chaotic bit sequences with ... paper presents new generator chaotic bit seque... 0 1 0 0 0 0
12485 HAWC response to atmospheric electricity activity hawc gamma ray observatory consists water cher... 0 1 0 0 0 0
12486 Optical Music Recognition with Convolutional S... optical music recognition omr important techno... 1 0 0 0 0 0
12487 Fractional Cable Model for Signal Conduction i... cable model widely used several fields science... 0 1 0 0 0 0
12488 Hedging in fractional Black-Scholes model with... consider conditionalmean hedging fractional bl... 0 0 1 1 0 0
12489 Finite flat spaces say finite metric space x embedded almost isom... 0 0 1 0 0 0
12490 On The Equivalence of Projections In Relative ... aim work establish two recently published proj... 1 0 0 0 0 0
12491 Comparing high dimensional partitions, with th... popular adjusted rand index ari extended task ... 0 0 0 1 0 0
12492 Dependence between Path-length and Size in Ran... study size external path length random tries s... 0 0 1 0 0 0
12493 Analysing Shortcomings of Statistical Parametr... output statistical parametric speech synthesis... 1 0 0 0 0 0
12494 On Meshfree GFDM Solvers for the Incompressibl... meshfree solution schemes incompressible navie... 0 1 1 0 0 0
12495 Using a new parsimonious AHP methodology combi... propose development analytic hierarchy process... 1 0 1 0 0 0
12496 Importance Sketching of Influence Dynamics in ... blooming availability traces social biological... 1 0 0 0 0 0
12497 Motivations, Classification and Model Trial of... advances artificial intelligence renewed inter... 1 0 0 0 0 0
12498 Dark Matter and Neutrinos keplerian distribution velocities observed rot... 0 1 0 0 0 0
12499 Variational Bi-LSTMs recurrent neural networks like long shortterm ... 1 0 0 1 0 0
12500 Riemann-Langevin Particle Filtering in Track-B... trackbeforedetect tbd powerful approach consis... 0 0 0 1 0 0
12501 The universal connection for principal bundles... given holomorphic principal bundle q longright... 0 0 1 0 0 0
12502 Equivariance Through Parameter-Sharing propose study equivariance deep neural network... 1 0 0 1 0 0
12503 Quantum light in curved low dimensional hexago... lowdimensional wide bandgap semiconductors ope... 0 1 0 0 0 0
12504 Scalable End-to-End Autonomous Vehicle Testing... recent developments autonomous vehicle av tech... 1 0 0 0 0 0
12505 Exact time-dependent exchange-correlation pote... identify peak valley structures exact exchange... 0 1 0 0 0 0
12506 Polynomial-Time Algorithms for Sliding Tokens ... given two independent sets j graph g imagine t... 1 0 0 0 0 0
12507 Summarized Network Behavior Prediction work studies entitywise topical behavior massi... 1 0 0 1 0 0
12508 Stabiliser states are efficiently PAC-learnable exponential scaling wave function fundamental ... 1 0 0 0 0 0
12509 A bound for the shortest reset words for semis... show semisimple synchronizing automaton n stat... 1 0 1 0 0 0
12510 HyperENTM: Evolving Scalable Neural Turing Mac... recent developments within memoryaugmented neu... 1 0 0 0 0 0
12511 X-Ray and Gamma-Ray Emission from Middle-aged ... present analytical numerical studies models su... 0 1 0 0 0 0
12512 An adverse selection approach to power pricing study optimal design electricity contracts amo... 0 0 1 0 0 0
12513 Bridging the Gap between Constant Step Size St... consider minimization objective function given... 0 0 1 1 0 0
12514 Learning Overcomplete HMMs study problem learning overcomplete hmmsthose ... 1 0 0 1 0 0
12515 Migration barriers for surface diffusion on a ... atomistic rigid lattice kinetic monte carlo ef... 0 1 0 0 0 0
12516 On the Quest for an Acyclic Graph paper aims finding acyclic graphs given set co... 1 0 0 0 0 0
12517 Robust Matrix Elastic Net based Canonical Corr... paper presents robust matrix elastic net based... 1 0 0 1 0 0
12518 C-VQA: A Compositional Split of the Visual Que... visual question answering vqa received lot att... 1 0 0 0 0 0
12519 Spherical Planetary Robot for Rugged Terrain T... wheeled planetary rovers mars exploration rove... 1 1 0 0 0 0
12520 Active Learning for Accurate Estimation of Lin... explore sequential decision making problem goa... 1 0 0 1 0 0
12521 Revisiting Frequency Reuse towards Supporting ... one goals g wireless systems stated ngmn allia... 1 0 0 0 0 0
12522 Local isometric immersions of pseudo-spherical... consider class evolution equations describe ps... 0 0 1 0 0 0
12523 Integrating Flexible Normalization into Mid-Le... deep convolutional neural networks cnns becomi... 0 0 0 0 1 0
12524 Moments and non-vanishing of Hecke $L$-functio... paper study moments central values hecke lfunc... 0 0 1 0 0 0
12525 Temporal Graph Offset Reconstruction: Towards ... graphs commonly used construct representing re... 1 0 0 0 0 0
12526 Decentralized Tube-based Model Predictive Cont... paper addresses problem decentralized tubebase... 1 0 0 0 0 0
12527 Cognition of the circle in ancient India discuss understanding geometry circle ancient ... 0 0 1 0 0 0
12528 Estimates for $π(x)$ for large values of $x$ a... paper use refined approximations chebyshevs va... 0 0 1 0 0 0
12529 Unveiled electric profiles within hydrogen bon... electrical forces background interactions occu... 0 0 0 0 1 0
12530 Mimetization of the elastic properties of canc... bone tissue mechanical properties trabecular m... 0 1 0 0 0 0
12531 Extended Vertical Lists for Temporal Pattern M... temporal pattern mining tpm problem mining pre... 0 0 0 1 0 0
12532 PowerAlert: An Integrity Checker using Power M... propose poweralert efficient external integrit... 1 0 0 0 0 0
12533 Extension complexities of Cartesian products i... open question whether linear extension complex... 1 0 1 0 0 0
12534 Speech recognition for medical conversations work explored building automatic speech recogn... 1 0 0 1 0 0
12535 Changing users' security behaviour towards sec... fallback authentication used retrieve forgotte... 1 0 0 0 0 0
12536 Understanding Web Archiving Services and Their... web archiving services play increasingly impor... 1 0 0 0 0 0
12537 Mining a Sub-Matrix of Maximal Sum biclustering techniques widely used identify h... 1 0 0 1 0 0
12538 Training Deep Networks without Learning Rates ... deep learning methods achieve stateoftheart pe... 1 0 1 1 0 0
12539 Joint Beamforming and Antenna Selection for Su... letter studies joint transmit beamforming ante... 1 0 0 0 0 0
12540 Multi-sequence segmentation via score and high... propose local segmentation multiple sequences ... 0 0 1 1 0 0
12541 Evidence for structural transition in crystall... investigate effect annealing temperature cryst... 0 1 0 0 0 0
12542 Emergence and Reductionism: an awkward Baconia... article discusses relationship emergence reduc... 0 1 0 0 0 0
12543 Pipelined Parallel FFT Architecture paper optimized efficient vlsi architecture pi... 1 0 1 0 0 0
12544 Global smoothing of a subanalytic set give rather simple answers two longstanding qu... 0 0 1 0 0 0
12545 Coupled Compound Poisson Factorization present general framework coupled compound poi... 1 0 0 1 0 0
12546 A model bridging chimera state and explosive s... global partial synchronization two distinctive... 0 1 0 0 0 0
12547 Spatial modeling of shot conversion in soccer ... goals results pinpoint shots pivotal decision ... 0 0 0 1 0 0
12548 Metrics for Formal Structures, with an Applica... report introduces investigates family metrics ... 0 0 1 0 0 0
12549 Hyperbolic Dispersion Dominant Regime Identifi... surface plasmon polariton hyberbolic dispersio... 0 1 0 0 0 0
12550 Legendrian Satellites and Decomposable Concord... investigate ramifications legendrian satellite... 0 0 1 0 0 0
12551 Plausible Deniability for Privacy-Preserving D... releasing full data records one challenging pr... 1 0 0 1 0 0
12552 The Co-Evolution of Test Maintenance and Code ... automatic testing widely adopted technique imp... 1 0 0 0 0 0
12553 Probabilistic Prediction of Interactive Drivin... autonomous vehicles avs road safely efficientl... 1 0 0 1 0 0
12554 Fast-slow asymptotics for a Markov chain model... explore feasibility using fastslow asymptotic ... 0 1 0 0 0 0
12555 Beating the bookies with their own numbers - a... online sports gambling industry employs teams ... 1 0 0 1 0 0
12556 Fixation probabilities for the Moran process i... paper based complete classification evolutiona... 0 0 0 0 1 0
12557 FPGA Design Techniques for Stable Cryogenic Op... paper show deepsubmicron fpga modified operate... 0 1 0 0 0 0
12558 Curvature-aided Incremental Aggregated Gradien... propose new algorithm finite sum optimization ... 1 0 0 1 0 0
12559 The composition of Solar system asteroids and ... abridged typical giantimpact scenario moon for... 0 1 0 0 0 0
12560 Maximum Margin Interval Trees learning regression function using censored in... 1 0 0 1 0 0
12561 Provable and practical approximations for the ... degree distribution one fundamental properties... 1 0 1 0 0 0
12562 Efficient and Robust Polylinear Analysis of No... method proposed generate optimal fit number co... 0 0 0 1 0 0
12563 On the optimal design of wall-to-wall heat tra... consider problem optimizing heat transport inc... 0 1 0 0 0 0
12564 On the decay rate for the wave equation with v... consider wave equation boundary condition memo... 0 0 1 0 0 0
12565 Code Reuse With Transformation Objects present approach lightweight datatypegeneric p... 1 0 0 0 0 0
12566 Fixed effects testing in high-dimensional line... many scientific engineering challenges ranging... 1 0 1 1 0 0
12567 Ubiquitous quasi-Fuchsian surfaces in cusped h... paper proves every finite volume hyperbolic ma... 0 0 1 0 0 0
12568 Generic Cospark of a Matrix Can Be Computed in... cospark matrix cardinality sparsest vector col... 1 0 0 0 0 0
12569 Generative Adversarial Network based Speaker A... neural networks based vocoders typically waven... 1 0 0 0 0 0
12570 CitizenGrid: An Online Middleware for Crowdsou... last years contributions general public scient... 1 0 0 0 0 0
12571 Singular sensitivity in a Keller-Segel-fluid s... bounded smooth domains omegasubsetmathbbrn nin... 0 0 1 0 0 0
12572 Asymptotic theory of multiple-set linear canon... paper deals asymptotics multipleset linear can... 0 0 1 1 0 0
12573 Deep Learning to Improve Breast Cancer Early D... rapid development deep learning family machine... 1 0 0 1 0 0
12574 Nviz - A General Purpse Visualization tool for... wireless sensor network wsn data manipulation ... 1 0 0 0 0 0
12575 Transient photon echoes from donor-bound excit... coherent optical response nm nm thick zno epit... 0 1 0 0 0 0
12576 The Quasar Luminosity Function at Redshift 4 w... present luminosity function z quasars based hy... 0 1 0 0 0 0
12577 Towards Industry 4.0: Gap Analysis between Cur... dawn fourth industrial revolution industry cre... 1 0 0 0 0 0
12578 A Constrained Conditional Likelihood Approach ... given p independent normal populations conside... 0 0 0 1 0 0
12579 Phase transition in the spiked random tensor w... consider problem detecting deformation symmetr... 0 0 1 0 0 0
12580 Extended depth-range profilometry using the ph... propose high signaltonoise extended depthrange... 0 1 0 0 0 0
12581 A Language for Probabilistically Oblivious Com... oblivious computation one free direct indirect... 1 0 0 0 0 0
12582 Single shot, double differential spectral meas... inverse compton scattering ics unique mechanis... 0 1 0 0 0 0
12583 Yarkovsky Drift Detections for 159 Near-Earth ... yarkovsky effect thermal process acting upon o... 0 1 0 0 0 0
12584 A short note on Godbersen's Conjecture short note improve best date bound godbersens ... 0 0 1 0 0 0
12585 The derivative NLS equation: global existence ... extend global existence result derivative nls ... 0 1 1 0 0 0
12586 Missing dust signature in the cosmic microwave... examine possible spectral distortion cosmic mi... 0 1 0 0 0 0
12587 Option market (in)efficiency and implied volat... informationally efficient financial markets op... 0 0 0 0 0 1
12588 Combining Alchemical Transformation with Physi... present new method combines alchemical transfo... 0 0 0 0 1 0
12589 Embedding Feature Selection for Large-scale Hi... largescale hierarchical classification hc invo... 1 0 0 1 0 0
12590 Orientably-regular maps on twisted linear frac... present enumeration orientablyregular maps aut... 0 0 1 0 0 0
12591 Deep Mean Functions for Meta-Learning in Gauss... fitting machine learning models lowdata limit ... 1 0 0 1 0 0
12592 Projectors separating spectra for $L^2$ on sym... plancherel decomposition l pseudoriemannian sy... 0 0 1 0 0 0
12593 On the continued fraction expansion of absolut... construct absolutely normal number whose conti... 0 0 1 0 0 0
12594 Talking Open Data enticing users exploring open data remains imp... 1 0 0 0 0 0
12595 Static non-reciprocity in mechanical metamater... reciprocity fundamental principle governing va... 0 1 0 0 0 0
12596 A forward-adjoint operator pair based on the e... photoacoustic computed tomography pact emergin... 0 1 0 0 0 0
12597 Sewing Riemannian Manifolds with Positive Scal... explore extent one may hope preserve geometric... 0 0 1 0 0 0
12598 Concentration of quadratic forms under a Berns... concentration result quadratic form independen... 0 0 1 1 0 0
12599 Short DNA persistence length in a mesoscopic h... flexibility short dna chains investigated via ... 0 0 0 0 1 0
12600 Diffuse Gamma Rays in 3D Galactic Cosmic-ray P... picard code numerical solution galactic cosmic... 0 1 0 0 0 0
12601 Sticking the Landing: Simple, Lower-Variance G... propose simple general variant standard repara... 1 0 0 1 0 0
12602 Consistent hydrodynamic theory of chiral elect... complete set maxwells hydrodynamic equations c... 0 1 0 0 0 0
12603 Design and Processing of Invertible Orientatio... enhancement detection elongated structures noi... 1 0 0 0 0 0
12604 The origin and early evolution of life in chem... life viewed localized chemical system sits bas... 0 0 0 0 1 0
12605 Principal Component Analysis for Functional Da... functional data analysis nonlinear manifolds d... 0 0 1 1 0 0
12606 Braids with as many full twists as strands rea... characterize fractional dehn twist coefficient... 0 0 1 0 0 0
12607 The Formal Semantics of Rascal Light rascal highlevel transformation language aims ... 1 0 0 0 0 0
12608 On inverse and right inverse ordered semigroups regular ordered semigroup called right inverse... 0 0 1 0 0 0
12609 Refining the Two-Dimensional Signed Small Ball... twodimensional signed small ball inequality st... 0 0 1 0 0 0
12610 The structure, capability and the Schur multip... problem groups prime power order vol berkovich... 0 0 1 0 0 0
12611 Fractional Brownian markets with time-varying ... diffusion processes driven fractional brownian... 0 0 1 1 0 0
12612 Experimental GHZ Entanglement beyond Qubits greenbergerhornezeilinger ghz argument provide... 0 1 0 0 0 0
12613 On global Okounkov bodies of spherical varieties define study global okounkov moment cone proje... 0 0 1 0 0 0
12614 From the simple reacting sphere kinetic model ... paper perform formal asymptotic analysis kinet... 0 1 0 0 0 0
12615 Origin of soft glassy rheology in the cytoskel... dynamically crosslinked semiflexible biopolyme... 0 0 0 0 1 0
12616 Pattern Search Multidimensional Scaling present novel view nonlinear manifold learning... 0 0 0 1 0 0
12617 MH370 Burst Frequency Offset Analysis and Impl... malaysian airlines flight mh veered course une... 0 0 0 1 0 0
12618 Classifying Symmetrical Differences and Tempor... investigate addition symmetry temporal context... 1 0 0 0 0 0
12619 Deep Echo State Network (DeepESN): A Brief Survey study deep recurrent neural networks rnns part... 1 0 0 1 0 0
12620 Computational topology of graphs on surfaces computational topology area revisits topologic... 1 0 1 0 0 0
12621 Identifying hazardousness of sewer pipeline ga... work formulated realworld problem related sewe... 1 0 0 0 0 0
12622 The rational points on certain Abelian varieti... paper consider abelian varieties function fiel... 0 0 1 0 0 0
12623 Multivariate inhomogeneous diffusion models wi... modeling longitudinal data often requires diff... 0 0 1 1 0 0
12624 Stability of patterns in the Abelian sandpile show patterns abelian sandpile stable proof co... 0 0 1 0 0 0
12625 Position Heaps for Parameterized Strings propose new indexing structure parameterized s... 1 0 0 0 0 0
12626 Quasi-Steady Model of a Pumping Kite Power System traction force kite used drive cyclic motion e... 1 0 1 0 0 0
12627 Expansion of pinched hypersurfaces of the Eucl... prove convergence results expanding curvature ... 0 0 1 0 0 0
12628 Sound Mixed-Precision Optimization with Rewriting finiteprecision arithmetic computations face i... 1 0 0 0 0 0
12629 Negative thermal expansion and metallophilicit... report synthesis structural characterisation m... 0 1 0 0 0 0
12630 Quantum Fluctuations along Symmetry Crossover ... universal properties entangled manybody states... 0 1 0 0 0 0
12631 Impossibility results on stability of phylogen... answer two questions raised bryant francis ste... 0 0 0 0 1 0
12632 Improved Distributed Degree Splitting and Edge... degree splitting problem requires coloring edg... 1 0 0 0 0 0
12633 Global geometry and $C^1$ convex extensions of... let e arbitrary subset mathbbrn necessarily bo... 0 0 1 0 0 0
12634 Interpretable Deep Learning applied to Plant S... availability explainable deep learning model a... 1 0 0 1 0 0
12635 Differentiable Compositional Kernel Learning f... generalization properties gaussian processes d... 0 0 0 1 0 0
12636 Airy structures and symplectic geometry of top... propose new approach topological recursion eyn... 0 0 1 0 0 0
12637 Multiscale Information Decomposition: Exact Co... exploiting theory state space models derive ex... 0 0 1 1 0 0
12638 Transforming Speed Sequences into Road Rays on... advances technology provided ways monitor meas... 1 0 0 0 0 0
12639 Solitons and geometrical structures in a perfe... geometrical aspects perfect fluid spacetime de... 0 0 1 0 0 0
12640 Hemodynamics of a Bileaflet Mechanical Heart V... heart disease one leading causes mortality wor... 0 1 0 0 0 0
12641 Nonnegative Hermitian vector bundles and Chern... show article holomorphic vector bundle nonnega... 0 0 1 0 0 0
12642 The Ubiquity of Large Graphs and Surprising Ch... graph processing becoming increasingly prevale... 1 0 0 0 0 0
12643 On the classification of four-dimensional grad... paper prove classification results fourdimensi... 0 0 1 0 0 0
12644 In-gap bound states induced by a single nonmag... investigated ingap bound states igbs induced s... 0 1 0 0 0 0
12645 Gridbot: An autonomous robot controlled by a S... true best neural network necessarily one brain... 0 0 0 0 1 0
12646 Calculation of thallium hyperfine anomaly suggest method calculate hyperfine anomaly man... 0 1 0 0 0 0
12647 Elliptic supersymmetric integrable model and m... investigate elliptic integrable model introduc... 0 1 0 0 0 0
12648 Crystalline Electric Field Randomness in the T... apply moderatehighenergy inelastic neutron sca... 0 1 0 0 0 0
12649 Quadrics and Scherk towers investigate relation quadrics christoffel dual... 0 0 1 0 0 0
12650 Scalable Greedy Feature Selection via Weak Sub... greedy algorithms widely used problems machine... 1 0 0 1 0 0
12651 Budget-Constrained Multi-Armed Bandits with Mu... study multiarmed bandit problem multiple plays... 1 0 0 1 0 0
12652 Thermalized Axion Inflation analyze dynamics inflationary models coupling ... 0 1 0 0 0 0
12653 A Data-Driven Approach to Extract Connectivity... diffusion tensor imaging dti effective tool an... 0 0 0 1 1 0
12654 A survey of location inference techniques on T... increasing popularity social networking servic... 1 0 0 0 0 0
12655 Detection and segmentation of the Left Ventric... manual segmentation left ventricle lv tedious ... 0 0 0 1 0 0
12656 Curvature-driven stability of defects in nemat... stabilizing defects liquidcrystal systems cruc... 0 1 0 0 0 0
12657 Heterogeneous nucleation of catalyst-free InAs... report heterogeneous nucleation catalystfree i... 0 1 0 0 0 0
12658 Random Transverse Field Spin-Glass Model on th... quantum ising model random couplings random tr... 0 1 0 0 0 0
12659 Femtosecond laser inscription of Bragg grating... femtosecond laser writing applied form bragg g... 0 1 0 0 0 0
12660 FORM version 4.2 introduce form new minor release symbolic mani... 1 0 0 0 0 0
12661 An Analysis of Two Common Reference Points for... clinical electroencephalographic eeg data vari... 0 0 0 1 0 0
12662 A Concurrency-Optimal Binary Search Tree paper presents first emphconcurrencyoptimal im... 1 0 0 0 0 0
12663 Controlling seizure propagation in large-scale... information transmission human brain fundament... 0 0 0 0 1 0
12664 DroidStar: Callback Typestates for Android Cla... eventdriven programming frameworks android bas... 1 0 0 0 0 0
12665 Piezoelectricity for Nondestructive Testing of... stress applied flat face apex prismatic piezoe... 0 1 0 0 0 0
12666 ALMA Observations of Starless Core Substructur... compact substructure expected arise starless c... 0 1 0 0 0 0
12667 Neuron-inspired flexible memristive device on ... comprehensive understanding worlds energy effi... 0 1 0 0 0 0
12668 Detecting laws in power subgroups group law said detectable power subgroups copr... 0 0 1 0 0 0
12669 On the Reliable Detection of Concept Drift fro... classifiers deployed real world operate dynami... 1 0 0 1 0 0
12670 Exploiting generalization in the subspaces for... due lack enough generalization statespace comm... 1 0 0 1 0 0
12671 Quasitriangular structure and twisting of the ... show bicrossproduct model csublacktrianglerigh... 0 0 1 0 0 0
12672 Can simple transmission chains foster collecti... many social systems groups individuals find re... 1 1 0 0 0 0
12673 A Theoretical Analysis of First Heuristics of ... entity resolution er task identifying records ... 1 0 0 0 0 0
12674 Dependency resolution and semantic mining usin... tree adjoining grammars tags provide ample too... 1 0 0 0 0 0
12675 Loop conditions discuss maltsev conditions consist one linear ... 0 0 1 0 0 0
12676 Impact of Feature Selection on Micro-Text Clas... social media datasets especially twitter tweet... 1 0 0 0 0 0
12677 One-Shot Learning of Multi-Step Tasks from Obs... due burdensome data requirements learning demo... 1 0 0 1 0 0
12678 Larger is Better: The Effect of Learning Rates... paper propose simple variant original stochast... 1 0 1 1 0 0
12679 Concerning the Neural Code central problem understanding brain mind neura... 0 0 0 0 1 0
12680 Community Question Answering Platforms vs. Twi... paper investigate whether text community quest... 1 0 0 0 0 0
12681 SPASS: Scientific Prominence Active Search Sys... planetary exploration missions mars rovers com... 1 0 0 1 0 0
12682 Nonlinear Sequential Accepts and Rejects for I... address mbestarm identification problem multia... 1 0 0 1 0 0
12683 A Machine Learning Framework to Forecast Wave ... amachine learning framework developed estimate... 0 1 0 0 0 0
12684 Unobtrusive Deferred Update Stabilization for ... paper propose novel approach manage throughput... 1 0 0 0 0 0
12685 Exploratory Analysis of Pairwise Interactions ... last decades sociologists trying explain human... 1 0 0 0 0 0
12686 Communication-Avoiding Optimization Methods fo... across variety scientific disciplines sparse i... 1 0 0 1 0 0
12687 Thought Viruses and Asset Prices use insights epidemiology namely sir model stu... 0 0 0 0 0 1
12688 Walking Through Waypoints initiate study fundamental combinatorial probl... 1 0 0 0 0 0
12689 Imaging a Central Ionized Component, a Narrow ... report large array observations mm mm cm towar... 0 1 0 0 0 0
12690 Viconmavlink: A software tool for indoor posit... motion capture widelyused technology robotics ... 1 0 0 0 0 0
12691 On the set of optimal homeomorphisms for the n... varphi psi two continuous realvalued functions... 1 0 1 0 0 0
12692 A generalization of an identity due to Kimura ... identity stated kimura proved ruehr kimura oth... 0 0 1 0 0 0
12693 Towards Scalable Spectral Clustering via Spect... eigendeomposition nearestneighbor nn graph lap... 1 0 0 1 0 0
12694 Deep-Learnt Classification of Light Curves astronomy light curves sparse gappy heterosced... 0 1 0 0 0 0
12695 Bulk crystalline optomechanics brillouin processes couple light sound optomec... 0 1 0 0 0 0
12696 Swift Linked Data Miner: Mining OWL 2 EL class... study present swift linked data miner interrup... 1 0 0 0 0 0
12697 Political Footprints: Political Discourse Anal... paper discuss machine learning could used prod... 1 0 0 0 0 0
12698 Predicting the Quality of Short Narratives fro... important difficult challenge building computa... 1 0 0 0 0 0
12699 Fast Approximate Natural Gradient Descent in a... optimization algorithms leverage gradient cova... 0 0 0 1 0 0
12700 Detecting Casimir torque with an optically lev... linear momentum angular momentum virtual photo... 0 1 0 0 0 0
12701 About small eigenvalues of Witten Laplacian study eigenvalues semiclassical witten laplaci... 0 0 1 0 0 0
12702 Partial control of delay-coordinate maps delaycoordinate maps widely used recently stud... 0 1 0 0 0 0
12703 Detecting hip fractures with radiologist-level... developed automated deep learning system detec... 0 0 0 1 0 0
12704 Large-Scale Online Semantic Indexing of Biomed... background paper present approaches methods em... 0 0 0 1 0 0
12705 Modeling Temporally Evolving and Spatially Glo... last decades seen unprecedented increase avail... 0 0 1 1 0 0
12706 A New Representation of Skeleton Sequences for... paper presents new method action recognition s... 1 0 0 0 0 0
12707 From Abstract Entities in Mathematics to Super... given equivalence relation set u two abstract ... 0 1 1 0 0 0
12708 A note on effective descent for overconvergent... short note explain proof proper surjective fai... 0 0 1 0 0 0
12709 Banach strong Novikov conjecture for polynomia... prove banach strong novikov conjecture groups ... 0 0 1 0 0 0
12710 Fabrication of quencher-free liquid scintillat... reliable consistently reproducible technique f... 0 1 0 0 0 0
12711 Identification of Voice Utterance with Aging F... research conducted develop method identify voi... 1 0 0 0 0 0
12712 Single Letter Expression of Capacity for a Cla... study finite alphabet channels unit memory pre... 1 0 1 0 0 0
12713 Spectra of quadratic vector fields on $\mathbb... consider quadratic vector field mathbbc invari... 0 0 1 0 0 0
12714 A Controlled Set-Up Experiment to Establish Pe... design conduct present results highly personal... 1 0 0 1 0 0
12715 Continuity of the Green function in meromorphi... prove along marked point green function meromo... 0 0 1 0 0 0
12716 The World's First Real-Time Testbed for Massiv... paper sets framework designing massive multipl... 1 0 1 0 0 0
12717 Fuel-Efficient En Route Formation of Truck Pla... problem coordinate large fleet trucks given it... 1 0 0 0 0 0
12718 Context-Independent Polyphonic Piano Onset Tra... many recent approaches polyphonic piano note o... 1 0 0 1 0 0
12719 On the Implementation of a Scalable Simulator ... family multiscale hybridmixed mhm finite eleme... 1 0 1 0 0 0
12720 Deformation theory of the blown-up Seiberg-Wit... associated every quaternionic representation c... 0 0 1 0 0 0
12721 On a Fractional Stochastic Hodgkin-Huxley Model model studied paper stochastic extension socal... 0 0 1 0 0 0
12722 Approximations and Bounds for (n, k) Fork-Join... compared basic forkjoin queues job n k forkjoi... 1 0 0 1 0 0
12723 Integrated analysis of energy transfers in ela... elasticwave turbulence strong turbulence appea... 0 1 0 0 0 0
12724 Effect of annealing on the magnetic properties... report magnetic properties zinc ferrite thin f... 0 1 0 0 0 0
12725 Statistical Speech Model Description with VMF ... paper present lsf parameters unit vector form ... 1 0 0 0 0 0
12726 Predicting Atomic Decay Rates Using an Informa... show newly proposed shannonlike entropic measu... 0 1 0 0 0 0
12727 A Fast Numerical Scheme for the Godunov-Peshko... new secondorder numerical scheme based operato... 0 1 1 0 0 0
12728 Explaining Transition Systems through Program ... explaining reasoning processes underlie observ... 1 0 0 0 0 0
12729 Approximate Gradient Coding via Sparse Random ... distributed algorithms often beset straggler e... 1 0 0 1 0 0
12730 Word Embeddings via Tensor Factorization popular word embedding techniques involve impl... 1 0 0 1 0 0
12731 Lower bounds for the index of compact constant... let compact constant mean curvature surface ei... 0 0 1 0 0 0
12732 On the maximum principle for a time-fractional... paper discuss maximum principle timefractional... 0 0 1 0 0 0
12733 Hydrophobic Ice Confined between Graphene and ... structure nature water confined hydrophobic mo... 0 1 0 0 0 0
12734 Changes in the flagellar bundling time account... although motility flagellated bacteria escheri... 0 1 0 0 0 0
12735 Exploring Heritability of Functional Brain Net... datadriven brain parcellations aim provide acc... 1 0 0 0 0 0
12736 Bianchi type-II universe with wet dark fluid i... paper dark energy models universe filled wet d... 0 1 0 0 0 0
12737 Solutions of generic bilinear master equations... obtain solutions generic bilinear master equat... 0 1 0 0 0 0
12738 Semantic Instance Segmentation with a Discrimi... semantic instance segmentation remains challen... 1 0 0 0 0 0
12739 A Cost-Sensitive Deep Belief Network for Imbal... imbalanced data skewed class distribution comm... 0 0 0 1 0 0
12740 Ordered p-median problems with neighborhoods paper introduce new variant pmedian facility l... 0 0 1 0 0 0
12741 Multi-Block Interleaved Codes for Local and Gl... define multiblock interleaved codes codes allo... 1 0 0 0 0 0
12742 Ranking Recovery from Limited Comparisons usin... paper proposes new method solving wellknown ra... 1 0 0 1 0 0
12743 Distributions of a particle's position and the... paper study probability distribution position ... 0 1 1 0 0 0
12744 Electrically controllable spin filtering based... magnetoelectric effects surface states ti extr... 0 1 0 0 0 0
12745 An Online Development Environment for Answer S... recent progress logic programming eg developme... 1 0 0 0 0 0
12746 Experience-based Optimization: A Coevolutionar... paper studies improving solvers based past sol... 1 0 0 0 0 0
12747 Leveraging the Crowd to Detect and Reduce the ... online social networking sites experimenting f... 1 0 0 1 0 0
12748 Data-efficient Auto-tuning with Bayesian Optim... bayesian optimization proposed automatic learn... 1 0 0 0 0 0
12749 The Global Optimization Geometry of Low-Rank M... paper considers general rankconstrained optimi... 1 0 1 0 0 0
12750 Which bridge estimator is optimal for variable... study problem variable selection linear models... 0 0 1 1 0 0
12751 Network Systems and String Stability network systems control highly important appea... 1 0 0 0 0 0
12752 Exploring the Function Space of Deep-Learning ... function space deeplearning machines investiga... 1 1 0 0 0 0
12753 On Geometry of Manifolds with Some Tensor Stru... object study present dissertation topics diffe... 0 0 1 0 0 0
12754 Backward-emitted sub-Doppler fluorescence from... literature mentions incidentally subdoppler co... 0 1 0 0 0 0
12755 Dust Density Distribution and Imaging Analysis... recent high angular resolution observations pr... 0 1 0 0 0 0
12756 nIFTy Cosmology: the clustering consistency of... present clustering comparison galaxy formation... 0 1 0 0 0 0
12757 The near-critical Gibbs measure of the branchi... consider supercritical branching random walk r... 0 0 1 0 0 0
12758 Graded Lie algebras and regular prehomogeneous... aim paper study relations regular reductive pv... 0 0 1 0 0 0
12759 EPIC 210894022b - A short period super-Earth t... star epic identified light curve acquired k sp... 0 1 0 0 0 0
12760 Efficient computation of pi by the Newton - Ra... recent publication proposed new methodology de... 0 0 1 0 0 0
12761 Quantum Simulation and Spectroscopy of Entangl... entanglement central understanding manybody qu... 0 1 0 0 0 0
12762 Persistence-like distance on Tamarkin's catego... introduce persistencelike pseudodistance tamar... 0 0 1 0 0 0
12763 On $q$-commutative power and Laurent series ri... continue first second authors study qcommutati... 0 0 1 0 0 0
12764 On risk-sensitive piecewise deterministic Mark... consider piecewise deterministic markov decisi... 0 0 1 0 0 0
12765 Spectral Clustering Methods for Multiplex Netw... multiplex networks offer important tool study ... 1 1 0 0 0 0
12766 Logical properties of random graphs from small... establish zeroone laws convergence laws monadi... 1 0 1 0 0 0
12767 Unidirectional zero reflection as gauged parit... introduce concept establishing paritytime symm... 0 1 0 0 0 0
12768 Gaussian curvature directs the distribution of... formation membrane necks crucial fission fusio... 0 1 0 0 0 0
12769 Divergence, Entropy, Information: An Opinionat... information theory mathematical theory learnin... 0 0 1 1 0 0
12770 Stochastic Constraint Programming as Reinforce... stochastic constraint programming scp extensio... 1 0 0 0 0 0
12771 Improving Sparsity in Kernel Adaptive Filters ... kernel adaptive filters class adaptive nonline... 1 0 0 1 0 0
12772 An analyst's take on the BPHZ theorem provide selfcontained formulation bphz theorem... 0 0 1 0 0 0
12773 A variational-geometric approach for the optim... necessary conditions existence normal extremal... 0 0 1 0 0 0
12774 Development of a compact ExB microchannel plat... beam imaging detector developed coupling multi... 0 1 0 0 0 0
12775 StackSeq2Seq: Dual Encoder Seq2Seq Recurrent N... widely studied nondeterministic polynomial tim... 1 0 0 1 0 0
12776 Supervised Deep Hashing for Hierarchical Label... recently hashing methods widely used largescal... 1 0 0 0 0 0
12777 The growth rates of automaton groups generated... give sufficient conditions groups generated au... 0 0 1 0 0 0
12778 Combinatorial identities and Chern numbers of ... present article family new combinatorial ident... 0 0 1 0 0 0
12779 Impact splash chondrule formation during plane... chondrules dominant bulk silicate constituent ... 0 1 0 0 0 0
12780 Z-checker: A Framework for Assessing Lossy Com... vast volume data produced todays scientific si... 1 1 0 0 0 0
12781 Combining the Transcorrelated method with Full... suggest efficient method resolve electronic cu... 0 1 0 0 0 0
12782 Dynamics of quantum information in many-body l... characterize information dynamics strongly dis... 0 1 0 0 0 0
12783 Correlations in suspensions confined between v... study theoretically velocity crosscorrelations... 0 1 0 0 0 0
12784 The Cosmic V-Web network filaments embedded clusters surroundin... 0 1 0 0 0 0
12785 Irreducibility and r-th root finding over fini... constructing rth nonresidue finite field funda... 1 0 1 0 0 0
12786 Competing magnetic interactions in spin-1/2 sq... decreasing temperature srvo undergoes two stru... 0 1 0 0 0 0
12787 Adaptive Matching for Expert Systems with Unce... matching twosided market often incurs external... 1 0 0 1 0 0
12788 The t-t'-J model in one dimension using extrem... study one dimensional ttj model generic coupli... 0 1 0 0 0 0
12789 CAOS: Concurrent-Access Obfuscated Store paper proposes concurrentaccess obfuscated sto... 1 0 0 0 0 0
12790 Safe Execution of Concurrent Programs by Enfor... automated software verification concurrent pro... 1 0 0 0 0 0
12791 A Short-Term Voltage Stability Index and case ... shortterm voltage stability svs problem larges... 1 0 1 0 0 0
12792 The Structure of the Inverse System of Level $... macaulays inverse system effective method cons... 0 0 1 0 0 0
12793 Exploring the Role of Intrinsic Nodal Activati... many complex networked systems online social n... 1 0 0 0 0 0
12794 The border support rank of two-by-two matrix m... show border support rank tensor corresponding ... 1 0 1 0 0 0
12795 TPA: Fast, Scalable, and Accurate Method for A... given large graph determine similarity nodes f... 1 0 0 0 0 0
12796 Novel polystyrene-based nanocomposites by phos... polystyrenebased phosphorene nanocomposites pr... 0 1 0 0 0 0
12797 Analysis and Applications of Delay Differentia... main purpose paper provide summary fundamental... 0 0 1 0 0 0
12798 Planar Drawings of Fixed-Mobile Bigraphs fixedmobile bigraph g bipartite graph vertices... 1 0 0 0 0 0
12799 Recovery of Architecture Module Views using an... design structure matrices dsms useful represen... 1 0 0 0 0 0
12800 Implementation and Analysis of QUIC for MQTT transport security protocols essential ensure ... 1 0 0 0 0 0
12801 A Language for Function Signature Representations recent work richardson kuhn ab richardson et a... 1 0 0 0 0 0
12802 Link Adaptation for Wireless Video Communicati... phd thesis considers performance evaluation en... 1 0 0 0 0 0
12803 On the Complexity of Polytopes in $LI(2)$ paper consider polytopes given systems n inequ... 1 0 0 0 0 0
12804 Dynamic Sensitivity Study of MEMS Capacitive A... dynamic behavior capacitive microelectromechan... 0 1 0 0 0 0
12805 Nature of the electromagnetic force between cl... lorentz force law classical electrodynamics st... 0 1 0 0 0 0
12806 Tractability of $\mathbb{L}_2$-approximation i... consider multivariate mathbblapproximation rep... 0 0 1 0 0 0
12807 The Linearity of the Mitchell Order show weak comparison principle ultrapower axio... 0 0 1 0 0 0
12808 Atomic Order in Non-Equilibrium Silicon-German... precise knowledge atomic order monocrystalline... 0 1 0 0 0 0
12809 On the Laws of Large Numbers in Possibility Th... paper obtain possibilistic variants probabilis... 0 0 1 0 0 0
12810 Finite Sample Inference for Targeted Learning highlyadaptivelassohaltmle efficient estimator... 0 0 1 1 0 0
12811 A Short and Elementary Proof of the Two-sidedn... elementary proof twosidedness matrixinverse gi... 0 0 1 0 0 0
12812 Rich-Club Ordering and the Dyadic Effect: Two ... richclub ordering dyadic effect two phenomena ... 1 1 0 0 0 0
12813 The global dust modelling framework THEMIS (Th... introduce interstellar dust modelling framewor... 0 1 0 0 0 0
12814 Variable Selection Methods for Model-based Clu... modelbased clustering popular approach cluster... 0 0 0 1 0 0
12815 Synergies between Asteroseismology and Exoplan... past decade asteroseismology become powerful m... 0 1 0 0 0 0
12816 The stellar contents and star formation in the... deep optical photometric data ngc region colle... 0 1 0 0 0 0
12817 Ambiguity set and learning via Bregman and Was... construction ambiguity set robust optimization... 1 0 0 1 0 0
12818 1-bit Massive MU-MIMO Precoding in VLSI massive multiuser mu multipleinput multipleout... 1 0 0 0 0 0
12819 Step evolution in two-dimensional diblock copo... formation dynamics freesurface structures step... 0 1 0 0 0 0
12820 The univalence axiom in cubical sets note show voevodskys univalence axiom holds mo... 1 0 1 0 0 0
12821 Assessing the Privacy Cost in Centralized Even... demand response dr programs emerged potential ... 1 0 1 0 0 0
12822 Threat Modeling Data Analysis in Socio-technic... decisionmaking processes becoming data driven ... 1 0 0 0 0 0
12823 Nonlinear Instability of Half-Solitons on Star... consider halfsoliton stationary state nonlinea... 0 1 1 0 0 0
12824 Demographics and discussion influence views on... field algorithmic fairness highlighted ethical... 1 0 0 0 0 0
12825 The stifness of the supranuclear equation of s... revisit present status stiffness supranuclear ... 0 1 0 0 0 0
12826 Stable Desynchronization for Wireless Sensor N... paper use dynamical systems analyze stability ... 1 0 0 0 0 0
12827 Optimizing Adiabatic Quantum Program Compilati... adiabatic quantum computing evolved recent yea... 1 0 0 0 0 0
12828 Analysis of pedestrian behaviors through non-i... paper analyzes pedestrians behavioral patterns... 1 1 0 0 0 0
12829 Open Gromov-Witten theory without Obstruction define open gromovwitten invariants counting p... 0 0 1 0 0 0
12830 Resilience of Complex Networks article determines characterizes minimal numbe... 1 0 1 0 0 0
12831 Forward Thinking: Building and Training Neural... present general framework training deep neural... 1 0 0 1 0 0
12832 Non-negative Tensor Factorization for Human Be... multiplayer online battle arena become popular... 1 1 0 0 0 0
12833 Graph-Cut RANSAC novel method robust estimation called graphcut... 1 0 0 0 0 0
12834 Mixed measurements and the detection of phase ... multivariate singular spectrum analysis mssa v... 0 1 0 0 0 0
12835 A Unified Neural Network Approach for Estimati... building intelligent transportation systems ta... 1 0 0 1 0 0
12836 Lion and man in non-metric spaces lion man move continuously space x aim lion ca... 0 0 1 0 0 0
12837 Banach Algebra of Complex Bounded Radon Measur... let h compact subgroup locally compact group g... 0 0 1 0 0 0
12838 A Simple Fusion of Deep and Shallow Learning f... past acoustic scene classification systems bas... 0 0 0 1 0 0
12839 Online Convex Optimization with Unconstrained ... propose online convex optimization algorithm r... 1 0 0 1 0 0
12840 A Variational Feature Encoding Method of 3D Ob... paper presents feature encoding method complex... 1 0 0 0 0 0
12841 Dimensionality reduction methods for molecular... molecular simulations produce highdimensional ... 1 0 0 1 0 0
12842 Exploration--Exploitation in MDPs with Options large body empirical results show temporallyex... 1 0 0 1 0 0
12843 Pressure induced spin crossover in disordered ... structural magnetic electricaltransport proper... 0 1 0 0 0 0
12844 Central Limit Theorem for empirical transporta... consider problem optimal transportation quadra... 0 0 1 1 0 0
12845 Characterization of temperatures associated to... let mathcall schrdinger operator form mathcall... 0 0 1 0 0 0
12846 Dynamic-sensitive cooperation in the presence ... importance microscopic details cooperation lev... 0 0 0 0 1 0
12847 Inference in Graphical Models via Semidefinite... maximum posteriori probability map inference g... 1 0 0 1 0 0
12848 A Hybrid Approach using Ontology Similarity an... one challenges information retrieval providing... 1 0 0 0 0 0
12849 Scalable multimodal convolutional networks for... brain tumour segmentation plays key role compu... 1 0 0 0 0 0
12850 Fermionic projected entangled-pair states and ... study fermionic matrix product operator algebr... 0 1 0 0 0 0
12851 Exact collisional moments for plasma fluid the... velocityspace moments often troublesome nonlin... 0 1 1 0 0 0
12852 What is Unique in Individual Gait Patterns? Un... machine learning ml techniques deep artificial... 0 0 0 1 0 0
12853 On the ground state of spiking network activit... electrophysiological recordings spiking activi... 0 0 0 1 1 0
12854 Inferring Information Flow in Spike-train Data... understanding information processing brain req... 0 0 0 0 1 0
12855 Correlated Components Analysis - Extracting Re... one find dimensions multivariate data reliably... 0 0 0 1 0 0
12856 Defining and estimating stochastic rate change... rate change calculations literature involve de... 0 0 0 0 0 1
12857 Teacher Improves Learning by Selecting a Train... call learner superteachable teacher trim iid t... 0 0 0 1 0 0
12858 Photospheric Emission of Gamma-Ray Bursts review physics grb production relativistic jet... 0 1 0 0 0 0
12859 GPU acceleration and performance of the partic... elegant accelerator physics particlebeam dynam... 0 1 0 0 0 0
12860 Short-distance breakdown of the Higgs mechanis... higgs mechanism longrange coulomb interaction ... 0 1 0 0 0 0
12861 The Massey's method for sport rating: a networ... revisit masseys method rating ranking sports c... 1 1 0 0 0 0
12862 Pharmacokinetics Simulations for Studying Corr... key objective two phase b amp clinical trials ... 0 0 0 1 1 0
12863 Magellan/M2FS Spectroscopy of Galaxy Clusters:... report results pilot program use magellanmfs s... 0 1 0 0 0 0
12864 Parametric Decay Instability and Dissipation o... evolution parametric decay instability pdi cir... 0 1 0 0 0 0
12865 Generalised model-independent characterisation... shortened determine transformation matrix maps... 0 1 0 0 0 0
12866 Properties of interaction networks, structure ... structured populations spatial arrangement coo... 0 0 0 0 1 0
12867 Optimized Household Demand Management with Loc... demand side management dsm strategies often as... 1 0 0 0 0 0
12868 Interaction-Based Distributed Learning in Cybe... paper consider network scenario agents evaluat... 1 0 1 1 0 0
12869 EC3: Combining Clustering and Classification f... classification clustering algorithms proved su... 1 0 0 1 0 0
12870 A review of possible effects of cognitive bias... paper investigates extent cognitive biases may... 0 0 0 1 0 0
12871 High-Tc superconductivity up to 55 K under hig... report highpressure study heavily electron dop... 0 1 0 0 0 0
12872 Existence theorems for a nonlinear second-orde... work concerned existence solutions nonlinear s... 0 0 1 0 0 0
12873 Spatial coherence measurement and partially co... complete characterization spatial coherence di... 0 1 0 0 0 0
12874 SPECTRE: Seedless Network Alignment via Spectr... network alignment consists finding corresponde... 1 0 0 0 0 0
12875 An efficient genetic algorithm for large-scale... industrial indoor environment harsh wireless c... 1 0 0 0 0 0
12876 Feature selection algorithm based on Catastrop... paper introduce new feature selection algorith... 1 0 0 1 0 0
12877 Neobility at SemEval-2017 Task 1: An Attention... paper describes neuralnetwork model performed ... 1 0 0 0 0 0
12878 Coherent extension of partial automorphisms, f... give strengthened versions herwiglascar hodkin... 0 0 1 0 0 0
12879 Homological indices of collections of 1-forms homological index holomorphic form complex ana... 0 0 1 0 0 0
12880 An age-structured continuum model for myxobact... myxobacteria social bacteria glide form counte... 0 1 1 0 0 0
12881 Smoothing Properties of Bilinear Operators and... prove bilinear fractional integral operators s... 0 0 1 0 0 0
12882 Local equilibrium in the Bak-Sneppen model bak sneppen bs model simple model exhibits ric... 0 1 0 0 0 0
12883 Ribbon structures of the Drinfeld center of a ... classify ribbon structures drinfeld center mat... 0 0 1 0 0 0
12884 X-ray luminescence computed tomography using a... due low xray photon utilization efficiency low... 0 1 0 0 0 0
12885 Perturbed Kitaev model: excitation spectrum an... developed general approach calculation powerla... 0 1 0 0 0 0
12886 FreezeOut: Accelerate Training by Progressivel... early layers deep neural net fewest parameters... 1 0 0 1 0 0
12887 Stochastic Subsampling for Factorizing Huge Ma... present matrixfactorization algorithm scales i... 1 0 1 1 0 0
12888 Just ASK: Building an Architecture for Extensi... paper presents design machine learning archite... 1 0 0 0 0 0
12889 Scaling, Scattering, and Blackbody Radiation i... discuss blackbody radiation within context cla... 0 1 0 0 0 0
12890 Critical binomial ideals of Norhtcott type paper study family binomial ideals defining mo... 0 0 1 0 0 0
12891 Clustering of Magnetic Swimmers in a Poiseuill... investigate collective behavior magnetic swimm... 0 1 0 0 0 0
12892 A Time-Spectral Method for Initial-Value Probl... analyse new subdomain scheme timespectral meth... 0 1 0 0 0 0
12893 Stein Variational Adaptive Importance Sampling propose novel adaptive importance sampling alg... 0 0 0 1 0 0
12894 Closure operators on dcpos examine collective properties closure operator... 0 0 1 0 0 0
12895 Multi-Agent Coverage Control with Energy Deple... develop hybrid system model describe behavior ... 1 0 0 0 0 0
12896 Self-injective commutative rings have no nontr... establish link trace modules rigidity modules ... 0 0 1 0 0 0
12897 Origin of the Drude peak and of zero sound in ... zero temperature charge current operator appea... 0 1 0 0 0 0
12898 Multiscale dynamical network mechanisms underl... selforganized networks develop mature degenera... 0 1 0 0 0 0
12899 Theoretical calculations for precision polarim... electron polarimeters based mott scattering ex... 0 1 0 0 0 0
12900 An Online Hierarchical Algorithm for Extreme C... many modern clustering methods scale well larg... 1 0 0 1 0 0
12901 Wave and Dirac equations on manifolds review recent results geometric equations lore... 0 0 1 0 0 0
12902 The Efimov effect for heteronuclear three-body... study recombination process three atoms scatte... 0 1 0 0 0 0
12903 Mean-Field Controllability and Decentralized S... paper second twopart series presents method me... 1 0 1 0 0 0
12904 The kinematics of σ-drop bulges from spectral ... minimum stellar velocity dispersion often obse... 0 1 0 0 0 0
12905 Algorithms and Architecture for Real-time Reco... recommendation systems recognised hugely impor... 1 0 0 0 0 0
12906 A Physics Tragedy measurement problem three vexing experiments q... 0 1 0 0 0 0
12907 Dynamical Mass Generation in Pseudo Quantum El... describe dynamical symmetry breaking system ma... 0 1 0 0 0 0
12908 Computational Methods for Path-based Robust Flows real world networks often subject severe uncer... 1 0 1 0 0 0
12909 A game theoretic approach to a network cloud s... use game theory design control large scale net... 1 0 1 0 0 0
12910 A Survey of the State-of-the-Art Parallel Mult... evolutionary modeling applications best way pr... 0 0 0 0 1 0
12911 Learning Wasserstein Embeddings wasserstein distance received lot attention re... 1 0 0 1 0 0
12912 Contextual Stochastic Block Models provide first information theoretic tight anal... 1 0 0 1 0 0
12913 Tensor Regression Meets Gaussian Processes lowrank tensor regression new model class lear... 1 0 0 1 0 0
12914 Tensor Networks for Latent Variable Analysis: ... canonical polyadic decomposition cpd convenien... 1 0 0 0 0 0
12915 Social Learning and Diffusion of Pervasive Goo... study authors develop structural model combine... 1 0 0 1 0 0
12916 Dynamic correlations at different time-scales ... empirical mode decomposition emd provides tool... 1 0 0 0 0 0
12917 Order-disorder transitions in lattice gases wi... study equilibrium properties catalyticallyacti... 0 1 0 0 0 0
12918 Spherical CNNs convolutional neural networks cnns become meth... 0 0 0 1 0 0
12919 The Kelvin-Helmholtz instability in the Orion ... recent observations rippled structures surface... 0 1 0 0 0 0
12920 Holography and Koszul duality: the example of ... si li author suggested cases adscft correspond... 0 0 1 0 0 0
12921 Uniqueness of the power of a meromorphic funct... paper devoted uniqueness problem power meromor... 0 0 1 0 0 0
12922 Link between the Superconducting Dome and Spin... measure gate voltage vg dependence superconduc... 0 1 0 0 0 0
12923 On the Dynamics of Deterministic Epidemic Prop... work review class deterministic nonlinear mode... 1 1 1 0 0 0
12924 Comparison of Multiple Features and Modeling M... textdependent speaker verification becoming po... 1 0 0 0 0 0
12925 Estimation of lactate threshold with machine l... lactate threshold considered essential paramet... 0 0 0 1 0 0
12926 A Coin-Tossing Conundrum shown equiprobability hypothesis leads scenari... 0 0 0 1 0 0
12927 Meridian Surfaces on Rotational Hypersurfaces ... construct special class lorentz surfaces pseud... 0 0 1 0 0 0
12928 Hybrid Optimization Method for Reconfiguration... since limited power capacity finite inertia dy... 1 0 0 0 0 0
12929 Looking at Outfit to Parse Clothing paper extends fullyconvolutional neural networ... 1 0 0 0 0 0
12930 Mermin-Wagner physics, (H,T) phase diagram, an... baconbo presents system whose co ions effectiv... 0 1 0 0 0 0
12931 Most Complex Non-Returning Regular Languages regular language l nonreturning minimal determ... 1 0 0 0 0 0
12932 ArtGAN: Artwork Synthesis with Conditional Cat... paper proposes extension generative adversaria... 1 0 0 0 0 0
12933 Polynomial bound for the nilpotency index of f... working infinite field positive characteristic... 0 0 1 0 0 0
12934 CFAAR: Control Flow Alteration to Assist Repair present cfaar program repair assistance techni... 1 0 0 0 0 0
12935 Cross-Sentence N-ary Relation Extraction with ... past work relation extraction focused binary r... 1 0 0 0 0 0
12936 Community Interaction and Conflict on the Web users organize communities web platforms commu... 1 0 0 0 0 0
12937 Recurrence network measures for hypothesis tes... recurrence networks associated statistical mea... 0 1 0 0 0 0
12938 Diffraction-limited plenoptic imaging with cor... traditional optical imaging faces unavoidable ... 0 1 0 0 0 0
12939 Binary Classification with Karmic, Threshold-Q... complex performance measures beyond popular me... 0 0 0 1 0 0
12940 Learning from Noisy Label Distributions paper consider novel machine learning problem ... 1 0 0 1 0 0
12941 Commissioning of FLAG: A phased array feed for... phased array feed paf technology next major ad... 0 1 0 0 0 0
12942 Arithmetic representations of fundamental grou... let x normal algebraic variety finitely genera... 0 0 1 0 0 0
12943 Optimization over Degree Sequences introduce study problem optimizing arbitrary f... 1 0 1 0 0 0
12944 Interferometric Monitoring of Gamma-ray Bright... present results long baseline interferometry v... 0 1 0 0 0 0
12945 Parabolic equations with natural growth approx... paper study several aspects related solutions ... 0 0 1 0 0 0
12946 Excitonic gap generation in thin-film topologi... work analyze excitonic gap generation strongco... 0 1 0 0 0 0
12947 Constructive Preference Elicitation over Hybri... preference elicitation task suggesting highly ... 1 0 0 0 0 0
12948 Ginzburg-Landau equations on Riemann surfaces ... study ginzburglandau equations riemann surface... 0 0 1 0 0 0
12949 On the Hamming Auto- and Cross-correlation Fun... paper new class frequency hopping sequences fh... 1 0 0 0 0 0
12950 Scikit-Multiflow: A Multi-output Streaming Fra... scikitmultiflow multioutputmultilabel stream d... 0 0 0 1 0 0
12951 Deep Learning on Operational Facility Data Rel... distributed computing platforms provide robust... 1 0 0 0 0 0
12952 The Rational Sectional Category of Certain Uni... prove sectional category universal fibration f... 0 0 1 0 0 0
12953 Characterising exo-ringsystems around fast-rot... planetary rings produce distinct shape distort... 0 1 0 0 0 0
12954 Learning a Generative Model of Cancer Metastasis introduce unified disentanglement network ufdn... 0 0 0 0 1 0
12955 Joint User Selection and Energy Minimization f... paper provides unified framework deal challeng... 1 0 0 0 0 0
12956 On Sidorenko's conjecture for determinants and... study class determinant inequalities closely r... 0 0 1 0 0 0
12957 Identifying Irregular Power Usage by Turning P... power grids critical infrastructure assets fac... 1 0 0 0 0 0
12958 A model of reward-modulated motor learning wit... many recent studies motor system divided two d... 0 0 0 0 1 0
12959 A de Sitter limit analysis for dark energy and... effective field theory dark energy modified gr... 0 1 0 0 0 0
12960 Empirical Analysis on Comparing the Performanc... processaware information systems pais system s... 1 0 0 0 0 0
12961 Cross-modal Deep Metric Learning with Multi-ta... dnnbased crossmodal retrieval become research ... 1 0 0 1 0 0
12962 $W$-entropy formulas on super Ricci flows and ... survey paper give overview recent works study ... 0 0 1 0 0 0
12963 Cancellable elements of the lattice of semigro... completely determine commutative semigroup var... 0 0 1 0 0 0
12964 Know-Evolve: Deep Temporal Reasoning for Dynam... availability large scale event data time stamp... 1 0 0 0 0 0
12965 Mechanisms of dimensionality reduction and dec... deep neural networks widely used various domai... 1 0 0 1 0 0
12966 Detecting Strong Ties Using Network Motifs detecting strong ties among users social infor... 1 1 0 0 0 0
12967 Streaming Weak Submodularity: Interpreting Neu... many machine learning applications important e... 1 0 0 1 0 0
12968 Staging superstructures in high-$T_c$ Sr/O co-... present high energy xray diffraction studies s... 0 1 0 0 0 0
12969 Interface magnetism and electronic structure: ... studied structural electronic magnetic propert... 0 1 0 0 0 0
12970 Bloch-type spaces and extended Cesàro operator... let mathbbb unit ball complex banach space x p... 0 0 1 0 0 0
12971 Alchemist: An Apache Spark <=> MPI Interface apache spark framework distributed computation... 0 0 0 1 0 0
12972 Compositional (In)Finite Abstractions for Larg... paper concerned compositional approach constru... 1 0 0 0 0 0
12973 Infinitely generated symbolic Rees algebras ov... polynomial ring arbitrary field twelve variabl... 0 0 1 0 0 0
12974 Latent Constraints: Learning to Generate Condi... deep generative neural networks proven effecti... 1 0 0 1 0 0
12975 Characterization of Zinc oxide & Aluminum Ferr... zinc oxide aluminum ferrite prepared chemical ... 0 1 0 0 0 0
12976 Poisson Structures and Potentials introduce notion weakly logcanonical poisson s... 0 0 1 0 0 0
12977 The closure of ideals of $\boldsymbol{\ell^1(Σ... x compact hausdorff space sigma homeomorphism ... 0 0 1 0 0 0
12978 An alternative quadratic formula classical quadratic formula lesser known varia... 0 0 1 0 0 0
12979 Sound event detection using weakly-labeled sem... paper present gated convolutional recurrent ne... 1 0 0 0 0 0
12980 Inflationary $α$-attractor cosmology: A global... study flat flrw alphaattractor mathrme mathrmt... 0 1 0 0 0 0
12981 Symmetric Convex Sets with Minimal Gaussian Su... let omegasubsetmathbbrn minimal gaussian surfa... 1 0 1 0 0 0
12982 Advancements in Continuum Approximation Models... continuum approximation ca efficient parsimoni... 0 0 1 0 0 0
12983 On a free boundary problem and minimal surfaces minimal surfaces simons cone catenoids using r... 0 0 1 0 0 0
12984 Storing and retrieving long-term memories: coo... first review traditional approaches memory sto... 0 0 0 0 1 0
12985 An algorithm for removing sensitive informatio... predictive modeling increasingly employed assi... 0 0 0 1 0 0
12986 A Question Answering Approach to Emotion Cause... emotion cause extraction aims identify reasons... 1 0 0 0 0 0
12987 Convolutional Graph Auto-encoder: A Deep Gener... machine learning graphstructured data importan... 0 0 0 1 0 0
12988 Quasisymmetrically co-Hopfian Sierpiński Space... metric space x quasisymmetrically cohopfian ev... 0 0 1 0 0 0
12989 Localization properties and high-fidelity stat... investigate tightbinding electronic chain feat... 0 1 0 0 0 0
12990 On consistency of optimal pricing algorithms i... study revenue optimization learning algorithms... 1 0 0 1 0 0
12991 City-wide Analysis of Electronic Health Record... occurrence drugdruginteractions ddi multiple d... 1 0 0 1 1 0
12992 A remark on the disorienting of species due to... article study stabilizing primitive pattern be... 0 0 0 0 1 0
12993 Fourier optimization and prime gaps investigate extremal problems fourier analysis... 0 0 1 0 0 0
12994 An Interpretable Knowledge Transfer Model for ... knowledge bases important resources variety na... 1 0 0 0 0 0
12995 Vecchia approximations of Gaussian-process pre... gaussian processes gps highly flexible functio... 0 0 0 1 0 0
12996 Long-Term Sequential Prediction Using Expert A... prediction experts advice setting consider met... 1 0 0 1 0 0
12997 AMBER: Adaptive Multi-Batch Experience Replay ... paper new adaptive multibatch experience repla... 1 0 0 0 0 0
12998 Magnetic states of MnP: muon-spin rotation stu... muonspin rotation data collected ambient press... 0 1 0 0 0 0
12999 The Hyper Suprime-Cam Software Pipeline paper describe optical imaging data processing... 0 1 0 0 0 0
13000 Plasma-based wakefield accelerators as sources... estimate average flux density minimallycoupled... 0 1 0 0 0 0
13001 The Large D Limit of Planar Diagrams show textod invariant matrix theories containi... 0 0 1 0 0 0
13002 Trajectory Tracking Control of a Flexible Spin... underactuated lightweight tensegrity robotic a... 1 0 0 0 0 0
13003 Noncoherent Analog Network Coding using LDPC-c... analog network coding anc throughput increasin... 1 0 0 0 0 0
13004 Feature selection in weakly coherent matrices problem paramount importance pure restricted i... 0 0 0 1 0 0
13005 Learning to Detect and Mitigate Cross-layer At... security threats jamming route manipulation si... 1 0 0 0 0 0
13006 MHD Turbulence in spin-down flows of liquid me... intense spindown flows allow one reach high rm... 0 1 0 0 0 0
13007 Lifelong Multi-Agent Path Finding for Online P... multiagent pathfinding mapf problem recently r... 1 0 0 0 0 0
13008 Examples of finite dimensional algebras which ... construct matrix algebra lambdaab two given fi... 0 0 1 0 0 0
13009 Learning retrosynthetic planning through self-... problem retrosynthetic planning framed one pla... 1 0 0 1 0 0
13010 Real-space analysis of scanning tunneling micr... sparse modeling approach proposed analyzing sc... 0 1 0 0 0 0
13011 Scattered light intensity measurements of plas... polydimethylsiloxane pdms films possess differ... 0 1 0 0 0 0
13012 A hierarchical Bayesian model for predicting e... identifying undocumented potential future inte... 0 0 0 1 0 0
13013 Progressive and Multi-Path Holistically Nested... pathological lung segmentation pls important y... 1 0 0 0 0 0
13014 On the Helium fingers in the intracluster medium paper investigate convection phenomenon intrac... 0 1 0 0 0 0
13015 Absolute frequency determination of molecular ... present absolute frequency measurement unpertu... 0 1 0 0 0 0
13016 Inference-Based Similarity Search in Randomize... similarity search essential many important app... 1 0 0 0 0 0
13017 Sublinear elliptic problems under radiality. H... let l laplace operator r dgeq laplace beltrami... 0 0 1 0 0 0
13018 Bayesian Uncertainty Directed Trial Designs bayesian responseadaptive designs unbalance ra... 0 0 0 1 0 0
13019 Wasserstein Learning of Deep Generative Point ... point processes becoming popular modeling asyn... 1 0 0 1 0 0
13020 Interior Structures and Tidal Heating in the T... seven planets trappist system largest number e... 0 1 0 0 0 0
13021 A Driver-in-the Loop Fuel Economic Control Str... paper focus developing driverinthe loop fuel e... 1 0 0 0 0 0
13022 A General and Adaptive Robust Loss Function present generalization cauchylorentzian gemanm... 1 0 0 1 0 0
13023 Asymptotically Efficient Estimation of Smooth ... let x centered gaussian random variable separa... 0 0 1 1 0 0
13024 Evolution of magnetic and dielectric propertie... report evolution structural magnetic dielectri... 0 1 0 0 0 0
13025 Regular Intersecting Families call family sets intersecting two sets family ... 1 0 0 0 0 0
13026 Stochastic Maximum Likelihood Optimization via... work explores maximum likelihood optimization ... 1 0 0 1 0 0
13027 Magnetic resonance of rubidium atoms passing t... measured magnetic resonance rubidium atoms pas... 0 1 0 0 0 0
13028 Fast multi-output relevance vector regression paper aims decrease time complexity multioutpu... 1 0 0 1 0 0
13029 Computing LPMLN Using ASP and MLN Solvers lpmln recent addition probabilistic logic prog... 1 0 0 0 0 0
13030 Explainable AI: Beware of Inmates Running the ... seminal book inmates running asylum hightech p... 1 0 0 0 0 0
13031 Building Emotional Machines: Recognizing Image... image effective tool conveying emotions many r... 1 0 0 0 0 0
13032 Soft Rough Graphs soft set theory rough set theory mathematical ... 0 0 1 0 0 0
13033 PPMF: A Patient-based Predictive Modeling Fram... date developing good model early intensive car... 1 0 0 0 0 0
13034 Zeros of real random polynomials spanned by OPUC let varphiiiinfty sequence orthonormal polynom... 0 0 1 0 0 0
13035 Indirect observation of molecular disassociati... molecular dynamics solid benzene extremely com... 0 1 0 0 0 0
13036 Green's function-based control-oriented modeli... paper propose novel approach obtaining reliabl... 0 1 0 0 0 0
13037 Hilbert Bases and Lecture Hall Partitions interest finding minimum additive generating s... 0 0 1 0 0 0
13038 CLUBB-SILHS: A parameterization of subgrid var... document provides detailed overview clubbsilhs... 0 1 0 0 0 0
13039 Relative Entropy in CFT using arakis relative entropy liebs convexity ... 0 0 1 0 0 0
13040 Approximate Supermodularity Bounds for Experim... work provides performance guarantees greedy so... 1 0 1 1 0 0
13041 A new precision measurement of the α-decay hal... laboratory measurement alphadecay halflife pt ... 0 1 0 0 0 0
13042 Online Inverse Reinforcement Learning via Bell... paper develops online inverse reinforcement le... 1 0 0 0 0 0
13043 SchNet: A continuous-filter convolutional neur... deep learning potential revolutionize quantum ... 0 1 0 1 0 0
13044 Generalized magnetic mirrors propose generalized magnetic mirrors achieved ... 0 1 0 0 0 0
13045 Cryogenic readout for multiple VUV4 Multi-Pixe... present performances characterization array ma... 0 1 0 0 0 0
13046 A Scalable Deep Neural Network Architecture fo... one key technologies future largescale locatio... 1 0 0 1 0 0
13047 A latent spatial factor approach for synthesiz... background opioid misuse major public health i... 0 0 0 1 0 0
13048 The Cost of Transportation : Spatial Analysis ... geography fuel prices many various implication... 0 1 0 1 0 0
13049 Optimal Multi-Object Segmentation with Novel G... shape priors widely utilized medical image seg... 1 0 0 0 0 0
13050 Discovery of water at high spectral resolution... report detection water absorption features day... 0 1 0 0 0 0
13051 A strengthened inequality of Alon-Babai-Suzuki... let kkkldotskr lllldotsls disjoint subsets ldo... 0 0 1 0 0 0
13052 Traditional and Heavy-Tailed Self Regularizati... random matrix theory rmt applied analyze weigh... 1 0 0 1 0 0
13053 Interfacial Mechanical Behaviors in Carbon Nan... interface widely exists carbon nanotube cnt as... 0 1 0 0 0 0
13054 Learning a Latent Space of Multitrack Measures discovering exploring underlying structure mul... 0 0 0 1 0 0
13055 Multimodal Affect Analysis for Product Feedbac... consumers often react expressively products fo... 1 0 0 0 0 0
13056 Distributed Learning for Cooperative Inference study problem cooperative inference group agen... 1 0 1 1 0 0
13057 Selection of training populations (and other s... optimal subset selection important task numero... 0 0 0 1 0 0
13058 CERES in Propositional Proof Schemata cutelimination one famous problems proof theor... 1 0 1 0 0 0
13059 A Schur decomposition reveals the richness of ... improved understanding turbulence essential ef... 0 1 0 0 0 0
13060 Parametrizing filters of a CNN with a GAN commonly agreed use relevant invariances good ... 1 0 0 1 0 0
13061 Monolayer FeSe on SrTiO$_3$ epitaxial engineering solidstate heterointerfa... 0 1 0 0 0 0
13062 A Fast and Scalable Joint Estimator for Learni... estimating multiple sparse gaussian graphical ... 1 0 0 1 0 0
13063 Quantum Spin Liquids Unveil the Genuine Mott S... widom line identifies locus phase diagram supe... 0 1 0 0 0 0
13064 Parameter and State Estimation in Queues and R... annotated bibliography estimation inference re... 1 0 1 1 0 0
13065 Towards a Social Virtual Reality Learning Envi... virtual learning environments vles spaces desi... 1 0 0 0 0 0
13066 L2 Regularization versus Batch and Weight Norm... batch normalization commonly used trick improv... 1 0 0 1 0 0
13067 Bitwise Operations of Cellular Automaton on Gr... cellular automata ca theory discrete model rep... 1 0 0 0 0 0
13068 Deep Convolutional Framelets: A General Deep L... recently deep learning approaches various netw... 1 0 0 1 0 0
13069 Enhanced bacterial swimming speeds in macromol... locomotion swimming bacteria simple newtonian ... 0 1 0 0 0 0
13070 An Algebraic Treatment of Recursion review three principal methods assign meaning ... 1 0 0 0 0 0
13071 On Approximation for Fractional Stochastic Par... paper gives exact solution terms karhunenlove ... 0 0 1 1 0 0
13072 Learning Structural Node Embeddings Via Diffus... nodes residing different parts graph similar s... 1 0 0 1 0 0
13073 Excitonic mass gap in uniaxially strained grap... study conditions spontaneously generating exci... 0 1 0 0 0 0
13074 On spectral properties of high-dimensional spa... spatialsign covariance matrix sscm important s... 0 0 1 1 0 0
13075 Decoupled Potential Integral Equations for Ele... recent work developing novel integral equation... 0 1 0 0 0 0
13076 High-field transport properties of a P-doped B... high temperature hightc superconductors like c... 0 1 0 0 0 0
13077 Construction of and efficient sampling from th... simplicial complexes popular alternative netwo... 0 1 1 1 0 0
13078 Local and 2-local derivations and automorphism... present paper devoted local local derivations ... 0 0 1 0 0 0
13079 RodFIter: Attitude Reconstruction from Inertia... rigid motion computation estimation cornerston... 1 0 0 0 0 0
13080 Influence Networks in International Relations measuring influence determining drives persist... 0 1 0 1 0 0
13081 Incorporating Feedback into Tree-based Anomaly... anomaly detectors often used produce ranked li... 1 0 0 1 0 0
13082 Towards An Adaptive Compliant Aerial Manipulat... roles unmanned aerial vehicles uav continue di... 1 0 0 0 0 0
13083 On the number of inequivalent Gabidulin codes maximum rankdistance mrd codes extremal codes ... 1 0 1 0 0 0
13084 A Connection Between Mixing and Kac's Chaos boltzmann equation integrodifferential equatio... 0 0 1 0 0 0
13085 The aCORN Backscatter-Suppressed Beta Spectrom... backscatter electrons beta spectrometer incomp... 0 1 0 0 0 0
13086 Deterministic Browser timing attacks continuous threat users privacy... 1 0 0 0 0 0
13087 Can Transfer Entropy Infer Causality in Neuron... finding causes observed effects establishing c... 1 0 0 0 1 0
13088 Solvability of the Stokes Immersed Boundary Pr... study coupled motion closed elastic string imm... 0 0 1 0 0 0
13089 Nonlinear Field Space Cosmology consider frw cosmological model matter content... 0 1 0 0 0 0
13090 Futuristic Classification with Dynamic Referen... classification one widely used analytical tech... 0 0 0 1 0 0
13091 On the normal centrosymmetric Nonnegative inve... give sufficient conditions nonnegative inverse... 0 0 1 0 0 0
13092 Spectral Dynamics of Learning Restricted Boltz... restricted boltzmann machine rbm important too... 1 1 0 0 0 0
13093 Local energy decay for Lipschitz wavespeeds prove logarithmic local energy decay rate wave... 0 0 1 0 0 0
13094 Linear stability and stability of Lazarsfeld-M... let c smooth irreducible projective curve let ... 0 0 1 0 0 0
13095 Bayesian Optimization Using Domain Knowledge o... controllers robotics often consist expertdesig... 1 0 0 0 0 0
13096 Comparison of multi-task convolutional neural ... toxicity analysis prediction paramount importa... 1 0 0 1 0 0
13097 SIFM: A network architecture for seamless flow... paper deals cellular eg lte networks selective... 1 0 0 0 0 0
13098 Graph sampling with determinantal processes present new random sampling strategy kbandlimi... 1 0 0 1 0 0
13099 Grundy dominating sequences and zero forcing sets graph g sequence vvdotsvm vertices grundy domi... 0 0 1 0 0 0
13100 Comments on `High-dimensional simultaneous inf... provide comments article highdimensional simul... 0 0 0 1 0 0
13101 Robust Bayesian Model Selection for Variable C... variable clustering important explanatory anal... 0 0 0 1 0 0
13102 On the universality of MOG weak field approxim... weak field limit scalartensorvector gravity th... 0 1 0 0 0 0
13103 Much Faster Algorithms for Matrix Scaling develop several efficient algorithms classical... 1 0 1 0 0 0
13104 Cooperative "folding transition" in the sequen... protein sequence space natural proteins form c... 0 1 0 0 0 0
13105 Thermal Molecular Focusing: Tunable Cross Effe... control solute fluxes either microscopic phore... 0 1 0 0 0 0
13106 Shallow water modeling of rolling pad instabil... magnetohydrodynamically induced interface inst... 0 1 0 0 0 0
13107 Near-Optimal Clustering in the $k$-machine model clustering problem many variants numerous appl... 1 0 0 0 0 0
13108 Solving (most) of a set of quadratic equalitie... develop procedures based minimization composit... 0 0 1 1 0 0
13109 Edge-Based Recognition of Novel Objects for Ro... paper investigate problem grasping novel objec... 1 0 0 0 0 0
13110 Surface Normals in the Wild study problem singleimage depth estimation ima... 1 0 0 0 0 0
13111 Piecewise excluding geodesic languages complexity geodesic language connections algeb... 0 0 1 0 0 0
13112 Deep Learning with Domain Adaptation for Accel... purpose radial kspace trajectory wellestablish... 1 0 0 0 0 0
13113 Automation in Human-Machine Networks: How Incr... efficient humanmachine networks require produc... 1 0 0 0 0 0
13114 Comment on "On the nature of magnetic stripes ... dynamics reduces orthorhombicity magnetic stri... 0 1 0 0 0 0
13115 Logically Isolated, Actually Unpredictable? Me... ideally enabling multitenancy network virtuali... 1 0 0 0 0 0
13116 Analysis of a nonlinear importance sampling sc... bayesian estimation unknown parameters statesp... 0 0 0 1 0 0
13117 On Axiomatizability of the Multiplicative Theo... multiplicative theory set numbers could natura... 1 0 1 0 0 0
13118 On Bivariate Discrete Weibull Distribution recently lee cha two generalized classes discr... 0 0 0 1 0 0
13119 Parabolic induction in characteristic p let g group rational points reductive connecte... 0 0 1 0 0 0
13120 Linear polygraphs applied to categorification introduce two applications polygraphs categori... 0 0 1 0 0 0
13121 Viable tensor-to-scalar ratio in a symmetric m... matter bounces refer scenarios wherein univers... 0 1 0 0 0 0
13122 Approximate Ripple Carry and Carry Lookahead A... approximate ripple carry adders rcas carry loo... 1 0 0 0 0 0
13123 On the Robustness and Asymptotic Properties fo... normality assumption data set restrictive appr... 0 0 1 1 0 0
13124 Solving internal covariate shift in deep learn... work proposes novel solution problem internal ... 1 0 0 1 0 0
13125 Correlating the nanostructure of Al-oxide with... work concerned alaloxidealoxallayer systems im... 0 1 0 0 0 0
13126 Senior Project Management System: Requirements... senior project typical essential course comput... 1 0 0 0 0 0
13127 Simulation of Matrix Product State on a Quantu... study tensor network theory important field pr... 1 0 0 0 0 0
13128 Deep Generative Models with Learnable Knowledg... broad set deep generative models dgms achieved... 0 0 0 1 0 0
13129 A Proximity-Aware Hierarchical Clustering of F... paper propose unsupervised face clustering alg... 1 0 0 0 0 0
13130 Acoustic emission source localization in thin ... paper presents new acoustic emission ae source... 0 1 0 0 0 0
13131 Asymptotically Optimal Multi-Paving andersons paving conjecture known hold due res... 0 0 1 0 0 0
13132 Meeting the Challenges of Modeling Astrophysic... describe amrex suite astrophysics codes applic... 0 1 0 0 0 0
13133 Eliminating the unit constant in the Lambek ca... present translation lambek calculus brackets u... 1 0 1 0 0 0
13134 Robust Distributed Planar Formation Control fo... present distributed formation control strategy... 1 0 0 0 0 0
13135 Dual Based DSP Bidding Strategy and its Applic... recent years rtbreal time bidding becomes popu... 1 0 0 1 0 0
13136 Residual Gated Graph ConvNets graphstructured data social networks functiona... 1 0 0 1 0 0
13137 User-driven mobile robot storyboarding: Learni... paper describes novel storyboarding scheme use... 1 0 0 0 0 0
13138 Habitability of Exoplanetary Systems aim dissertation investigate habitability extr... 0 1 0 0 0 0
13139 The HST Large Program on Omega Centauri. I. Mu... part large investigation hubble space telescop... 0 1 0 0 0 0
13140 On Natural Language Generation of Formal Argum... paper provide first analysis research question... 1 0 0 0 0 0
13141 Supervised Learning Based Algorithm Selection ... many recent deep learning platforms rely third... 1 0 0 0 0 0
13142 Extracting Hierarchies of Search Tasks & Subta... significant amount search queries originate re... 1 0 0 0 0 0
13143 The unpolarized Shafarevich Conjecture for K3 ... prove unpolarized shafarevich conjecture k sur... 0 0 1 0 0 0
13144 Unbounded product-form Petri nets computing steadystate distributions infinitest... 1 0 0 0 0 0
13145 QLBS: Q-Learner in the Black-Scholes(-Merton) ... paper presents discretetime option pricing mod... 1 0 0 0 0 0
13146 End-to-end Networks for Supervised Single-chan... performance single channel source separation a... 1 0 0 0 0 0
13147 A note on searching sorted unbalanced three-di... examine problem searching sequentially desired... 1 0 0 0 0 0
13148 Isomorphism classes of four dimensional nilpot... paper classify isomorphism classes four dimens... 0 0 1 0 0 0
13149 Contemporary facets of business successes amon... current article unveils analyzes important fac... 0 0 0 0 0 1
13150 Ensemble of Part Detectors for Simultaneous Cl... partbased representation proven effective vari... 1 0 0 0 0 0
13151 Graph Model Selection via Random Walks paper present novel approach based random walk... 1 0 0 0 0 0
13152 On irrationality measure of Thue-Morse constant provide nontrivial measure irrationality class... 0 0 1 0 0 0
13153 Adiabatic approach for natural gas pipeline co... consider slowly evolving ie adiabatic operatio... 1 1 0 0 0 0
13154 Clustering and Labelling Auction Fraud Data although shill bidding common auction fraud ho... 0 0 0 1 0 0
13155 Investigation of channel model for weakly coup... investigate evolution decorrelation bandwidth ... 0 1 0 0 0 0
13156 Palindromic Subsequences in Finite Words lyngso pedersen proposed conjecture stating ev... 1 0 0 0 0 0
13157 Risk quantification for the thresholding rule ... paper study asymptotic properties bayesian mul... 0 0 1 1 0 0
13158 Some recent results on the Dirichlet problem f... short account recent existence multiplicity th... 0 0 1 0 0 0
13159 A convex penalty for switching control of part... convex penalty promoting switching controls pa... 0 0 1 0 0 0
13160 Workload Analysis of Blue Waters blue waters petascalelevel supercomputer whose... 1 0 0 0 0 0
13161 Model-Independent Analytic Nonlinear Blind Sou... consider time series measurements state evolvi... 0 0 0 1 0 0
13162 Seven Lessons from Manyfield Inflation in Rand... study inflation models many interacting fields... 0 1 0 0 0 0
13163 Steering Social Activity: A Stochastic Optimal... user engagement online social networking depen... 1 0 0 1 0 0
13164 Adaptive Clustering Using Kernel Density Estim... investigate statistical properties clustering ... 0 0 0 1 0 0
13165 Realization of functions on the symmetrized bi... prove realization formula model formula analyt... 0 0 1 0 0 0
13166 Ground state properties of 3d metals from self... self consistent gw approach scgw applied calcu... 0 1 0 0 0 0
13167 Survival Trees for Interval-Censored Survival ... intervalcensored data event time known lie tim... 0 0 0 1 0 0
13168 Bayesian LSTMs in medicine medical field stands see significant benefits ... 1 0 0 1 0 0
13169 Motion Planning for a UAV with a Straight or K... paper develops compares two motion planning al... 1 0 0 0 0 0
13170 Star formation driven galactic winds in UGC 10043 study galactic wind edgeon spiral galaxy ugc c... 0 1 0 0 0 0
13171 Drive and measurement electrode patterns for e... objective establish performance several drive ... 0 0 0 0 1 0
13172 Remarks on Liouville Type Theorems for Steady-... liouville type theorems stationary navierstoke... 0 0 1 0 0 0
13173 The Homogeneous Broadcast Problem in Narrow an... let p set nodes wireless network node modeled ... 1 0 0 0 0 0
13174 Extreme CO Isotopic Abundances in the ULIRG IR... present alma co j co j co j observations local... 0 1 0 0 0 0
13175 Computing Nearby Non-trivial Smith Forms consider problem computing nearest matrix poly... 1 0 0 0 0 0
13176 Quasinonexpansive Iterations on the Affine Hul... fixed point iterations play central role desig... 0 0 1 0 0 0
13177 Decentralized Optimal Control for Connected Au... prior work addressed problem optimally control... 0 0 1 0 0 0
13178 The Rational Distance Problem for Equilateral ... let p denote problem existence point plane giv... 0 0 1 0 0 0
13179 Compact Hausdorff MV-algebras: Structure, Dual... proved category mathbbem extended multisets du... 0 0 1 0 0 0
13180 Nonvanishing theorems for twisted L-functions ... prove nonvanishing twisted central critical va... 0 0 1 0 0 0
13181 Force-induced elastic matrix-mediated interact... consider elastic composite material containing... 0 1 0 0 0 0
13182 One-way quantum computing in superconducting c... propose method implementation oneway quantum c... 0 1 0 0 0 0
13183 Smooth solution to higher dimensional complex ... let x compact connected strongly pseudoconvex ... 0 0 1 0 0 0
13184 Parameterized Approximation Schemes for Steine... study steiner tree problem set terminal vertic... 1 0 0 0 0 0
13185 Nerve impulse propagation and wavelet theory luminous stimulus penetrates retina converted ... 0 0 0 0 1 0
13186 Generation of unipolar half-cycle pulse via un... present significantly different reflection pro... 0 1 0 0 0 0
13187 The Implicit Bias of Gradient Descent on Separ... examine gradient descent unregularized logisti... 1 0 0 1 0 0
13188 Floquet prethermalization in the resonantly dr... demonstrate existence longlived prethermalized... 0 1 0 0 0 0
13189 Continuous vibronic symmetries in Jahn-Teller ... develop systematic study jahnteller jt models ... 0 1 0 0 0 0
13190 Augmented Lagrangian Functions for Cone Constr... article present general theory augmented lagra... 0 0 1 0 0 0
13191 Spin $q$-Whittaker polynomials introduce study oneparameter generalization qw... 0 1 1 0 0 0
13192 Lagrangians of hypergraphs: The Frankl-Füredi ... frankl fredi conjectured maximum lagrangian ru... 0 0 1 0 0 0
13193 Adversarial Attacks and Defences Competition accelerate research adversarial examples robus... 0 0 0 1 0 0
13194 Community structure of copper supply networks ... complex networks analyses many physical biolog... 1 1 0 0 0 0
13195 Clustering for Different Scales of Measurement... paper describes method clustering data spread ... 1 0 0 1 0 0
13196 Eigenvalue Dynamics of a PT-symmetric Sturm-Li... goal paper investigate dynamics eigenvalues st... 0 0 1 0 0 0
13197 Automaton Semigroups and Groups: on the Undeci... paper study algorithmic problems automaton sem... 1 0 1 0 0 0
13198 Terrestrial effects of moderately nearby super... recent data indicate one moderately nearby sup... 0 1 0 0 0 0
13199 A Variational Inequality Perspective on Genera... generative adversarial networks gans form gene... 0 0 0 1 0 0
13200 Integrating electricity markets: Impacts of in... paper analyzes market impacts expanding califo... 0 0 0 0 0 1
13201 Impact of Continuous Integration on Code Reviews peer code review continuous integration often ... 1 0 0 0 0 0
13202 New Algorithms for Unordered Tree Inclusion tree inclusion problem given two nodelabeled t... 1 0 0 0 0 0
13203 Learning to Price with Reference Effects firm varies price product consumers exhibit re... 1 0 0 0 0 0
13204 Inverse Reinforce Learning with Nonparametric ... inverse reinforcement learning irl task learni... 1 0 0 0 0 0
13205 $z^\circ$-ideals in intermediate rings of orde... proper ideal commutative ring unity called zci... 0 0 1 0 0 0
13206 Mosquito Detection with Neural Networks: The B... many realworld timeseries analysis problems ch... 1 0 0 1 0 0
13207 The inseparability of sampling and time and it... two major approaches studying macroevolution d... 0 0 0 0 1 0
13208 The imprints of bars on the vertical stellar p... second paper series aimed study stellar kinema... 0 1 0 0 0 0
13209 A structure-preserving split finite element di... introduce new finite element fe discretization... 0 0 1 0 0 0
13210 Quantum quench dynamics quench dynamics active area study encompassing... 0 1 0 0 0 0
13211 R&D On Beam Injection and Bunching Schemes In ... fermilab committed upgrade accelerator complex... 0 1 0 0 0 0
13212 Deep Structured Generative Models deep generative models shown promising results... 0 0 0 1 0 0
13213 Machine Learning Techniques for Stellar Light ... apply machine learning techniques attempt pred... 0 1 0 0 0 0
13214 Frequency measurement of the clock transition ... report frequency measurement clock transition ... 0 1 0 0 0 0
13215 Sentence-level dialects identification in the ... identifying different varieties language chall... 1 0 0 0 0 0
13216 Measuring abstract reasoning in neural networks whether neural networks learn abstract reasoni... 0 0 0 1 0 0
13217 On fractional powers of Bessel operators paper published special issue journal inequali... 0 0 1 0 0 0
13218 Small Telescope Exoplanet Transit Surveys: XO xo project aims detecting transiting exoplanet... 0 1 0 0 0 0
13219 Divide-and-Conquer Reinforcement Learning standard modelfree deep reinforcement learning... 1 0 0 0 0 0
13220 Whipping of electrified visco-capillary jets i... electrified viscocapillary jet shows different... 0 1 1 0 0 0
13221 On Optimizing Feedback Interval for Temporally... receiver perfect channel state information csi... 1 0 0 0 0 0
13222 RADNET: Radiologist Level Accuracy using Deep ... describe deep learning approach automated brai... 0 0 0 1 0 0
13223 Median statistics estimates of Hubble and Newt... robustness statistics depends upon number assu... 0 1 0 0 0 0
13224 Re-parameterizing and reducing families of nor... present new proof results kurdyka paunescu rai... 0 0 1 0 0 0
13225 Urban Scene Segmentation with Laser-Constraine... robots typically possess sensors different mod... 1 0 0 0 0 0
13226 The GAPS Programme with HARPS-N at TNG. XIII. ... framework gaps project conducting observationa... 0 1 0 0 0 0
13227 Probabilistic Program Equivalence for NetKAT tackle problem deciding whether two probabilis... 1 0 0 0 0 0
13228 Spatially Adaptive Colocalization Analysis in ... colocalization analysis aims study complex spa... 0 0 0 1 0 0
13229 On consistent vertex nomination schemes given vertex interest network g vertex nominat... 0 0 0 1 0 0
13230 Converse passivity theorems passivity imperative concept widely utilized t... 0 0 1 0 0 0
13231 Neural Networks retrieving Boolean patterns in... restricted boltzmann machines key tools machin... 0 1 0 0 0 0
13232 Link colorings and the Goeritz matrix discuss connection colorings link diagram goer... 0 0 1 0 0 0
13233 Left-invariant Grauert tubes on SU(2) let real analytic riemannian manifold adapted ... 0 0 1 0 0 0
13234 Ricci flow on cone surfaces and a three-dimens... main objective thesis study evolution ricci fl... 0 0 1 0 0 0
13235 Do metric fluctuations affect the Higgs dynami... show dynamics higgs field inflation affected m... 0 1 0 0 0 0
13236 Quantum Origami: Transversal Gates for Quantum... topology torus remains invariant certain nontr... 0 1 0 0 0 0
13237 A Decentralized Framework for Real-Time Energy... proliferation smallscale renewable generators ... 1 0 0 0 0 0
13238 White Matter Network Architecture Guides Direc... electrical brain stimulation currently investi... 0 0 0 0 1 0
13239 Community detection in networks via nonlinear ... revealing community structure network dataset ... 1 0 0 1 0 0
13240 Scale-invariant unconstrained online learning consider variant online convex optimization in... 1 0 0 1 0 0
13241 Tuning Pairing Amplitude and Spin-Triplet Text... investigate nature superconducting state curve... 0 1 0 0 0 0
13242 Thermal conductivity changes across a structur... means firstprinciples calculations investigate... 0 1 0 0 0 0
13243 Enemy At the Gateways: A Game Theoretic Approa... core technique used popular proxybased circumv... 1 0 0 0 0 0
13244 Mod-$p$ isogeny classes on Shimura varieties w... study special fiber integral models shimura va... 0 0 1 0 0 0
13245 Bayesian Optimization with Gradients bayesian optimization successful global optimi... 1 0 1 1 0 0
13246 How to cut a cake with a gram matrix article study problem fair division particular... 1 0 0 0 0 0
13247 Magnetic MIMO Signal Processing and Optimizati... magnetic resonant coupling mrc enabled multipl... 1 0 0 0 0 0
13248 Bouncy Hybrid Sampler as a Unifying Device work introduces class rejectionfree markov cha... 0 0 0 1 0 0
13249 Lifshitz interaction can promote ice growth at... airwater interfaces lifshitz interaction promo... 0 1 0 0 0 0
13250 Reverse iterative volume sampling for linear r... study following basic machine learning task gi... 0 0 0 1 0 0
13251 Learning from Complementary Labels collecting labeled data costly thus critical b... 1 0 0 1 0 0
13252 Dusty winds in active galactic nuclei: reconci... letter presents revised radiative transfer mod... 0 1 0 0 0 0
13253 Continuity of Utility Maximization under Weak ... paper find sufficient conditions continuity va... 0 0 0 0 0 1
13254 Introducing the anatomy of disciplinary discer... education increasingly framed competence minds... 0 1 0 0 0 0
13255 Well-posedness and dispersive decay of small d... article represents first step toward understan... 0 0 1 0 0 0
13256 A vehicle-to-infrastructure communication base... present paper new algorithm urban traffic ligh... 1 0 1 0 0 0
13257 Some Theorems on Optimality of a Single Observ... consider problem finding proper confidence int... 0 0 1 1 0 0
13258 Reliability and applicability of magnetic forc... investigated reliability applicability socalle... 0 1 0 0 0 0
13259 Verifying Probabilistic Timed Automata Against... probabilistic timed automata ptas timed automa... 1 0 0 0 0 0
13260 On the number of integer polynomials with mult... paper give counting results integer polynomial... 0 0 1 0 0 0
13261 New irreducible tensor product modules for the... paper obtain class virasoro modules taking ten... 0 0 1 0 0 0
13262 Polarization dynamics in a photon BEC previously shown dyefilled microcavity produce... 0 1 0 0 0 0
13263 Combining symmetry breaking and restoration wi... background ab initio manybody methods whose nu... 0 1 0 0 0 0
13264 Nonlocal Cauchy problems for wave equations an... paper existence uniqueness estimates solution ... 0 0 1 0 0 0
13265 A two-phase gradient method for quadratic prog... propose gradientbased method quadratic program... 0 0 1 0 0 0
13266 Euler characteristic and Akashi series for Sel... let abelian variety defined global function fi... 0 0 1 0 0 0
13267 The effect of boundary conditions on mixing of... study swendsenwang dynamics critical qstate po... 0 0 1 0 0 0
13268 Number of thermodynamic states in the three-di... question number thermodynamic states present l... 0 1 0 0 0 0
13269 Mechanics of disordered auxetic metamaterials auxetic materials great engineering interest f... 0 1 0 0 0 0
13270 Coherent Oscillations of Driven rf SQUID Metam... experiments numerical simulations explore beha... 0 1 0 0 0 0
13271 Localizing virtual structure sheaves by cosect... construct cosection localized virtual structur... 0 0 1 0 0 0
13272 Regularized Greedy Column Subset Selection column subset selection problem provides natur... 0 0 0 1 0 0
13273 The Cartan Algorithm in Five Dimensions paper introduce algorithm determine equivalenc... 0 0 1 0 0 0
13274 Uniform convergence for the incompressible lim... study model introduced perthame vauchelet desc... 0 0 1 0 0 0
13275 Clustering in Hilbert space of a quantum optim... solution space many classical optimization pro... 1 1 0 0 0 0
13276 Political Discourse on Social Media: Echo Cham... echo chambers ie situations one exposed opinio... 1 0 0 0 0 0
13277 Resonance enhancement of two photon absorption... applying many mode floquet formalism magnetica... 0 1 0 0 0 0
13278 Unveiling the AGN in IC 883: discovery of a pa... ic luminous infrared galaxy lirg classified st... 0 1 0 0 0 0
13279 Counting triangles, tunable clustering and the... random key graphs introduced study various pro... 1 0 1 0 0 0
13280 Convergence Rates of Variational Posterior Dis... study convergence rates variational posterior ... 0 0 1 1 0 0
13281 V773 Cas, QS Aql, and BR Ind: Eclipsing Binari... eclipsing binaries remain crucial objects unde... 0 1 0 0 0 0
13282 Variance bounding of delayed-acceptance kernels delayedacceptance version metropolishastings a... 0 0 1 1 0 0
13283 Positive Herz-Schur multipliers and approximat... calgebra set x give stinespringtype characteri... 0 0 1 0 0 0
13284 Bias-Variance Tradeoff of Graph Laplacian Regu... paper presents biasvariance tradeoff graph lap... 1 0 0 1 0 0
13285 Dual Discriminator Generative Adversarial Nets propose paper novel approach tackle problem mo... 1 0 0 1 0 0
13286 A Compressive Sensing Approach to Community De... community detection problem graphs asks one pa... 1 0 0 1 0 0
13287 Uncertainty quantification for radio interfero... uncertainty quantification critical missing co... 0 1 0 1 0 0
13288 Fairer and more accurate, but for whom? complex statistical machine learning models in... 1 0 0 1 0 0
13289 Multiresolution Tensor Decomposition for Multi... article motivated soccer positional passing ne... 1 0 0 1 0 0
13290 Fast-slow asymptotic for semi-analytical ignit... study problem initiation excitation waves fitz... 0 1 0 0 0 0
13291 What drives galactic magnetism? aim use statistical analysis large number vari... 0 1 0 0 0 0
13292 Regular Separability of One Counter Automata regular separability problem asks two given la... 1 0 0 0 0 0
13293 Fast Incremental SVDD Learning Algorithm with ... support vector data description svdd machine l... 0 0 0 1 0 0
13294 Comparing distributions by multiple testing ac... comparing two distributions often helpful lear... 0 0 1 1 0 0
13295 Magnetic droplet nucleation with homochiral Ne... investigate effect dzyaloshinskii moriya inter... 0 1 0 0 0 0
13296 Cost-complexity pruning of random forests random forests perform bootstrapaggregation sa... 1 0 0 1 0 0
13297 Chemical abundances of fast-rotating massive s... aims recent observations challenged understand... 0 1 0 0 0 0
13298 Morphology and Motility of Cells on Soft Subst... recent experiments suggest interplay cells mec... 0 0 0 0 1 0
13299 A domain-specific language and matrix-free ste... introduce pvscdtm parallel vectorized stencil ... 1 1 0 0 0 0
13300 A cross-correlation-based estimate of the gala... extend existing methods using crosscorrelation... 0 1 0 0 0 0
13301 A Novel Partitioning Method for Accelerating t... propose novel blockrow partitioning method ord... 1 0 0 0 0 0
13302 Visualized Insights into the Optimization Land... many image processing tasks involve imagetoima... 1 0 0 1 0 0
13303 Exact upper and lower bounds on the misclassif... exact lower upper bounds best possible misclas... 1 0 1 1 0 0
13304 BB-Graph: A Subgraph Isomorphism Algorithm for... big graph database model provides strong model... 1 0 0 0 0 0
13305 Analytic solutions of the Madelung equation present analytic selfsimilar solutions one two... 0 0 1 0 0 0
13306 Unsupervised learning of phase transitions: fr... employ unsupervised machine learning technique... 1 0 0 1 0 0
13307 A novel online scheduling protocol for energy-... design energyefficient access networks emerged... 1 0 0 0 0 0
13308 Machines and Algorithms discuss evolution computer architectures focus... 1 1 0 0 0 0
13309 Large Margin Learning in Set to Set Similarity... person reidentification reid aims matching ima... 1 0 0 1 0 0
13310 Scheduling Constraint Based Abstraction Refine... bounded model checking among efficient techniq... 1 0 0 0 0 0
13311 The braid group for a quiver with superpotential survey compare various generalizations braid g... 0 0 1 0 0 0
13312 The infinitesimal characters of discrete serie... let zgh homogeneous space real reductive group... 0 0 1 0 0 0
13313 Coincidence point results involving a generali... purpose work introduce general class cgsimulat... 0 0 1 0 0 0
13314 A Simulated Cyberattack on Twitter: Assessing ... statesponsored bad actors increasingly weaponi... 1 0 0 0 0 0
13315 Asteroid mass estimation using Markov-chain Mo... estimates asteroid masses based gravitational ... 0 1 0 0 0 0
13316 Asymptotic Properties of the Maximum Likelihoo... markov regime switching models widely used num... 0 0 1 1 0 0
13317 Fleet management for autonomous vehicles: Onli... vipafleet project consists developing models a... 1 0 0 0 0 0
13318 Bayesian Model Selection for Misspecified Mode... bayesian information criterion bic akaike info... 0 0 0 1 0 0
13319 Near-optimal sample complexity for convex tens... analyze low rank tensor completion tc using no... 1 0 0 1 0 0
13320 Conditional Lower Bounds for Space/Time Tradeoffs recent years much effort concentrated towards ... 1 0 0 0 0 0
13321 Full Quantification of Left Ventricle via Deep... cardiac left ventricle lv quantification among... 1 0 0 0 0 0
13322 On sparsity and power-law properties of graphs... paper investigates properties class graphs bas... 0 0 1 1 0 0
13323 Information transmission on hybrid networks many realworld communication networks often hy... 1 1 0 0 0 0
13324 Generative Adversarial Trainer: Defense to Adv... propose novel technique make neural network ro... 1 0 0 1 0 0
13325 Bad Primes in Computational Algebraic Geometry computations rational numbers often suffer int... 1 0 1 0 0 0
13326 Multi-Task Feature Learning for Knowledge Grap... collaborative filtering often suffers sparsity... 1 0 0 1 0 0
13327 On Consistency of Graph-based Semi-supervised ... graphbased semisupervised learning one popular... 0 0 0 1 0 0
13328 Modeling Label Ambiguity for Neural List-Wise ... listwise learning rank methods considered stat... 1 0 0 1 0 0
13329 Whitehead torsion of inertial h-cobordisms study whitehead torsions inertial hcobordisms ... 0 0 1 0 0 0
13330 Propagation from Deceptive News Sources: Who S... people rely social media primary sources news ... 1 0 0 0 0 0
13331 Self-protected nanoscale thermometry based on ... quantum sensors solid state electron spins att... 0 1 0 0 0 0
13332 Robot Composite Learning and the Nunchaku Flip... advanced motor skills essential robots physica... 1 0 0 0 0 0
13333 Querying Best Paths in Graph Databases querying graph databases recently received muc... 1 0 0 0 0 0
13334 Communication Complexity of Correlated Equilib... show communication complexity lower bound find... 1 0 0 0 0 0
13335 On the computability of graph Turing machines consider graph turing machines model parallel ... 1 0 1 0 0 0
13336 SCRank: Spammer and Celebrity Ranking in Direc... many online social networks allow directed edg... 1 0 0 0 0 0
13337 Taylor series and twisting-index invariants of... six years ago semitoric systems dimensional ma... 0 0 1 0 0 0
13338 Optimal DoF region of the K-User MISO BC with ... consider kuser multipleinputsingleoutput miso ... 1 0 0 0 0 0
13339 Active learning of constitutive relation from ... simulate complex fluids means onthefly couplin... 0 1 0 0 0 0
13340 Collective search with finite perception: tran... motile organisms often use finite spatial perc... 0 0 0 0 1 0
13341 The first moment of cusp form L-functions in w... study asymptotic behaviour twisted first momen... 0 0 1 0 0 0
13342 Analyzing Boltzmann Samplers for Bose-Einstein... boltzmann sampling commonly used uniformly sam... 1 0 0 0 0 0
13343 On Invariant Random Subgroups of Block-Diagona... classify ergodic invariant random subgroups bl... 0 0 1 0 0 0
13344 Theoretical Analysis of Sparse Subspace Cluste... sparse subspace clustering ssc popular unsuper... 0 0 0 1 0 0
13345 On certain geometric properties in Banach spac... consider certain type geometric properties ban... 0 0 1 0 0 0
13346 Social Media Analysis based on Semanticity of ... languages shared people differ different regio... 1 0 0 0 0 0
13347 Chiral Topological Superconductors Enhanced by... study phase diagram edge states twodimensional... 0 1 0 0 0 0
13348 An Algebraic Glimpse at Bunched Implications a... overview logic bunched implications bi separat... 1 0 0 0 0 0
13349 The adapted hyper-Kähler structure on the crow... let xi crown domain associated noncompact irre... 0 0 1 0 0 0
13350 Exact traveling wave solutions of 1D model of ... paper consider continuous mathematical model t... 0 0 0 0 1 0
13351 On purity theorem of Lusztig's perverse sheaves let q finite quiver without loops mathcalqalph... 0 0 1 0 0 0
13352 Abstract Interpretation using a Language of Sy... traditional abstract domain framework imperati... 1 0 0 0 0 0
13353 The Integral Transform of N.I.Akhiezer study integral transform appeared different fo... 0 0 1 0 0 0
13354 Quantitative CBA: Small and Comprehensible Ass... quantitative cba postprocessing algorithm asso... 1 0 0 1 0 0
13355 Quermassintegral preserving curvature flow in ... consider quermassintegral preserving flow clos... 0 0 1 0 0 0
13356 Cloaking for a quasi-linear elliptic partial d... article consider cloaking quasilinear elliptic... 0 0 1 0 0 0
13357 Good Arm Identification via Bandit Feedback consider novel stochastic multiarmed bandit pr... 0 0 0 1 0 0
13358 Learning compressed representations of blood s... clinical measurements collected time naturally... 1 0 0 1 0 0
13359 Fuzzy Galois connections on fuzzy sets fairly elementary terms paper presents theory ... 1 0 0 0 0 0
13360 QWIRE Practice: Formal Verification of Quantum... describe embedding qwire quantum circuit langu... 1 0 0 0 0 0
13361 The cost of fairness in classification study problem learning classifiers fairness co... 1 0 0 0 0 0
13362 The algebraic structure of cut Feynman integra... study algebraic analytic structure feynman int... 0 0 1 0 0 0
13363 Implementing universal nonadiabatic holonomic ... geometric phases well known noiseresilient qua... 0 1 0 0 0 0
13364 Fine cophasing of segmented aperture telescope... segmented aperture telescopes require alignmen... 0 1 0 0 0 0
13365 Why Pay More When You Can Pay Less: A Joint Le... consider problem active feature acquisition se... 1 0 0 1 0 0
13366 The Hasse Norm Principle For Biquadratic Exten... give asymptotic formula number biquadratic ext... 0 0 1 0 0 0
13367 Static vs Adaptive Strategies for Optimal Exec... consider optimal execution problem trader look... 0 0 0 0 0 1
13368 New descriptions of the weighted Reed-Muller c... give description weighted reedmuller codes pri... 1 0 1 0 0 0
13369 Criteria for the Absence and Existence of Boun... junction omega several semiinfinite cylindrica... 0 0 1 0 0 0
13370 Stochastic Feedback Control of Systems with Un... paper studies stochastic optimal control probl... 1 0 0 0 0 0
13371 Micrometer-Sized Water Ice Particles for Plane... models observations suggest iceparticle aggreg... 0 1 0 0 0 0
13372 The splashback radius of halos from particle d... splashback radius rrm sp apocentric radius par... 0 1 0 0 0 0
13373 Empirical Evaluation of Parallel Training Algo... deep learning models dlms stateoftheart techni... 1 0 0 0 0 0
13374 Distributed Impedance Control of Latency-Prone... robotic systems increasingly relying distribut... 1 0 0 0 0 0
13375 Simulation Methods for Stochastic Storage Prob... consider solution stochastic storage problems ... 0 0 0 0 0 1
13376 Flashes of Hidden Worlds at Colliders general physics level overview article hidden ... 0 1 0 0 0 0
13377 Espresso: Brewing Java For More Non-Volatility... fast byteaddressable nonvolatile memory nvm em... 1 0 0 0 0 0
13378 Multimodal Machine Learning: A Survey and Taxo... experience world multimodal see objects hear s... 1 0 0 0 0 0
13379 The Motivic Cofiber of $τ$ consider tate twist tau hs mod cohomology moti... 0 0 1 0 0 0
13380 EEG machine learning with Higuchi fractal dime... reliable diagnosis depressive disorder essenti... 0 0 0 1 1 0
13381 On Microtargeting Socially Divisive Ads: A Cas... targeted advertising meant improve efficiency ... 1 0 0 0 0 0
13382 On Helmholtz free energy for finite abstract s... prove gaussbonnet formula xg sumx kx kxdimx xs... 1 0 1 0 0 0
13383 Global Patterns of Synchronization in Human Co... social media transforming global communication... 1 1 0 0 0 0
13384 On the predictability of infectious disease ou... infectious disease outbreaks recapitulate biol... 0 1 0 0 0 0
13385 Multi-Player Bandits Revisited multiplayer multiarmed bandits mab extensively... 1 0 0 1 0 0
13386 Model Averaging for Generalized Linear Model w... paper consider estimation generalized linear m... 0 0 1 1 0 0
13387 Demonstration of the length stability requirem... lightshiningthroughawall experiments represent... 0 1 0 0 0 0
13388 Shrub-depth: Capturing Height of Dense Graphs recent increase interest graph invariant calle... 1 0 0 0 0 0
13389 Detecting Statistical Interactions from Neural... interpreting neural networks crucial challengi... 1 0 0 1 0 0
13390 Making intersections safer with I2V communication intersections hazardous places threats arise i... 1 0 0 0 0 0
13391 Convolutional Sparse Representations with Grad... convolutional sparse representations enjoy num... 1 0 0 0 0 0
13392 On the origin of the crescent-shaped distribut... mms observations recently confirmed crescentsh... 0 1 0 0 0 0
13393 Projected support points: a new method for hig... era big highdimensional data readily available... 0 0 0 1 0 0
13394 AutonoVi: Autonomous Vehicle Planning with Dyn... present autonovi novel algorithm autonomous ve... 1 0 0 0 0 0
13395 On SGD's Failure in Practice: Characterizing a... stochastic gradient descent sgd widely used ma... 0 0 1 1 0 0
13396 Composite Rational Functions and Arithmetic Pr... paper deal composite rational functions zeros ... 0 0 1 0 0 0
13397 The Geometry of Concurrent Interaction: Handli... introduce geometry interaction model mazzas mu... 1 0 0 0 0 0
13398 A High Space Density of Luminous Lyman Alpha E... present results systematic search lymanalpha e... 0 1 0 0 0 0
13399 SYZ transforms for immersed Lagrangian multi-s... paper study geometry syz transform semiflat la... 0 0 1 0 0 0
13400 Topological Representation of the Transit Sets... kpoint crossover operators recombination sets ... 1 0 1 0 0 0
13401 Human-Robot Collaboration: From Psychology to ... advances robotic technology research humanrobo... 1 0 0 0 0 0
13402 Enhancing TCP End-to-End Performance in Millim... recently millimeterwave mmwave communications ... 1 0 0 0 0 0
13403 Adaptive recurrence quantum entanglement disti... quantum entanglement serves valuable resource ... 0 0 1 0 0 0
13404 Optimised surface-electrode ion-trap junctions... discuss design optimisation two types junction... 0 1 0 0 0 0
13405 A simple anisotropic three-dimensional quantum... present threedimensional cubic lattice spin mo... 0 1 0 0 0 0
13406 Onsets and Frames: Dual-Objective Piano Transc... advance state art polyphonic piano music trans... 1 0 0 1 0 0
13407 Modified mean curvature flow of entire locally... previous joint work xiao second author modifie... 0 0 1 0 0 0
13408 Calibration of atomic trajectories in a large-... propose demonstrate method calibrating atomic ... 0 1 0 0 0 0
13409 Self-adjoint and skew-symmetric extensions of ... study laplacian smooth bounded domain varying ... 0 0 1 0 0 0
13410 Experimental observation of fractional topolog... geometrical topological phases play fundamenta... 0 1 0 0 0 0
13411 Homotopy groups of generic leaves of logarithm... study homotopy groups generic leaves logarithm... 0 0 1 0 0 0
13412 On van Kampen-Flores, Conway-Gordon-Sachs and ... exhibit relations van kampenflores conwaygordo... 1 0 1 0 0 0
13413 Superzeta functions, regularized products, and... let lambda lambdak denote sequence complex num... 0 0 1 0 0 0
13414 Fine Selmer Groups and Isogeny Invariance investigate fine selmer groups elliptic curves... 0 0 1 0 0 0
13415 Persistence paths and signature features in to... introduce new feature map barcodes arise persi... 0 0 0 1 0 0
13416 New Integral representations for the Fox-Wrigh... aim paper derive several new integral represen... 0 0 1 0 0 0
13417 Ultra-Fast Reactive Transport Simulations When... reactive transport modeling computational cost... 0 1 0 1 0 0
13418 Pseudo-edge unfoldings of convex polyhedra pseudoedge graph convex polyhedron k connected... 0 0 1 0 0 0
13419 Learning Structured Text Representations paper focus learning structureaware document r... 1 0 0 0 0 0
13420 Semi-Parametric Empirical Best Prediction for ... italian national institute statistics regularl... 0 0 0 1 0 0
13421 The asymptotic coarse-graining formulation of ... inertialess fluidstructure interactions active... 0 1 0 0 0 0
13422 Performance of two-dimensional tidal turbine a... encouraged recent studies performance tidal tu... 0 1 0 0 0 0
13423 Elicitability and its Application in Risk Mana... elicitability property mathbbrkvalued function... 0 0 1 1 0 0
13424 Diffusion of particles with short-range intera... system interacting brownian particles subject ... 0 1 0 0 0 0
13425 Birman-Murakami-Wenzl type algebras for arbitr... paper first present birmanmurakamiwenzl type a... 0 0 1 0 0 0
13426 Protein Classification using Machine Learning ... recent era prediction enzyme class unknown pro... 0 0 0 0 1 0
13427 The Emergence of Consensus: A Primer origin populationscale coordination puzzled ph... 1 1 0 0 0 0
13428 ProSLAM: Graph SLAM from a Programmer's Perspe... paper present proslam lightweight stereo visua... 1 0 0 0 0 0
13429 Right Amenability And Growth Of Finitely Right... introduce right generating sets cayley graphs ... 0 0 1 0 0 0
13430 Convex Hull of the Quadratic Branch AC Power F... branch flow model bfm used formulate ac power ... 0 0 1 0 0 0
13431 Multi-Relevance Transfer Learning transfer learning aims faciliate learning task... 1 0 0 1 0 0
13432 When confidence and competence collide: Effect... group discussions way individuals exchange ide... 1 1 0 0 0 0
13433 NIP formulas and Baire 1 definability short note using results bourgain fremlin tala... 0 0 1 0 0 0
13434 Lee-Carter method for forecasting mortality fo... article modeled mortality rates peruvian femal... 0 0 0 0 0 1
13435 Kernel Recursive ABC: Point Estimation with In... propose novel approach parameter estimation si... 0 0 0 1 0 0
13436 More declarative tabling in Prolog using multi... several prolog implementations include facilit... 1 0 0 0 0 0
13437 Emergent topology and dynamical quantum phase ... introduce notion dynamical topological order p... 0 1 0 0 0 0
13438 A pictorial introduction to differential geome... article present pictorially foundation differe... 0 1 1 0 0 0
13439 Regularization by noise in (2x 2) hyperbolic s... paper study non strictly systems conservation ... 0 0 1 0 0 0
13440 Large deviations of a tracer in the symmetric ... onedimensional symmetric exclusion process sim... 0 1 0 0 0 0
13441 Unitary Representations with non-zero Dirac co... paper classifies equivalence classes irreducib... 0 0 1 0 0 0
13442 Revisiting Lie integrability by quadratures fr... short review classical lie theorem finite dime... 0 1 1 0 0 0
13443 Intersubband polarons in oxides intersubband isb polarons result interaction i... 0 1 0 0 0 0
13444 Control Variates for Stochastic Gradient MCMC well known markov chain monte carlo mcmc metho... 1 0 0 1 0 0
13445 Augmented Reality for Depth Cues in Monocular ... one major challenges minimally invasive surger... 1 0 0 0 0 0
13446 General-purpose Tagging of Freesound Audio wit... paper describes task dcase challenge titled ge... 1 0 0 1 0 0
13447 Semantical Equivalence of the Control Flow Gra... program dependence graph pdg represents data c... 1 0 0 0 0 0
13448 On the smallest non-trivial quotients of mappi... prove smallest nontrivial quotient mapping cla... 0 0 1 0 0 0
13449 A Gronwall inequality for a general Caputo fra... paper present new type fractional operator gen... 0 0 1 0 0 0
13450 First-principles insights into ultrashort lase... research employ accurate timedependent density... 0 1 0 0 0 0
13451 Borel class and Cartan involution note prove borel class representations manifol... 0 0 1 0 0 0
13452 Network Dimensions in the Getty Provenance Index article make case systematic application compl... 0 1 0 0 0 0
13453 Maximum-order Complexity and Correlation Measures estimate maximumorder complexity binary sequen... 0 0 1 0 0 0
13454 On Sampling Strategies for Neural Network-base... recent advances neural networks inspired peopl... 1 0 0 1 0 0
13455 Non-integrable dynamics of matter-wave soliton... study interactions bright matterwave solitons ... 0 1 0 0 0 0
13456 Geometric theories of patch and Lawson topologies give geometric characterisations patch lawson ... 1 0 1 0 0 0
13457 Active galactic nuclei in the era of the Imagi... four years national aeronautics space administ... 0 1 0 0 0 0
13458 Exact completion and constructive theories of ... present paper use theory exact completions stu... 0 0 1 0 0 0
13459 Proceedings 5th Workshop on Horn Clauses for V... many program verification synthesis problems i... 1 0 0 0 0 0
13460 Conditional Neural Processes deep neural networks excel function approximat... 0 0 0 1 0 0
13461 ORBIT: Ordering Based Information Transfer Acr... many earth science applications require data h... 1 0 0 0 0 0
13462 The Importance of Constraint Smoothness for Pa... psychiatric neuroscience increasingly aware ne... 0 0 0 1 1 0
13463 Kinetic Effects in Dynamic Wetting maximum speed liquid wet solid limited need di... 0 1 0 0 0 0
13464 The spread of low-credibility content by socia... massive spread digital misinformation identifi... 1 0 0 0 0 0
13465 Beltrami vector fields with an icosahedral sym... vector field called beltrami vector field btim... 0 0 1 0 0 0
13466 A model for Faraday pilot waves over variable ... couder fort discovered droplets walking vibrat... 0 1 0 0 0 0
13467 Regular Separability of Well Structured Transi... investigate languages recognized wellstructure... 1 0 0 0 0 0
13468 Dynamical Stochastic Higher Spin Vertex Models introduce new family integrable stochastic pro... 0 1 1 0 0 0
13469 Risk-Averse Matchings over Uncertain Graph Dat... large number applications querying sensor netw... 1 0 0 0 0 0
13470 Higher Order Context Transformations context transformation generalized context tra... 1 0 1 0 0 0
13471 DeepAPT: Nation-State APT Attribution Using En... recent years numerous advanced malware aka adv... 1 0 0 1 0 0
13472 Cathode signal in a TPC directional detector: ... lowpressure gaseous tpcs well suited detectors... 0 1 0 0 0 0
13473 Fast Reconstruction of High-qubit Quantum Stat... due exponential complexity resources required ... 1 0 1 0 0 0
13474 Inferring network connectivity from event timi... reconstructing network connectivity collective... 0 0 0 1 1 0
13475 FADE: Fast and Asymptotically efficient Distri... consider set agents wish estimate vector param... 1 0 0 0 0 0
13476 TextRank Based Search Term Identification for ... maintenance software developers deal number so... 1 0 0 0 0 0
13477 Natural Time Analysis of Seismicity in Califor... upon employing analysis new time domain termed... 0 1 0 0 0 0
13478 Atomistic study of hardening mechanism in Al-C... nanostructures immense potential supplant trad... 0 1 0 0 0 0
13479 Maximum redshift of gravitational wave merger ... future generation gravitational wave detectors... 0 1 0 0 0 0
13480 The altmetric performance of publications auth... present work seeks analyse altmetric performan... 1 0 0 0 0 0
13481 The Impact of Information Dissemination on Vac... impact information dissemination epidemic cont... 0 0 0 0 1 0
13482 Why Interpretability in Machine Learning? An A... artificial intelligence increasingly affecting... 0 0 0 1 0 0
13483 Online Estimation and Adaptive Control for a C... paper presents sufficient conditions convergen... 0 0 1 0 0 0
13484 The Kinematics of the Permitted C II $λ$ 6578 ... present spectroscopic observations c ii lambda... 0 1 0 0 0 0
13485 From parabolic-trough to metasurface-concentrator metasurfaces promising tools towards novel des... 0 1 0 0 0 0
13486 Correspondence Theorem between Holomorphic Dis... prove open gromovwitten invariants k surfaces ... 0 0 1 0 0 0
13487 A review and comparative study on functional t... paper reviews main estimation prediction resul... 0 0 1 1 0 0
13488 Surface depression with double-angle geometry ... rough grains standard packing conditions disch... 0 1 0 0 0 0
13489 Answer Set Programming for Non-Stationary Mark... nonstationary domains unforeseen changes happe... 1 0 0 0 0 0
13490 Space-Bounded OTMs and REG$^{\infty}$ important theorem classical complexity theory ... 0 0 1 0 0 0
13491 Linear-time approximation schemes for planar m... present first polynomialtime approximation sch... 1 0 0 0 0 0
13492 Towards Wi-Fi AP-Assisted Content Prefetching ... emergence smart wifi aps access point equipped... 1 0 0 0 0 0
13493 Schematic Polymorphism in the Abella Proof Ass... abella interactive theorem prover proven effec... 1 0 0 0 0 0
13494 Representations of weakly multiplicative arith... arithmetic matroid weakly multiplicative multi... 0 0 1 0 0 0
13495 Memory Efficient Max Flow for Multi-label Subm... multilabel submodular markov random fields mrf... 1 0 0 0 0 0
13496 Double Covers of Cartan Modular Curves present strategy obtain explicit equations mod... 0 0 1 0 0 0
13497 A Simple Analysis for Exp-concave Empirical Mi... paper present simple analysis bf fast rates hi... 0 0 0 1 0 0
13498 Generation of surface plasmon-polaritons by ed... using numerical analytical methods describe ge... 0 1 1 0 0 0
13499 PowerAI DDL deep neural networks become complex input data... 1 0 0 0 0 0
13500 A truncated $\mathcal{V}$-fractional derivativ... using six parameters truncated mittagleffler f... 0 0 1 0 0 0
13501 Statistical Analysis on Bangla Newspaper Data ... trending topic newspapers indicator understand... 1 0 0 0 0 0
13502 Effects of global gas flows on type I migration magneticallydriven disk winds would alter surf... 0 1 0 0 0 0
13503 Warp: a method for neural network interpretabi... show proof principle warping method interpret ... 1 0 0 0 0 0
13504 Tilings of convex sets by mutually incongruent... show every tiling convex set euclidean plane m... 0 0 1 0 0 0
13505 The decomposition of 0-Hecke modules associate... recently tewari van willigenburg constructed m... 0 0 1 0 0 0
13506 Bayesian Uncertainty Quantification and Inform... calculation phase diagrams one fundamental too... 0 0 0 1 0 0
13507 Modern Data Formats for Big Bioinformatics Dat... next generation sequencing ngs technology resu... 1 0 0 0 0 0
13508 Nearest-Neighbor Based Non-Parametric Probabil... present contribution offers simple methodology... 1 0 0 0 0 0
13509 A thermodynamic parallel of the Braess road-ne... provide thermodynamic analog braess roadnetwor... 0 1 0 0 0 0
13510 Weighted gevrey class regularity of euler equa... paper study weighted gevrey class regularity e... 0 0 1 0 0 0
13511 Temporal connectivity in finite networks with ... soft random geometric graphs srggs widely appl... 1 0 0 0 0 0
13512 Matching Media Contents with User Profiles by ... media industry increasingly personalizing offe... 1 0 0 0 0 0
13513 Separability by Piecewise Testable Languages i... piecewise testable languages form first level ... 1 0 0 0 0 0
13514 Past, Present, Future: A Computational Investi... present superpivot analysis method lowresource... 1 0 0 0 0 0
13515 A Stochastic Control Approach to Managed Futur... study stochastic control approach managed futu... 0 0 0 0 0 1
13516 Attention-Set based Metric Learning for Video ... face recognition made great progress developme... 1 0 0 0 0 0
13517 Variable Annealing Length and Parallelism in S... paper propose restart schedule adaptive simula... 1 0 0 0 0 0
13518 Low-Shapiro hydrostatic reconstruction techniq... purpose work construct simple efficient accura... 0 1 1 0 0 0
13519 Anisotropic two-gap superconductivity and the ... ambientpressuregrown laofbis superconducting t... 0 1 0 0 0 0
13520 Discrete Invariants of Generically Inconsisten... let mathcala ldots mathcalak finite sets mathb... 0 0 1 0 0 0
13521 Enabling near real-time remote search for fast... present systematic evaluation jpeg isoiec tran... 0 1 0 0 0 0
13522 Learning with Training Wheels: Speeding up Tra... deep reinforcement learning drl applied succes... 1 0 0 0 0 0
13523 The Partition Rank of a Tensor and $k$-Right C... following breakthrough croot lev pach tao intr... 0 0 1 0 0 0
13524 Tunable Optoelectronic Properties of Triply-Bo... paper present detailed computational study ele... 0 1 0 0 0 0
13525 Higher zigzag algebras given koszul algebra finite global dimension o... 0 0 1 0 0 0
13526 Motivic modular forms from equivariant stable ... paper produce cellular motivic spectrum motivi... 0 0 1 0 0 0
13527 Topology and experimental distinguishability work introduce idea primary application topolo... 0 0 1 0 0 0
13528 Edge fracture in complex fluids study theoretically edge fracture instability ... 0 1 0 0 0 0
13529 Testing statistical Isotropy in Cosmic Microwa... apply symmetry based power tensor technique te... 0 1 0 0 0 0
13530 Generalised Lyapunov Functions and Functionall... paper investigates dependence functional portf... 0 0 0 0 0 1
13531 Local optima of the Sherrington-Kirkpatrick Ha... study local optima hamiltonian sherringtonkirk... 1 0 0 0 0 0
13532 Joining Extractions of Regular Expressions regular expressions capture variables also kno... 1 0 0 0 0 0
13533 Learning Generalized Reactive Policies using D... present new approach learning planning knowled... 1 0 0 0 0 0
13534 Symplectic Coarse-Grained Dynamics: Chalkboard... usual approaches mechanics classical quantum p... 0 0 1 0 0 0
13535 Characteristic functions as bounded multiplier... show characteristic functions domains boundari... 0 1 0 0 0 0
13536 Pathwise Least Angle Regression and a Signific... least angle regression lars efron et al novel ... 0 0 1 1 0 0
13537 2MTF VI. Measuring the velocity power spectrum present measurements velocity power spectrum c... 0 1 0 0 0 0
13538 Gradient weighted norm inequalities for very w... paper prove lorentz space lqpestimates gradien... 0 0 1 0 0 0
13539 Local incompressibility estimates for the Laug... prove sharp density upper bounds optimal lengt... 0 1 1 0 0 0
13540 Learning Non-local Image Diffusion for Image D... image diffusion plays fundamental role task im... 1 0 0 0 0 0
13541 Deep vs. Diverse Architectures for Classificat... study compares various superlearner deep learn... 1 0 0 1 0 0
13542 Means Moments and Newton's Inequalities shown newtons inequalities related maclaurins ... 0 0 1 1 0 0
13543 Automatic Exploration of Machine Learning Expe... understanding influence hyperparameters perfor... 0 0 0 1 0 0
13544 Generalized Expectation Consistent Signal Reco... paper propose generalized expectation consiste... 1 0 1 0 0 0
13545 Proactive Eavesdropping in Relaying Systems paper investigates performance legitimate surv... 1 0 0 0 0 0
13546 Efficient Principal Subspace Projection of Str... big data problems frequently require processin... 0 0 0 1 0 0
13547 Resolving API Mentions in Informal Documents developer forums contain opinions information ... 1 0 0 0 0 0
13548 Quantifying tidal stream disruption in a simul... simulations tidal streams show close encounter... 0 1 0 0 0 0
13549 The dehydration of water worlds via atmospheri... present threespecies multifluid mhd model h ho... 0 1 0 0 0 0
13550 Replicability Analysis for Natural Language Pr... evergrowing amounts textual data large variety... 1 0 0 0 0 0
13551 Reflections on Cyberethics Education for Mille... software key component solutions st century pr... 1 0 0 0 0 0
13552 The effect of an offset polar cap dipolar magn... performed geometric pulsar light curve modelin... 0 1 0 0 0 0
13553 Survey on Models and Techniques for Root-Cause... automation computer intelligence support compl... 1 0 0 0 0 0
13554 Test Prioritization in Continuous Integration ... two heuristics namely diversitybased dbtp hist... 1 0 0 0 0 0
13555 Weighted integral Hankel operators with contin... using katorosenblum theorem describe absolutel... 0 0 1 0 0 0
13556 Local properties of Riesz minimal energy confi... investigate separation properties npoint confi... 0 0 1 0 0 0
13557 Cascaded Segmentation-Detection Networks for W... introduce algorithm wordlevel text spotting ab... 1 0 0 0 0 0
13558 Hilbert $C^*$-modules over $Σ^*$-algebras II: ... previous work defined studied sigmamodules cla... 0 0 1 0 0 0
13559 Topological degeneracy and pairing in a one-di... revisit low energy physics one dimensional spi... 0 1 0 0 0 0
13560 Rejecting inadmissible rules in reduced normal... several methods checking admissibility rules m... 1 0 1 0 0 0
13561 An Executable Sequential Specification for Spa... spark new promising platform scalable datapara... 1 0 0 0 0 0
13562 Obstructions to a small hyperbolicity in Helly... known every graph g exists smallest helly grap... 1 0 0 0 0 0
13563 Calculation of time resolution of the J-PET to... paper estimate time resolution jpet scanner bu... 0 1 0 0 0 0
13564 Writer Independent Offline Signature Recogniti... area handwritten signature verification broadl... 1 0 0 1 0 0
13565 Automated Directed Fairness Testing fairness critical trait decision making machin... 1 0 0 1 0 0
13566 Intel MPX Explained: An Empirical Study of Int... memorysafety violations prevalent cause reliab... 1 0 0 0 0 0
13567 Generating Long-term Trajectories Using Deep H... study problem modeling spatiotemporal trajecto... 1 0 0 0 0 0
13568 The usefulness of Poynting's theorem in magnet... rewrite poyntings theorem already used previou... 0 1 0 0 0 0
13569 The {\it victory} project v1.0: an efficient p... victory ie underlinevienna underlinecomputatio... 0 1 0 0 0 0
13570 An In Vitro Vascularized Tumor Platform for Mo... tumor stromal interactions shown driving force... 0 0 0 0 1 0
13571 Testing for Principal Component Directions und... consider problem testing basis pvariate gaussi... 0 0 1 1 0 0
13572 Locally-adaptive Bayesian nonparametric infere... phylodynamics area population genetics uses ge... 0 0 0 0 1 0
13573 Out of sight out of mind: Perceived physical d... social affective relations may shape empathy o... 0 0 0 0 1 0
13574 Dynamic Difficulty Adjustment on MOBA Games paper addresses dynamic difficulty adjustment ... 1 0 0 0 0 0
13575 On iteration of Cox rings characterize varieties torus action complexity... 0 0 1 0 0 0
13576 Stability Conditions and Lagrangian Cobordisms paper study interplay lagrangian cobordisms st... 0 0 1 0 0 0
13577 Sentiment Analysis of Citations Using Word2vec citation sentiment analysis important task sci... 1 0 0 0 0 0
13578 Hybrid Clustering based on Content and Connect... present hybrid method latent information disco... 1 0 0 1 0 0
13579 Embedding dimension and codimension of tensor ... let k field paper investigates embedding dimen... 0 0 1 0 0 0
13580 The Cosmic Axion Spin Precession Experiment (C... cosmic axion spin precession experiment casper... 0 1 0 0 0 0
13581 On eccentricity version of Laplacian energy of... energy graph g equal sum absolute values eigen... 1 0 1 0 0 0
13582 LARNN: Linear Attention Recurrent Neural Network linear attention recurrent neural network larn... 0 0 0 1 0 0
13583 Improved nonparametric estimation of the drift... paper consider robust adaptive non parametric ... 0 0 1 1 0 0
13584 Energy-efficient Hybrid CMOS-NEMS LIF Neuron C... designing analog subthreshold neuromorphic cir... 1 0 0 0 0 0
13585 Quasar Rain: the Broad Emission Line Region as... origin broad emission line region belr quasars... 0 1 0 0 0 0
13586 Consistent polynomial-time unseeded graph matc... propose consistent polynomialtime method unsee... 0 0 0 1 0 0
13587 Photoinduced filling of near nodal gap in Bi$_... report time angle resolved spectroscopic measu... 0 1 0 0 0 0
13588 Globally convergent Jacobi-type algorithms for... paper consider family jacobitype algorithms si... 1 0 1 0 0 0
13589 Representing the Deligne-Hinich-Getzler $\inft... goal present paper introduce smaller equivalen... 0 0 1 0 0 0
13590 Sentence-level quality estimation by predictin... submission investigates alternative machine le... 1 0 0 0 0 0
13591 Machine Assisted Analysis of Vowel Length Cont... growing digital archives improving algorithms ... 1 0 0 0 0 0
13592 Precision of Evaluation Methods in White Light... paper promote method evaluation surface topogr... 0 1 0 0 0 0
13593 Non-wetting drops at liquid interfaces: From l... consider flotation deformable nonwetting drops... 0 1 0 0 0 0
13594 Kinetics of the Crystalline Nuclei Growth in G... work study crystalline nuclei growth glassy sy... 0 1 0 0 0 0
13595 Electron Cloud Trapping In Recycler Combined F... electron cloud lead fast instability intense p... 0 1 0 0 0 0
13596 Causal Inference Under Network Interference: A... man island individuals interact influence one ... 0 0 1 1 0 0
13597 Polynomial configurations in sets of positive ... let fxfx dots fmx f dots fm linearly independe... 0 0 1 0 0 0
13598 Deterministic Genericity for Polynomial Ideals consider several notions genericity appearing ... 1 0 1 0 0 0
13599 Precise Pointing of Cubesat Telescopes: Compar... cubesats emerging lowcost tools perform astron... 0 1 0 0 0 0
13600 Cyclicity in weighted $\ell^p$ spaces study cyclicity weighted ellpmathbbz spaces p ... 0 0 1 0 0 0
13601 State-Space Identification of Unmanned Helicop... order achieve good level autonomy unmanned hel... 1 0 0 0 0 0
13602 Latent Molecular Optimization for Targeted The... devise approach targeted molecular design prob... 0 0 0 0 1 0
13603 SlimNets: An Exploration of Deep Model Compres... deep neural networks achieved increasingly acc... 0 0 0 1 0 0
13604 An alternative axiomization of $N$-pseudospaces give new axiomatization npseudospace studied t... 0 0 1 0 0 0
13605 Symmetry breaking in linear multipole traps radiofrequency multipole traps used decades co... 0 1 0 0 0 0
13606 Deep Spatio-temporal Manifold Network for Acti... visual data videos often sampled complex manif... 1 0 0 0 0 0
13607 Gas dynamics in strong centrifugal fields dynamics waves generated scopes gas centrifuge... 0 1 0 0 0 0
13608 Robust Stackelberg controllability for the Nav... paper deal robust stackelberg strategy naviers... 0 0 1 0 0 0
13609 Reduced-Order Modeling through Machine Learnin... paper five different approaches reducedorder m... 0 0 0 1 0 0
13610 A ferroelectric quantum phase transition insid... srtio quantum paraelectric becomes metal super... 0 1 0 0 0 0
13611 First Detection of Equatorial Dark Dust Lane i... earliest socalled class phase sunlike lowmass ... 0 1 0 0 0 0
13612 General dynamical properties of cosmological m... consider cosmological dynamics theory gravity ... 0 1 0 0 0 0
13613 Extensions of interpolation between the arithm... paper present extensions interpolation arithme... 0 0 1 0 0 0
13614 Machine Translation in Indian Languages: Chall... english indian language machine translation po... 1 0 0 0 0 0
13615 Retrieving the quantitative chemical informati... quantitative composition metal alloy nanowires... 0 1 0 0 0 0
13616 Decomposition Strategies for Constructive Pref... tackle problem constructive preference elicita... 1 0 0 1 0 0
13617 Vibrational surface EELS probes confined Fuchs... recently two reports demonstrated amazing poss... 0 1 0 0 0 0
13618 The Dependence of the Mass-Metallicity Relatio... examine relation gasphase oxygen abundance ste... 0 1 0 0 0 0
13619 Proof of Riemann hypothesis, Generalized Riema... prove riemann hypothesis generalized riemann h... 0 0 1 0 0 0
13620 A second order primal-dual method for nonsmoot... develop second order primaldual method optimiz... 1 1 0 0 0 0
13621 PDD Graph: Bridging Electronic Medical Records... electronic medical records contain multiformat... 1 0 0 0 0 0
13622 A new algorithm for fast generalized DFTs give new arithmetic algorithm compute generali... 1 0 1 0 0 0
13623 Critical magnetic fields in a superconductor c... study superconductor coupled superfluid via de... 0 1 0 0 0 0
13624 The bubble algebras at roots of unity introduce multicolour partition algebras pnmde... 0 0 1 0 0 0
13625 Self-Repairing Energy Materials: Sine Qua Non ... materials central way life future energy mater... 0 1 0 0 0 0
13626 Design and performance of dual-polarization lu... lumpedelement kinetic inductance detectors lek... 0 1 0 0 0 0
13627 An overview of knot Floer homology knot floer homology invariant knots discovered... 0 0 1 0 0 0
13628 Mathematical model of immune response to hepat... new detailed mathematical model dynamics immun... 0 0 0 0 1 0
13629 Controlling Stray Electric Fields on an Atom C... experiments handling rydberg atoms near surfac... 0 1 0 0 0 0
13630 Unseen Progenitors of Luminous High-z Quasars ... quasars high redshift provide direct informati... 0 1 0 0 0 0
13631 Decoding the spectroscopic features and timesc... acid solutions exhibit variety complex structu... 0 1 0 0 0 0
13632 MuseGAN: Multi-track Sequential Generative Adv... generating music notable differences generatin... 1 0 0 0 0 0
13633 Geometric Analysis of Synchronization in Neuro... study synaptically coupled neuronal networks i... 0 1 0 0 0 0
13634 Model predictive trajectory optimization and t... motion planning autonomous vehicles requires s... 1 0 0 0 0 0
13635 A Toolbox For Property Checking From Simulatio... present tool primarily supports ability check ... 1 0 0 0 0 0
13636 Machine Learning of Linear Differential Equati... work leverages recent advances probabilistic m... 1 0 1 1 0 0
13637 YouTube-8M Video Understanding Challenge Appro... paper introduces youtubem video understanding ... 0 0 0 1 0 0
13638 Temporal Pattern Discovery for Accurate Sepsis... sepsis condition caused bodys overwhelming lif... 1 0 0 1 0 0
13639 On the use of the energy probability distribut... contribution devoted cover technical aspects r... 0 1 0 0 0 0
13640 Visibility-based Power Spectrum Estimation for... present visibility based estimator namely tape... 0 1 0 0 0 0
13641 Archiving Software Surrogates on the Web for F... software long established essential aspect sci... 1 0 0 0 0 0
13642 Exact Formulas for the Generalized Sum-of-Divi... prove new exact formulas generalized sumofdivi... 0 0 1 0 0 0
13643 On addition theorems related to elliptic integ... paper provides explicit formulas related addit... 0 0 1 0 0 0
13644 Manuscripts in Time and Space: Experiments in ... witnesses medieval literary texts preserved ma... 0 0 0 1 0 0
13645 Vertical Bifacial Solar Farms: Physics, Design... sustained interest bifacial solar cell technol... 0 1 0 0 0 0
13646 Maximally Correlated Principal Component Analysis era big data reducing data dimensionality crit... 1 0 0 1 0 0
13647 $\mathcal{G}$-SGD: Optimizing ReLU Neural Netw... well known neural networks rectified linear un... 0 0 0 1 0 0
13648 Fantastic deductive systems in probability the... aim paper introduce notion fantastic deductive... 0 0 1 0 0 0
13649 Bayesian Learning of Consumer Preferences for ... coming years residential consumers face realti... 1 0 0 1 0 0
13650 Beyond the Hazard Rate: More Perturbation Algo... recent work follow perturbed leader ftpl algor... 1 0 0 1 0 0
13651 Calculation of the bulk modulus of mixed ionic... ammonium halides present interesting system st... 0 1 0 0 0 0
13652 Hyers-Ulam stability of elliptic Möbius differ... linear fractional map fz fracaz bcz riemann sp... 0 0 1 0 0 0
13653 Diffeological, Frölicher, and Differential Spaces differential calculus euclidean spaces many ge... 0 0 1 0 0 0
13654 Elementary abelian subgroups in some special p... let p finite pgroup p odd prime let mathcalapp... 0 0 1 0 0 0
13655 Learning Plannable Representations with Causal... recent years deep generative models shown imag... 1 0 0 1 0 0
13656 SGD Learns the Conjugate Kernel Class of the N... show standard stochastic gradient decent sgd a... 1 0 0 1 0 0
13657 Towards information optimal simulation of part... simulation schemes partial differential equati... 0 1 0 1 0 0
13658 Verifying Quantum Programs: From Quipper to QPMC paper present translation quantum programming ... 1 0 0 0 0 0
13659 Topological semimetal state and field-induced ... report experimental realization dirac semimeta... 0 1 0 0 0 0
13660 Joint Prediction of Depths, Normals and Surfac... understanding structure scene vital importance... 1 0 0 0 0 0
13661 Motif and Hypergraph Correlation Clustering motivated applications social biological netwo... 1 0 0 0 0 0
13662 Adversarial Imitation via Variational Inverse ... consider problem learning reward policy expert... 1 0 0 1 0 0
13663 Intrinsically motivated reinforcement learning... natural social humanrobot interaction essentia... 1 0 0 0 0 0
13664 Beyond Backprop: Online Alternating Minimizati... propose novel online alternating minimization ... 0 0 0 1 0 0
13665 Minimax Game-Theoretic Approach to Multiscale ... sensing complex systems requires largescale in... 1 0 0 0 0 0
13666 Topology of irrationally indifferent attractors study attractors class holomorphic systems irr... 0 0 1 0 0 0
13667 Crystalline Soda Can Metamaterial exhibiting G... graphene honeycomb lattice carbon atoms ruled ... 0 1 0 0 0 0
13668 Modeling Retinal Ganglion Cell Population Acti... retina complex nervous system encodes visual s... 1 0 0 0 0 0
13669 Stochastic partial differential fluid equation... emholm proc roy soc stochastic fluid equations... 0 1 1 0 0 0
13670 A general framework for solving convex optimiz... paper consider solving class convex optimizati... 0 0 1 0 0 0
13671 Testing isotropy in the Two Micron All-Sky red... use information entropy test isotropy nearby g... 0 1 0 0 0 0
13672 VEGAS: A VST Early-type GAlaxy Survey. II. Pho... observations diffuse starlight outskirts galax... 0 1 0 0 0 0
13673 Homological dimension formulas for trivial ext... let lambda oplus c trivial extension algebra a... 0 0 1 0 0 0
13674 Spread of entanglement in a Sachdev-Ye-Kitaev ... study spread rnyi entropy two halves sachdevye... 0 1 0 0 0 0
13675 The weak order on integer posets explore lattice structures integer binary rela... 0 0 1 0 0 0
13676 Most Ligand-Based Classification Benchmarks Re... undetected overfitting occur significant redun... 1 0 0 1 0 0
13677 Inverse dispersion method for calculation of c... suggest inverse dispersion method calculating ... 0 1 0 0 0 0
13678 MmWave vehicle-to-infrastructure communication... vehicletoinfrastructure vi communication may p... 1 0 0 0 0 0
13679 Resolvent estimates on asymptotically cylindri... manifolds infinite cylindrical ends continuous... 0 0 1 0 0 0
13680 On absolutely normal and continued fraction no... give construction real number normal integer b... 0 0 1 0 0 0
13681 Combinatorial properties of the G-degree strong interaction known exist edgecolored gra... 0 0 1 0 0 0
13682 Quasi-random Agents for Image Transition and A... quasirandom walks show similar features standa... 1 0 0 0 0 0
13683 Deep Speaker Verification: Do We Need End to End? endtoend learning treats entire system whole a... 1 0 0 0 0 0
13684 Neural Models for Documents with Metadata realworld document collections involve various... 1 0 0 1 0 0
13685 Single Image Super-resolution via a Lightweigh... recent years witnessed great success convoluti... 1 0 0 0 0 0
13686 Variations of BPS structure and a large rank l... study class flat bundles finite rank n arise n... 0 0 1 0 0 0
13687 Strong correlations between the exponent $α$ a... appealing gibbs formalism classical statistica... 0 1 0 0 0 0
13688 Smooth backfitting of proportional hazards -- ... smooth backfitting proven number theoretical p... 0 0 1 1 0 0
13689 Trajectory Tracking Using Motion Primitives fo... locomotion low reynolds numbers topic growing ... 1 0 0 0 0 0
13690 Data Analysis in Multimedia Quality Assessment... assessment multimedia quality relies heavily s... 1 0 0 1 0 0
13691 Removing Isolated Zeroes by Homotopy suppose inverse image zero vector continuous m... 0 0 1 0 0 0
13692 Continuous cocycle superrigidity for coinduced... prove certain coinduced actions inclusion fini... 0 0 1 0 0 0
13693 Brownian ratchets: How stronger thermal noise ... study diffusion properties inertial brownian m... 0 1 0 0 0 0
13694 Wadge Degrees of $ω$-Languages of Petri Nets prove omegalanguages nondeterministic petri ne... 1 0 1 0 0 0
13695 Is there agreement on the prestige of scholarl... despite important role supporting assessment p... 1 0 0 1 0 0
13696 Zero-Shot Recognition using Dual Visual-Semant... zeroshot recognition aims accurately recognize... 1 0 0 0 0 0
13697 Spoken Language Biomarkers for Detecting Cogni... study developed automated system evaluates spe... 1 0 0 0 0 0
13698 Performance Analysis of Low-Density Parity-Che... theoretical analysis detection decoding lowden... 1 0 1 0 0 0
13699 Novel market approach for locally balancing re... future electricity distribution grids host con... 1 0 0 0 0 0
13700 Atomic and electronic structures of stable lin... work report xray photoelectron xps valence ban... 0 1 0 0 0 0
13701 The unsaturated flow in porous media with dyna... paper consider degenerate pseudoparabolic equa... 0 0 1 0 0 0
13702 Dissociation of one-dimensional matter-wave br... use ab initio bethe ansatz dynamics predict di... 0 1 0 0 0 0
13703 Human Eye Visual Hyperacuity: A New Paradigm f... human eye appears using low number sensors ima... 1 0 0 0 0 0
13704 Structured Matrix Estimation and Completion study problem matrix estimation matrix complet... 0 0 1 1 0 0
13705 Performance evaluation of PSD for silicon ECAL developing position sensitive silicon detector... 0 1 0 0 0 0
13706 Online Improper Learning with an Approximation... revisit question reducing online learning appr... 0 0 0 1 0 0
13707 TC^0 circuits for algorithmic problems in nilp... recently macdonald et al showed many algorithm... 1 0 1 0 0 0
13708 Alperin-McKay natural correspondences in solva... let g finite solvable symmetric group let b bl... 0 0 1 0 0 0
13709 Reversible temperature exchange upon thermal c... according wellknown principle thermodynamics t... 0 1 0 0 0 0
13710 On consequences of measurements of turbulent L... almost parameterizations turbulence nwp models... 0 1 0 0 0 0
13711 Complex Networks Analysis for Software Archite... recent advancements complex network analysis e... 1 0 0 0 0 0
13712 The Impact of Local Geometry and Batch Size on... several experimental reports nonconvex optimiz... 0 0 0 1 0 0
13713 Cosmology and the Origin of the Universe: Hist... modern perspective cosmology historical scienc... 0 1 0 0 0 0
13714 Semisimple and separable algebras in multi-fus... give classification semisimple separable algeb... 0 0 1 0 0 0
13715 Ensemble dependence of fluctuations and the ca... study equivalence microcanonical canonical ens... 0 1 1 0 0 0
13716 Algorithms for Positive Semidefinite Factoriza... paper considers problem positive semidefinite ... 1 0 1 0 0 0
13717 Remarks about Synthetic Upper Ricci Bounds for... discuss various characterizations synthetic up... 0 0 1 0 0 0
13718 Structured Deep Hashing with Convolutional Neu... given pedestrian image query purpose person re... 1 0 0 0 0 0
13719 Stable and Controllable Neural Texture Synthes... recently methods proposed perform texture synt... 1 0 0 0 0 0
13720 Dynamical and Topological Aspects of Consensus... present work analyses particular scenario cons... 1 1 0 0 0 0
13721 Measurement of authorship by publications: a n... administrators academic organizations across w... 1 1 0 0 0 0
13722 Ordering Garside groups introduce condition garside groups call dehorn... 0 0 1 0 0 0
13723 Self-Taught Support Vector Machine paper new approach classification target task ... 1 0 0 1 0 0
13724 Continuum of classical-field ensembles from ca... canonical grandcanonical ensembles two usual m... 0 1 0 0 0 0
13725 Extending Partial Representations of Unit Circ... partial representation extension problem intro... 1 0 0 0 0 0
13726 Lipschitz continuity of quasiconformal mapping... main aim paper study lipschitz continuity cert... 0 0 1 0 0 0
13727 On Estimation of Conditional Modes Using Multi... propose estimation method conditional mode con... 0 0 1 1 0 0
13728 Kondo destruction in a quantum paramagnet with... report results isothermal magnetotransport sus... 0 1 0 0 0 0
13729 Deep supervised learning using local errors error backpropagation highly effective mechani... 1 0 0 1 0 0
13730 Theoretical and Computational Guarantees of Me... mean field variational bayes method becoming i... 0 0 1 1 0 0
13731 The Chandra Deep Field South as a test case fo... era next generation giant telescopes requires ... 0 1 0 0 0 0
13732 Probabilistic Causal Analysis of Social Influence mastering dynamics social influence requires s... 1 0 0 1 0 0
13733 Advanced reduced-order models for moisture dif... great concern produce numerically efficient me... 1 1 1 0 0 0
13734 Gapless quantum spin chains: multiple dynamics... study gapless quantum spin chains spin fredkin... 0 1 0 0 0 0
13735 Real-time public transport service-level monit... new area passive wifi analytics promise delive... 1 0 0 0 0 0
13736 Finding Network Motifs in Large Graphs using C... introduce new method finding network motifs in... 1 0 0 0 0 0
13737 A Bag-of-Words Equivalent Recurrent Neural Net... traditional bagofwords approach found wide ran... 1 0 0 0 0 0
13738 Limit on graviton mass from galaxy cluster Abe... date limit graviton mass using galaxy clusters... 0 1 0 0 0 0
13739 Enhancing the Regularization Effect of Weight ... artificial neural networks anns may worth comp... 0 0 0 1 0 0
13740 The Augustin Center and The Sphere Packing Bou... channel convex constraint set finite augustin ... 1 0 0 0 0 0
13741 SuperMinHash - A New Minwise Hashing Algorithm... paper presents new algorithm calculating hash ... 1 0 0 0 0 0
13742 On catastrophic forgetting and mode collapse i... generative adversarial networks gan one promin... 0 0 0 1 0 0
13743 Metamodel Construction for Sensitivity Analysis propose estimate metamodel sensitivity indices... 0 0 1 1 0 0
13744 Dynamics of the brain extracellular matrix gov... neuronal glial cells release diverse proteogly... 0 0 0 0 1 0
13745 AutoPerf: A Generalized Zero-Positive Learning... present autoperf generalized software performa... 1 0 0 0 0 0
13746 Building a bridge between Classical and Quantu... way quantum mechanics qm introduced people use... 0 1 0 0 0 0
13747 Size-Independent Sample Complexity of Neural N... study sample complexity learning neural networ... 1 0 0 1 0 0
13748 Copula Variational Bayes inference via informa... variational bayes vb also known independent me... 0 0 0 1 0 0
13749 Effect of increasing disorder on domains of th... studied two dimensional lattice model coulomb ... 0 1 0 0 0 0
13750 A dynamic network model with persistent links ... propose dynamic network model two mechanisms c... 1 0 0 1 0 1
13751 Predicting stock market movements using networ... stock market considered one highly complex sys... 1 1 0 0 0 0
13752 Bi-monotonic independence for pairs of algebras article notion bimonotonic independence introd... 0 0 1 0 0 0
13753 Evidence of Significant Energy Input in the La... present observations occulted active region ar... 0 1 0 0 0 0
13754 Gender Bias in Sharenting: Both Men and Women ... gender inequality starts birth parents tend pr... 1 0 0 0 0 0
13755 Spatial disease mapping using Directed Acyclic... hierarchical models regionally aggregated dise... 0 0 0 1 0 0
13756 Bag-of-Words Method Applied to Accelerometer M... accelerometer measurements prime type sensor i... 1 0 0 1 0 0
13757 Investigation of the commensurate magnetic str... investigated magnetic structure heavy fermion ... 0 1 0 0 0 0
13758 Constant-Time Predictive Distributions for Gau... one compelling features gaussian process gp re... 0 0 0 1 0 0
13759 Analysis of Thompson Sampling for Gaussian Pro... consider global optimization function continuo... 0 0 0 1 0 0
13760 Dependency Graph Approach for Multiprocessor R... years many multiprocessor locking protocols de... 1 0 0 0 0 0
13761 On topological cyclic homology topological cyclic homology refinement connest... 0 0 1 0 0 0
13762 Local Partition in Rich Graphs local graph partitioning key graph mining tool... 1 0 0 0 0 0
13763 A Transient Queueing Analysis under Time-varyi... understanding detailed queueing behavior netwo... 1 0 0 0 0 0
13764 SalientDSO: Bringing Attention to Direct Spars... although cluttered indoor scenes lot useful hi... 1 0 0 0 0 0
13765 Asynchronous Decentralized Parallel Stochastic... commonly used distributed machine learning sys... 1 0 0 1 0 0
13766 Seamless Resources Sharing in Wearable Network... prevalence smart wearable devices increasing e... 1 0 0 0 0 0
13767 Combining Model-Free Q-Ensembles and Model-Bas... qensembles modelfree approach input images fed... 0 0 0 1 0 0
13768 Creating a Cybersecurity Concept Inventory: A ... report status cybersecurity assessment tools c... 1 0 0 0 0 0
13769 Critical Learning Periods in Deep Neural Networks critical periods phases early development huma... 1 0 0 1 0 0
13770 Whole-Body Nonlinear Model Predictive Control ... work present wholebody nonlinear model predict... 1 0 0 0 0 0
13771 An informative path planning framework for UAV... unmanned aerial vehicles uavs represent new fr... 1 0 0 0 0 0
13772 Machine Learning on Sequential Data Using a Re... recurrent neural networks rnn type statistical... 1 0 0 1 0 0
13773 Feynman-Kac equation for anomalous processes w... functionals stochastic process yt model many p... 0 1 1 0 0 0
13774 An Online Ride-Sharing Path Planning Strategy ... efficient trafficmanagement platforms public v... 1 0 0 0 0 0
13775 Ask the Right Questions: Active Question Refor... frame question answering qa reinforcement lear... 1 0 0 0 0 0
13776 Time consistency for scalar multivariate risk ... paper present results dynamic multivariate sca... 0 0 0 0 0 1
13777 A Continuous Beam Steering Slotted Waveguide A... design simulation measurement beam steerable s... 0 1 0 0 0 0
13778 Developing an edge computing platform for real... internet mobile things encompasses stream data... 1 0 0 0 0 0
13779 Space Telescope and Optical Reverberation Mapp... space telescope optical reverberation mapping ... 0 1 0 0 0 0
13780 Design of a Multi-Modal End-Effector and Grasp... present grasping system design approach behind... 1 0 0 0 0 0
13781 Coping with Construals in Broad-Coverage Seman... consider semantics prepositions revisiting bro... 1 0 0 0 0 0
13782 A Framework for Generalizing Graph-based Repre... random walks heart many existing deep learning... 1 0 0 1 0 0
13783 A Neural Network Architecture Combining Gated ... gated recurrent unit gru recentlydeveloped var... 1 0 0 1 0 0
13784 Spelling Correction as a Foreign Language paper reformulated spell correction problem ma... 1 0 0 0 0 0
13785 Intrinsic p-type W-based transition metal dich... twodimensional transition metal dichalcogenide... 0 1 0 0 0 0
13786 Synchronisation of Partial Multi-Matchings via... work study permutation synchronisation challen... 0 0 0 1 0 0
13787 Associated varieties and Higgs branches (a sur... associated varieties vertex algebras analogue ... 0 0 1 0 0 0
13788 Optimization Design of Decentralized Control f... new method developed deal problem complex dece... 1 0 0 0 0 0
13789 SAM: Semantic Attribute Modulation for Languag... paper presents semantic attribute modulation s... 1 0 0 1 0 0
13790 A Flexible Procedure for Mixture Proportion Es... positiveunlabeled pu learning considers two sa... 0 0 0 1 0 0
13791 The Application of SNiPER to the JUNO Simulation juno multipurpose neutrino experiment designed... 0 1 0 0 0 0
13792 A Modified Sigma-Pi-Sigma Neural Network with ... sigmapisigma neural networks spsnns kind higho... 0 0 0 1 0 0
13793 Proceedings of the 2017 AdKDD & TargetAd Workshop proceedings adkdd targetad workshop held conju... 1 0 0 0 0 0
13794 On the R-superlinear convergence of the KKT re... due possible lack primaldualtype error bounds ... 0 0 1 0 0 0
13795 It's Like Python But: Towards Supporting Trans... expertise programming traditionally assumes bi... 1 0 0 0 0 0
13796 How do Mixture Density RNNs Predict the Future? gaining better understanding machine learning ... 1 0 0 1 0 0
13797 Robust Recovery of Missing Data in Electricity... advanced operation future electricity distribu... 1 0 0 0 0 0
13798 Numerical analysis of a nonlinear free-energy ... propose nonlinear discrete duality finite volu... 0 0 1 0 0 0
13799 A momentum conserving $N$-body scheme with ind... nbody simulations study dynamics n particles i... 0 1 0 0 0 0
13800 Accurate Real Time Localization Tracking in A ... deep learning started revolutionize several di... 1 1 0 0 0 0
13801 Metropolis Sampling monte carlo mc sampling methods widely applied... 0 0 0 1 0 0
13802 Approximate Structure Construction Using Large... paper describe novel local algorithm large sta... 1 0 0 1 0 0
13803 Search for Food of Birds, Fish and Insects book chapter introduces problem extent search ... 0 0 0 0 1 0
13804 Poverty Prediction with Public Landsat 7 Satel... obtaining detailed reliable data local economi... 1 0 0 1 0 0
13805 Implicit Regularization in Matrix Factorization study implicit regularization optimizing under... 1 0 0 1 0 0
13806 A general theory of singular values with appli... study pareto frontier two competing norms cdot... 1 0 1 1 0 0
13807 A Hybrid Deep Learning Architecture for Privac... deep neural networks increasingly used variety... 1 0 0 0 0 0
13808 Exploiting Apache Spark platform for CMS compu... cern provides set hadoop clusters featuring pb... 0 1 0 0 0 0
13809 Scalable Co-Optimization of Morphology and Con... evolution sculpts body plans nervous systems a... 1 0 0 0 0 0
13810 Normalizing the Taylor expansion of non-determ... known since ehrhard regniers seminal work tayl... 1 0 0 0 0 0
13811 Quantifying telescope phase discontinuities ex... propose apply two methods estimate pupil plane... 0 1 0 0 0 0
13812 Adaptive Multilevel Monte Carlo Approximation ... analyse multilevel monte carlo method approxim... 0 0 1 1 0 0
13813 Constraints on the pre-impact orbits of Solar ... provide fast method computing constraints impa... 0 1 0 0 0 0
13814 Dark matter in the Reticulum II dSph: a radio ... present deep radio search reticulum ii dwarf s... 0 1 0 0 0 0
13815 Relevant change points in high dimensional tim... paper investigates problem detecting relevant ... 0 0 1 1 0 0
13816 Disentangling in Variational Autoencoders with... learning representations disentangle underlyin... 1 0 0 1 0 0
13817 Calibrated Boosting-Forest excellent ranking power along well calibrated ... 1 0 0 1 0 0
13818 Phase Diagram of $α$-RuCl$_3$ in an in-plane M... lowtemperature magnetic phases layered honeyco... 0 1 0 0 0 0
13819 Post hoc inference via joint family-wise error... introduce general methodology post hoc inferen... 0 0 1 1 0 0
13820 Jamming Resistant Receivers for Massive MIMO design jamming resistant receivers enhance rob... 1 0 0 0 0 0
13821 Thickening and sickening the SYK model discuss higher dimensional generalizations dim... 0 1 0 0 0 0
13822 Hidden chiral symmetries in BDI multichannel K... realistic implementations kitaev chain require... 0 1 0 0 0 0
13823 Charge Berezinskii-Kosterlitz-Thouless transit... halfcentury discovery superconductorinsulator ... 0 1 0 0 0 0
13824 Seed-Driven Geo-Social Data Extraction - Full ... geosocial data attractive source variety probl... 1 0 0 0 0 0
13825 Bayesian random-effects meta-analysis using th... randomeffects normalnormal hierarchical model ... 0 0 0 1 0 0
13826 Dirichlet Mixture Model based VQ Performance P... paper continue previous work dirichlet mixture... 1 0 0 1 0 0
13827 Query K-means Clustering and the Double Dixie ... consider problem approximate kmeans clustering... 0 0 0 1 0 0
13828 On the spectrum of directed uniform and non-un... suggest method represent general directed unif... 0 0 1 0 0 0
13829 Inference for partial correlation when data ar... introduce uncertainty regions perform inferenc... 0 0 1 1 0 0
13830 Interstitial Content Detection interstitial content online content grays othe... 1 0 0 0 0 0
13831 Perfect spike detection via time reversal spiking neuronal networks usually simulated th... 0 1 1 0 0 0
13832 A response to: "NIST experts urge caution in u... press release national institute standards tec... 0 0 0 1 0 0
13833 Safe Model-based Reinforcement Learning with S... reinforcement learning powerful paradigm learn... 1 0 0 1 0 0
13834 Refining Trace Abstraction using Abstract Inte... cegar loop software model checking notoriously... 1 0 0 0 0 0
13835 A partial inverse problem for the Sturm-Liouvi... sturmliouville operator singular potentials la... 0 0 1 0 0 0
13836 BPjs --- a framework for modeling reactive sys... describe progress towards new common framework... 1 0 0 0 0 0
13837 Design of Quantum Circuits for Galois Field Sq... work presents algorithm generate depth quantum... 1 0 0 0 0 0
13838 Nearest-Neighbor Sample Compression: Efficienc... examine bayesconsistency recently proposed nea... 1 0 1 1 0 0
13839 AdaGrad stepsizes: Sharp convergence over nonc... adaptive gradient methods adagrad variants upd... 0 0 0 1 0 0
13840 On polynomially integrable convex bodies infinitely smooth convex body mathbb rn called... 0 0 1 0 0 0
13841 Percentile Policies for Tracking of Markovian ... motivated wideranging applications video deliv... 1 0 0 0 0 0
13842 On Information Transfer Based Characterization... paper present novel approach identify generato... 1 0 0 0 0 0
13843 Using Session Types for Reasoning About Bounde... classes depthbounded namebounded processes fra... 1 0 0 0 0 0
13844 Combinatorial Secretary Problems with Ordinal ... secretary problem classic model online decisio... 1 0 0 0 0 0
13845 Modeling the Formation of Social Conventions i... order understand formation social conventions ... 0 0 0 1 1 0
13846 A class of C*-algebraic locally compact quantu... series papers develop theory class locally com... 0 0 1 0 0 0
13847 Symmetry-enforced quantum spin Hall insulators... prove liebschultzmattis theorem quantum spin h... 0 1 0 0 0 0
13848 Stabilized microwave-frequency transfer using ... present stabilized microwavefrequency transfer... 0 1 0 0 0 0
13849 Spectral sets for numerical range define study numericalrange analogue notion sp... 0 0 1 0 0 0
13850 Learning of Gaussian Processes in Distributed ... fundamental importance find algorithms obtaini... 1 0 0 1 0 0
13851 Deep Learning: A Critical Appraisal although deep learning historical roots going ... 0 0 0 1 0 0
13852 Semi-Supervised Recurrent Neural Network for A... social media useful platform share healthrelat... 1 0 0 0 0 0
13853 A Deep Neural Architecture for Sentence-level ... paper introduces novel deep learning framework... 1 0 0 0 0 0
13854 A Tree-based Approach for Detecting Redundant ... net asset value nav calculation validation pri... 1 0 0 0 0 0
13855 Dynamics of the nonlinear Klein-Gordon equatio... nonlinear kleingordon nlkg equation manifold n... 0 0 1 0 0 0
13856 Surface plasmons in superintense laser-solid i... review studies superintense laser interaction ... 0 1 0 0 0 0
13857 Jacquard: A Large Scale Dataset for Robotic Gr... grasping skill major ability wide number reall... 1 0 0 0 0 0
13858 Hochschild cohomology of some quantum complete... compute hochschild cohomology ring algebras kl... 0 0 1 0 0 0
13859 Stock Market Visualization provide complete source code frontend gui back... 0 0 0 0 0 1
13860 Sharp estimates for solutions of mean field eq... pioneering work brezismerle lishafrir li barto... 0 0 1 0 0 0
13861 Probabilistic Forwarding of Coded Packets on N... consider scenario broadcasting information net... 1 0 0 0 0 0
13862 Quantifiers on languages and codensity monads paper contributes techniques topoalgebraic rec... 1 0 1 0 0 0
13863 Conservative Exploration using Interleaving many practical problems learning agent may wan... 0 0 0 1 0 0
13864 Power Allocation for Full-Duplex Relay Selecti... paper investigates power control relay selecti... 1 0 1 1 0 0
13865 Carina: Interactive Million-Node Graph Visuali... working scalable interactive visualization sys... 1 0 0 0 0 0
13866 Domination between different products and fini... note determine possible dominations different ... 0 0 1 0 0 0
13867 Discriminant of the ordinary transversal singu... consider space x singular locus zsingx positiv... 0 0 1 0 0 0
13868 Possible spin excitation structure in monolaye... based recent highresolution angleresolved phot... 0 1 0 0 0 0
13869 Transient behavior of the solutions to the sec... renormalization method based newtonmaclaurin e... 0 1 1 0 0 0
13870 Bias in Bios: A Case Study of Semantic Represe... present largescale study gender bias occupatio... 1 0 0 1 0 0
13871 SphereFace: Deep Hypersphere Embedding for Fac... paper addresses deep face recognition fr probl... 1 0 0 0 0 0
13872 Speed-of-light pulses in the massless nonlinea... consider massless nonlinear dirac nld equation... 0 1 0 0 0 0
13873 A Hybrid Feasibility Constraints-Guided Search... twodimensional nonoriented bin packing problem... 1 0 0 0 0 0
13874 The earliest phases of high-mass star formatio... constrain models highmass star formation hersc... 0 1 0 0 0 0
13875 Robust consistent a posteriori error majorants... efficiency error control numerical solutions p... 0 0 1 0 0 0
13876 Extended opportunity cost model to find near e... paper finds near equilibrium prices electricit... 0 0 0 0 0 1
13877 Kernel Two-Sample Hypothesis Testing Using Ker... twosample hypothesis testing problem studied c... 0 0 0 1 0 0
13878 An Efficient Approach for Removing Look-ahead ... least square monte carlo lsm algorithm propose... 0 0 0 0 0 1
13879 Accurately and Efficiently Interpreting Human-... humans ground natural language commands tasks ... 1 0 0 0 0 0
13880 Nonlocal Venttsel' diffusion in fractal-type d... study nonlocal venttsel problem nonconvex boun... 0 0 1 0 0 0
13881 Magnon Spin-Momentum Locking: Various Spin Vor... generalize concept spinmomentum locking magnon... 0 1 0 0 0 0
13882 Analytic evaluation of some three- and four- e... method evaluation outlined previous work utili... 0 1 0 0 0 0
13883 GIANT: Globally Improved Approximate Newton Me... distributed computing environment consider emp... 1 0 0 1 0 0
13884 Stability and performance analysis of linear p... known inputoutput approaches based scaled smal... 1 0 1 0 0 0
13885 Joint Inference of User Community and Interest... online social media become integral part socia... 1 1 0 0 0 0
13886 A mode theory for the electoweak interaction a... theory proposed basic elements reality assumed... 0 1 0 0 0 0
13887 Guided Machine Learning for power grid segment... segmentation large scale power grids zones cru... 0 0 0 1 0 0
13888 121,123Sb NQR as a microscopic probe in Te dop... sb nuclear quadrupole resonance nqr applied fe... 0 1 0 0 0 0
13889 The Merging Path Plot: adaptive fusing of k-gr... many statistical tests verify null hypothesis ... 1 0 0 1 0 0
13890 Constraint on cosmological parameters by Hubbl... paper present new method measuring hubble para... 0 1 0 0 0 0
13891 Semidefinite tests for latent causal structures testing whether probability distribution compa... 0 0 1 1 0 0
13892 From atomistic model to the Peierls-Nabarro mo... peierlsnabarro pn model dislocations hybrid mo... 0 0 1 0 0 0
13893 A family of monogenic $S_4$ quartic fields ari... consider partial torsion fields fields generat... 0 0 1 0 0 0
13894 Aggregation and Resource Scheduling in Machine... data aggregation promising approach enable mas... 1 0 0 1 0 0
13895 Setting Players' Behaviors in World of Warcraf... digital games one major important fields enter... 1 0 0 0 0 0
13896 Boundary Hamiltonian theory for gapped topolog... letter report systematic construction lattice ... 0 1 1 0 0 0
13897 Euler characteristics of cominuscule quantum K... prove identity relating product two opposite s... 0 0 1 0 0 0
13898 Dialogue Act Sequence Labeling using Hierarchi... dialogue act recognition associate dialogue ac... 1 0 0 0 0 0
13899 Noise Stability is computable and low dimensional questions noise stability play important role ... 1 0 1 0 0 0
13900 Differentially Private ANOVA Testing modern society generates incredible amount dat... 1 0 0 1 0 0
13901 The $E$-cohomological Conley Index, Cup-Length... give new proof strong arnold conjecture period... 0 0 1 0 0 0
13902 Compiling Diderot: From Tensor Calculus to C diderot parallel domainspecific language analy... 1 0 0 0 0 0
13903 Semi-Supervised and Active Few-Shot Learning w... consider problem semisupervised fewshot classi... 1 0 0 1 0 0
13904 Inhomogeneous exponential jump model introduce study inhomogeneous exponential jump... 0 0 1 0 0 0
13905 Evidence accumulation in a Laplace domain deci... evidence accumulation models simple decisionma... 0 0 0 0 1 0
13906 Improved Energy Pooling Efficiency Through Inh... radiative lifetime molecules atoms increased p... 0 1 0 0 0 0
13907 A unified, mechanistic framework for developme... two fundamental processes describing change bi... 0 0 0 0 1 0
13908 Coinfection in a stochastic model for bacterio... system modeling bacteriophage treatments coinf... 0 0 1 0 0 0
13909 Field dependence of non-reciprocal magnons in ... spin waves chiral magnetic materials strongly ... 0 1 0 0 0 0
13910 On the Simpson index for the Moran process wit... moran wrightfisher processes probably well kno... 0 0 0 0 1 0
13911 Small animal whole body imaging with metamater... preclinical magnetic resonance imaging often r... 0 1 0 0 0 0
13912 Entropic Trace Estimates for Log Determinants scalable calculation matrix determinants bottl... 1 0 0 1 0 0
13913 A Mixture of Matrix Variate Bilinear Factor An... years data become increasingly higher dimensio... 0 0 0 1 0 0
13914 The application of the competency-based approa... review paper fits context adequate matching tr... 1 0 0 0 0 0
13915 Prediction and Generation of Binary Markov Pro... understanding generative mechanism natural sys... 1 1 0 0 0 0
13916 Topological orders of strongly interacting par... investigate selforganization strongly interact... 0 1 0 0 0 0
13917 Virtual unknotting numbers of certain virtual ... virtual unknotting number virtual knot minimal... 0 0 1 0 0 0
13918 Computing the Lambert W function in arbitrary-... describe algorithm evaluate complex branches l... 1 0 0 0 0 0
13919 An Architecture for Embedded Systems Supportin... rise life expectancy one great achievements tw... 1 0 0 0 0 0
13920 Hunting Rabbits on the Hypercube explore hunters rabbits game hypercube process... 0 0 1 0 0 0
13921 Mixed Effect Dirichlet-Tree Multinomial for Lo... quantifying relation gut microbiome body weigh... 0 0 0 1 0 0
13922 Approximating Throughput and Packet Decoding D... paper study wireless packet broadcast system u... 1 0 1 0 0 0
13923 Search for electromagnetic super-preshowers us... considerations propagation particles universe ... 0 1 0 0 0 0
13924 Gromov-Hausdorff limit of Wasserstein spaces o... consider point cloud xn x dots xn uniformly di... 0 0 1 1 0 0
13925 Minimal axiomatic frameworks for definable hyp... modify definable ultrapower construction kanov... 0 0 1 0 0 0
13926 A Tight Excess Risk Bound via a Unified PAC-Ba... present novel notion complexity interpolates g... 1 0 0 1 0 0
13927 A Naive Algorithm for Feedback Vertex Set given graph n vertices integer k feedback vert... 1 0 0 0 0 0
13928 Query Complexity of Clustering with Side Infor... suppose given set n elements clustered k unkno... 1 0 0 1 0 0
13929 On Prediction Properties of Kriging: Uniform E... kriging based gaussian random fields widely us... 0 0 1 1 0 0
13930 Robust Submodular Maximization: A Non-Uniform ... study problem maximizing monotone submodular f... 1 0 0 1 0 0
13931 Value Directed Exploration in Multi-Armed Band... multiarmed bandits quintessential machine lear... 1 0 0 1 0 0
13932 Adaptive Mantel Test for AssociationTesting in... mantels test mt association conducted testing ... 0 0 0 1 0 0
13933 Approximation of Functions over Manifolds: A M... present algorithm approximating function defin... 1 0 0 1 0 0
13934 Delay sober up drunkers: Control of diffusion ... time delay general leads instability systems s... 0 1 0 0 0 0
13935 Gravitational Wave signatures of inflationary ... primordial black holes pbh could cold dark mat... 0 1 0 0 0 0
13936 Linear Parsing Expression Grammars pegs formalized ford several pragmatic operato... 1 0 0 0 0 0
13937 Pre-Synaptic Pool Modification (PSPM): A Super... central question neuroscience develop realisti... 0 0 0 0 1 0
13938 The Bright and Dark Sides of High-Redshift sta... present restframe optical spectra fmoscosmos s... 0 1 0 0 0 0
13939 Edge Estimation with Independent Set Oracles study task estimating number edges graph acces... 1 0 0 0 0 0
13940 Threshold-activated transport stabilizes chaot... explore random scalefree networks populations ... 0 1 0 0 0 0
13941 Bounding and Counting Linear Regions of Deep N... investigate complexity deep neural networks dn... 1 0 0 1 0 0
13942 The reactive-telegraph equation and a related ... study longrange longtime behavior reactivetele... 0 0 1 0 0 0
13943 Finiteness theorems for K3 surfaces and abelia... study abelian varieties k surfaces complex mul... 0 0 1 0 0 0
13944 Rheology of inelastic hard spheres at finite d... considering granular fluid inelastic smooth ha... 0 1 0 0 0 0
13945 The Flash ADC system and PMT waveform reconstr... better understand energy response antineutrino... 0 1 0 0 0 0
13946 Quasitoric totally normally split representati... present paper generalises results ray buchstab... 0 0 1 0 0 0
13947 Interpretable Feature Recommendation for Signa... paper presents automated approach interpretabl... 1 0 0 1 0 0
13948 Learning One-hidden-layer ReLU Networks via Gr... study problem learning onehiddenlayer neural n... 0 0 0 1 0 0
13949 Exclusion of GNSS NLOS Receptions Caused by Dy... absolute positioning essential factor arrival ... 1 0 0 0 0 0
13950 Energy Distribution in Intrinsically Coupled S... intrinsically nonlinear coupled systems presen... 0 1 0 0 0 0
13951 Cayley deformations of compact complex surfaces article consider cayley deformations compact c... 0 0 1 0 0 0
13952 Ensemble Inhibition and Excitation in the Huma... pairwise maximum entropy model also known isin... 0 0 0 0 1 0
13953 Generalized Self-Concordant Functions: A Recip... study smooth structure convex functions genera... 0 0 1 1 0 0
13954 On Joint Functional Calculus For Ritt Operators paper study joint functional calculus commutin... 0 0 1 0 0 0
13955 Controlling plasmon modes and damping in buckl... full ranges hybrid plasmonmode dispersions dam... 0 1 0 0 0 0
13956 A high-order nonconservative approach for hype... well known thanks laxwendroff theorem local co... 0 0 1 0 0 0
13957 Improving Resilience of Autonomous Moving Plat... environmental changes failures collisions even... 1 0 0 0 0 0
13958 Power series expansions for the planar monomer... compute free energy planar monomerdimer model ... 1 0 0 0 0 0
13959 Neural Networks Compression for Language Modeling paper consider several compression techniques ... 1 0 0 1 0 0
13960 Relativistic effects in the non-resonant two-p... relativistic effects nonresonant twophoton ksh... 0 1 0 0 0 0
13961 Local Okounkov bodies and limits in prime char... article concerned asymptotic behavior certain ... 0 0 1 0 0 0
13962 Two-Dimensional Systolic Complexes Satisfy Pro... show dimensional systolic complexes quasiisome... 0 0 1 0 0 0
13963 Application of the Computer Capacity to the An... notion computer capacity proposed quantity est... 1 0 0 0 0 0
13964 On absolutely normal numbers and their discrep... construct base expansion absolutely normal rea... 1 0 1 0 0 0
13965 Multispectral computational ghost imaging with... computational ghost imaging robust compact sys... 0 1 0 0 0 0
13966 Combined MEG and fMRI Exponential Random Graph... estimated connectomes means neuroimaging techn... 0 0 0 0 1 0
13967 An updated Type II supernova Hubble diagram present photometry spectroscopy nine type iipl... 0 1 0 0 0 0
13968 Digital Identity: The Effect of Trust and Repu... sharing economy se growing ecosystem focusing ... 1 0 0 0 0 0
13969 Can Deep Clinical Models Handle Real-World Dom... hypothesis computational models reliable enoug... 0 0 0 1 0 0
13970 Fabrication of grain boundary junctions using ... report growth ndfeasof thin films tilt mgo bic... 0 1 0 0 0 0
13971 Panchromatic Hubble Andromeda Treasury XVIII. ... measure mass function sample young star cluste... 0 1 0 0 0 0
13972 Cohomology and overconvergence for representat... show galois cohomology groups padic representa... 0 0 1 0 0 0
13973 Global algorithms for maximal eigenpair paper continuation ctcmf efficient algorithm c... 0 0 1 1 0 0
13974 Entanglement and entropy production in coupled... investigate time evolution entanglement entrop... 0 1 0 0 0 0
13975 Sparse Poisson Regression with Penalized Weigh... proposed new penalized method paper solve spar... 0 0 1 1 0 0
13976 Bubble size statistics during reionization fro... upcoming skalow radio interferometer sensitive... 0 1 0 0 0 0
13977 Robust Stochastic Configuration Networks with ... neural networks widely used predictive models ... 1 0 0 1 0 0
13978 Density of the spectrum of Jacobi matrices wit... consider jacobi matrices j whose parameters po... 0 0 1 0 0 0
13979 Modeling of a self-sustaining ignition in a so... present work analyze necessary conditions igni... 0 1 0 0 0 0
13980 Election Bias: Comparing Polls and Twitter in ... polls trusted source election predictions deca... 1 0 0 0 0 0
13981 Versality of the relative Fukaya category seidel introduced notion fukaya category relat... 0 0 1 0 0 0
13982 Hot Phonon and Carrier Relaxation in Si(100) D... thermalization hot carriers phonons gives dire... 0 1 0 0 0 0
13983 Counting Quasi-Idempotent Irreducible Integral... given polynomial p cx show set irreducible mat... 0 0 1 0 0 0
13984 On sound-based interpretation of neonatal EEG significant training required visually interpr... 0 0 0 1 1 0
13985 OAuthGuard: Protecting User Security and Priva... millions users routinely use google log websit... 1 0 0 0 0 0
13986 Aspiration dynamics generate robust prediction... evolutionary game dynamics structured populati... 0 0 0 0 1 0
13987 Memory Efficient Experience Replay for Streami... supervised machine learning agent typically tr... 0 0 0 1 0 0
13988 New integrable semi-discretizations of the cou... undertaken algorithmic search new integrable s... 0 1 1 0 0 0
13989 Provable Alternating Gradient Descent for Non-... nonnegative matrix factorization basic tool de... 1 0 0 1 0 0
13990 Bayesian mean-variance analysis: Optimal portf... paper solves problem optimal portfolio choice ... 0 0 0 0 0 1
13991 Selective inference after likelihood- or test-... statistical inference model selection requires... 0 0 0 1 0 0
13992 Sampling and Reconstruction of Graph Signals v... study problem sampling bandlimited graph signa... 1 0 0 1 0 0
13993 DLTK: State of the Art Reference Implementatio... present dltk toolkit providing baseline implem... 1 0 0 0 0 0
13994 A homotopy theory of Nakaoka twin cotorsion pairs show verdier quotients realized subfactors hom... 0 0 1 0 0 0
13995 Categorical relations between Langlands dual q... prove grothendieck rings category mathcalctq q... 0 0 1 0 0 0
13996 Strategic Dynamic Pricing with Network Effects study optimal pricing strategy monopolist sell... 1 0 0 0 0 0
13997 Semisimple Leibniz algebras and their derivati... present paper devoted description finitedimens... 0 0 1 0 0 0
13998 Vandermonde Matrices with Nodes in the Unit Di... derive bounds extremal singular values conditi... 1 0 1 0 0 0
13999 High-buckled R3 stanene with topologically non... stanene predicted twodimensional topological i... 0 1 0 0 0 0
14000 Informed Sub-Sampling MCMC: Approximate Bayesi... paper introduces framework speeding bayesian i... 0 0 0 1 0 0
14001 Mathematical Analysis of Anthropogenic Signatu... distributions anthropogenic signatures impacts... 0 0 0 0 1 0
14002 Efficient Regret Minimization in Non-Convex Games consider regret minimization repeated games no... 1 0 0 1 0 0
14003 Spectral Methods for Immunization of Large Net... given network nodes minimizing spread contagio... 1 0 0 0 0 0
14004 Long-time existence of nonlinear inhomogeneous... paper consider nonlinear inhomogeneous compres... 0 0 1 0 0 0
14005 Deep Convolutional Denoising of Low-Light Images poisson distribution used modeling noise photo... 1 0 0 0 0 0
14006 Towards a fractal cohomology: Spectra of Polya... emil artin defined zeta function algebraic cur... 0 0 1 0 0 0
14007 F-index of graphs based on four operations rel... forgotten topological index findex graph defin... 1 0 0 0 0 0
14008 Deleting vertices to graphs of bounded genus show problem deleting minimum number vertices ... 1 0 0 0 0 0
14009 Axion dark matter search using the storage rin... propose using storage ring edm method search a... 0 1 0 0 0 0
14010 Time crystal platform: from quasi-crystal stru... time crystals quantum manybody systems due int... 0 1 0 0 0 0
14011 Fast and accurate classification of echocardio... echocardiography essential modern cardiology h... 1 0 0 0 0 0
14012 Anomaly Detection in Multivariate Non-stationa... anomaly detection database management systems ... 1 0 0 1 0 0
14013 On the complexity of non-orientable Seifert fi... paper deal seifert fibre spaces compact manifo... 0 0 1 0 0 0
14014 MIMO-UFMC Transceiver Schemes for Millimeter W... ufmc modulation among considered solutions rea... 1 0 0 0 0 0
14015 Modeling human intuitions about liquid flow wi... humans easily describe imagine crucially predi... 0 0 0 0 1 0
14016 Comment on "Spin-Orbit Coupling Induced Gap in... recently paper klimovskikh et al published pre... 0 1 0 0 0 0
14017 Stochastic Non-convex Ordinal Embedding with S... learning representation relative similarity co... 1 0 0 1 0 0
14018 The Mass-Metallicity Relation revisited with C... present updated version massmetallicity relati... 0 1 0 0 0 0
14019 (p,q)-webs of DIM representations, 5d N=1 inst... instanton partition functions mathcaln super y... 0 0 1 0 0 0
14020 Self-Motion of the 3-PPPS Parallel Robot with ... paper presents kinematic analysis ppps paralle... 1 0 0 0 0 0
14021 Scaling-Up Reasoning and Advanced Analytics on... bigdatalog extension datalog achieves performa... 1 0 0 0 0 0
14022 ALMA Observations of the Gravitational Lens SDP.9 present longbaseline alma observations strong ... 0 1 0 0 0 0
14023 The Noether numbers and the Davenport constant... computation noether numbers groups order less ... 0 0 1 0 0 0
14024 Multistability and coexisting soliton combs in... reporting lugiatolefever equation describing f... 0 1 0 0 0 0
14025 Numerical assessment of the percolation thresh... models percolation processes networks currentl... 1 0 0 0 0 0
14026 Planar graphs as L-intersection or L-contact g... lintersection graphs graphs representation int... 1 0 0 0 0 0
14027 An EPTAS for Scheduling on Unrelated Machines ... classical problem scheduling unrelated paralle... 1 0 0 0 0 0
14028 An extensive impurity-scattering study on the ... determination pairing symmetry monolayer fese ... 0 1 0 0 0 0
14029 Fast Depth Imaging Denoising with the Temporal... paper proposes novel method filter false alarm... 0 1 0 0 0 0
14030 From Propositional Logic to Plausible Reasonin... consider question extending propositional logi... 1 0 0 0 0 0
14031 Discovering objects and their relations from e... world succinctly compactly described structure... 1 0 0 0 0 0
14032 Hall effect spintronics for gas detection present concept magnetic gas detection extraor... 0 1 0 0 0 0
14033 An evolutionary strategy for DeltaE - E identi... article present automatic method charge mass i... 1 1 0 0 0 0
14034 Contrastive Training for Models of Information... paper proposes model information cascades dire... 1 0 0 0 0 0
14035 The Structure of the Broad-Line Region In Acti... present inferences geometry kinematics broadhb... 0 1 0 0 0 0
14036 A Unified Framework for Long Range and Cold St... providing longrange forecasts fundamental chal... 1 0 0 1 0 0
14037 A Multi-Ringed, Modestly-Inclined Protoplaneta... aa tau archetype class stars peculiar periodic... 0 1 0 0 0 0
14038 Verifying the Medical Specialty from User Prof... paper describes verifying methods medical spec... 1 0 0 0 0 0
14039 Stress-Based Navigation for Microscopic Robots... objects moving fluids experience patterns stre... 1 0 0 0 0 0
14040 The $(-β)$-shift and associated Zeta Function given real number beta study associated betash... 0 0 1 0 0 0
14041 Configurational forces in electronic structure... derive expressions configurational forces kohn... 0 1 0 0 0 0
14042 Utilizing Bluetooth and Adaptive Signal Contro... realtime safety analysis become hot research t... 0 0 0 1 0 0
14043 A Nernst current from the conformal anomaly in... show conformal anomaly weyldirac semimetals ge... 0 1 0 0 0 0
14044 Employing both Gender and Emotion Cues to Enha... speaker recognition performance emotional talk... 1 0 0 0 0 0
14045 Thermal Pressure in Diffuse H2 Gas Measured by... uv absorption studies fuse observed h molecula... 0 1 0 0 0 0
14046 A Dictionary Approach to Identifying Transient... radio telescopes become sensitive damaging eff... 0 1 0 0 0 0
14047 Eternal inflation and the quantum birth of cos... consider eternal inflation scenario slowrollch... 0 1 0 0 0 0
14048 Exact time dependence of causal correlations a... present first exact calculations time dependen... 0 1 0 0 0 0
14049 Discrete-time construction of nonequilibrium p... rigorous nonequilibrium actions manybody probl... 0 1 0 0 0 0
14050 Estimation of Component Reliability in Coheren... first step statistical reliability studies coh... 0 0 0 1 0 0
14051 Cell-Probe Lower Bounds from Online Communicat... work introduce online model communication comp... 1 0 0 0 0 0
14052 On Machine Learning and Structure for Mobile R... due recent advances compute data models role l... 1 0 0 1 0 0
14053 On the degree of incompleteness of an incomple... order find way measuring degree incompleteness... 0 0 0 0 0 1
14054 Sparsity information and regularization in the... horseshoe prior proven noteworthy alternative ... 0 0 0 1 0 0
14055 Learning an internal representation of the end... current machine learning techniques proposed a... 1 0 0 0 0 0
14056 Correlation plots of the Siberian radioheliograph siberian solar radio telescope upgraded upgrad... 0 1 0 0 0 0
14057 Anomalous Thermal Expansion, Negative Linear C... present temperature dependent inelastic neutro... 0 1 0 0 0 0
14058 Comparing Computing Platforms for Deep Learnin... goal study test two different computing platfo... 1 0 0 0 0 0
14059 DLBI: Deep learning guided Bayesian inference ... superresolution fluorescence microscopy resolu... 0 0 0 1 0 0
14060 A Universal Ordinary Differential Equation astonishing fact established lee rubel exists ... 1 0 1 0 0 0
14061 Sun/Moon photometer for the Cherenkov Telescop... determination energy flux gamma photons imagin... 0 1 0 0 0 0
14062 A Connectome Based Hexagonal Lattice Convoluti... learn connectome constructed simplified model ... 0 0 0 0 1 0
14063 Improved Kernels and Algorithms for Claw and D... claw diamondfree edge deletion problem given g... 1 0 0 0 0 0
14064 Distributed Edge Caching Scheme Considering th... caching popular contents edge cellular network... 1 0 0 0 0 0
14065 Orbital Graphs introduce orbital graphs discuss basic propert... 1 0 1 0 0 0
14066 On the existence of harmonic $\mathbf{Z}_2$ sp... prove existence singular harmonic bf z spinors... 0 0 1 0 0 0
14067 Penalty-based spatial smoothing and outlier de... childhood obesity associated increased morbidi... 0 0 0 1 0 0
14068 Some simple rules for estimating reproduction ... basic reproduction number r threshold paramete... 0 0 0 0 1 0
14069 Self-Assembled Monolayer Piezoelectrics: Elect... demonstrate applied electric field causes piez... 0 1 0 0 0 0
14070 Matrix divisors on Riemann surfaces and Lax op... matrix divisors introduced work aweil consider... 0 0 1 0 0 0
14071 Observation of pseudogap in MgB2 pseudogap phase superconductors continues outs... 0 1 0 0 0 0
14072 Critical fields and fluctuations determined fr... direct comparison specific heat magnetoresista... 0 1 0 0 0 0
14073 Determining the vortex tilt relative to a supe... interest determine exit angle vortex supercond... 0 1 0 0 0 0
14074 Onset of nonlinear structures due to eigenmode... general methodology proposed differentiate lik... 0 1 0 0 0 0
14075 Self-consistent semi-analytic models of the fi... developed semianalytic framework model largesc... 0 1 0 0 0 0
14076 SoK: Taxonomy and Challenges of Out-of-Band Si... research hardware imperfections impact securit... 1 0 0 0 0 0
14077 Identifying Harm Events in Clinical Care throu... preventable medical errors estimated among lea... 1 0 0 0 0 0
14078 Deep Self-Paced Learning for Person Re-Identif... person reidentification reid usually suffers n... 1 0 0 0 0 0
14079 Moments and Cumulants of The Two-Stage Mann-Wh... paper illustrates calculate moments cumulants ... 0 0 0 1 0 0
14080 OGLE Cepheids and RR Lyrae Stars in the Milky Way present new large samples galactic cepheids rr... 0 1 0 0 0 0
14081 Closed-form approximations in derivatives pric... kristensen mele developed new approach obtain ... 0 0 0 0 0 1
14082 On the magnitude function of domains in Euclid... study leinsters notion magnitude compact metri... 0 0 1 0 0 0
14083 Minimum edge cuts of distance-regular and stro... paper show edge connectivity distanceregular d... 0 0 1 0 0 0
14084 Quality Enhancement by Weighted Rank Aggregati... expertise annotators major role crowdsourcing ... 1 0 0 0 0 0
14085 Heterogeneous elastic plates with in-plane mod... rigorously derive kirchhoff plate theory via g... 0 1 1 0 0 0
14086 An educational distributed Cosmic Ray detector... advent microcontrollers enough cpu power analo... 0 1 0 0 0 0
14087 Irreducible characters with bounded root Artin... work prove growth artin conductor exponential ... 0 0 1 0 0 0
14088 Mapping Web Pages by Internet Protocol (IP) ad... internet protocol ip addresses frequently used... 1 0 0 0 0 0
14089 A generalisation of Kani-Rosen decomposition t... short paper generalise theorem due kani rosen ... 0 0 1 0 0 0
14090 Optimal group testing designs for estimating p... construct optimal designs group testing experi... 0 0 1 1 0 0
14091 Charge transfer driven emergent phenomena in o... complex oxides exhibit many intriguing phenome... 0 1 0 0 0 0
14092 Duality of Graphical Models and Tensor Networks article show duality tensor networks undirecte... 1 0 1 1 0 0
14093 A further generalization of the Emden-Fowler e... generalization emdenfowler equation presented ... 0 0 1 0 0 0
14094 Data Interpolations in Deep Generative Models ... exploiting deep generative models remarkable a... 1 0 0 1 0 0
14095 Effect of Surfaces on Amyloid Fibril Formation using atomic force microscopy afm investigated... 0 1 0 0 0 0
14096 Lie Transform Based Polynomial Neural Networks... article discuss architecture polynomial neural... 1 0 0 0 0 0
14097 Large deformations of the Tracy-Widom distribu... analyze lefttail asymptotics deformed tracywid... 0 1 1 0 0 0
14098 Too Trivial To Test? An Inverse View on Defect... background test resources usually limited ther... 1 0 0 0 0 0
14099 Dynamical phase transitions in sampling comple... make case studying complexity approximately si... 1 1 0 0 0 0
14100 Local asymptotic equivalence of pure quantum s... quantum technology increasingly relying specia... 0 0 1 1 0 0
14101 Training DNNs with Hybrid Block Floating Point wide adoption dnns given birth unrelenting com... 1 0 0 1 0 0
14102 Unified Spectral Clustering with Optimal Graph spectral clustering found extensive use many a... 1 0 0 1 0 0
14103 The Effect of Mixing on the Observed Metallici... measurements highvelocity clouds metallicities... 0 1 0 0 0 0
14104 Semi-Supervised Generation with Cluster-aware ... deep generative models trained large amounts u... 1 0 0 1 0 0
14105 A PAC-Bayesian Approach to Spectrally-Normaliz... present generalization bound feedforward neura... 1 0 0 0 0 0
14106 Tidal viscosity of Enceladus preceding paper efroimsky derived expression t... 0 1 0 0 0 0
14107 MOROCO: The Moldavian and Romanian Dialectal C... work introduce moldavian romanian dialectal co... 1 0 0 0 0 0
14108 Linearized Einstein's field equations einstein field equations weakfield approximati... 0 1 0 0 0 0
14109 Treelogy: A Novel Tree Classifier Utilizing De... propose novel tree classification system calle... 1 0 0 0 0 0
14110 Simulation and stability analysis of oblique s... investigate flow instability created oblique s... 0 1 0 0 0 0
14111 Notes on rate equations in nonlinear continuum... paper gives introduction rate equations nonlin... 1 1 0 0 0 0
14112 Streaming PCA and Subspace Tracking: The Missi... many modern applications science engineering d... 0 0 0 1 0 0
14113 Do altmetrics correlate with the quality of pa... study address question whether extent respecti... 1 0 0 0 0 0
14114 Introduction to the declination function for g... declination quantitative method identifying po... 0 0 0 1 0 0
14115 TFDASH: A Fairness, Stability, and Efficiency ... dynamic adaptive streaming http dash recently ... 1 0 0 0 0 0
14116 Predicting language diversity with complex net... evolution propagation worlds languages complex... 1 1 0 0 0 0
14117 The paradox of Vito Volterra's predator-prey m... article dedicated late giorgio israel rsum aim... 0 0 0 0 1 0
14118 Distributive Minimization Comprehensions and t... categorical point view minimization subrecursi... 1 0 1 0 0 0
14119 On the differentiability of hairs for Zorich maps devaney krych showed exponential family lambda... 0 0 1 0 0 0
14120 On the Real-time Vehicle Placement Problem motivated ridesharing platforms efforts reduce... 1 0 0 0 0 0
14121 Energy Harvesting Communication Using Finite-C... modern systems increasingly rely energy harves... 1 0 1 0 0 0
14122 A Novel Algorithm for Optimal Electricity Pric... evolution smart microgrid demandresponse chara... 1 0 0 0 0 0
14123 A Reinforcement Learning Approach to Jointly A... premise autonomous vehicles must optimize comm... 1 0 0 0 0 0
14124 Differentially Private High Dimensional Sparse... paper study problem estimating covariance matr... 1 0 0 1 0 0
14125 Stochastic Functional Gradient Path Planning i... planning safe paths major building block robot... 1 0 0 0 0 0
14126 MM2RTB: Bringing Multimedia Metrics to Real-Ti... display advertising users online ad experience... 1 0 0 0 0 0
14127 Generic coexistence of Fermi arcs and Dirac co... hallmark weyl semimetals existence open consta... 0 1 0 0 0 0
14128 Superfluid Field response to Edge dislocation ... study dynamic response superfluid field moving... 0 1 0 0 0 0
14129 Koopman Operator Spectrum and Data Analysis examine spectral operatortheoretic properties ... 0 1 1 0 0 0
14130 Exploiting Physical Dynamics to Detect Actuato... mobile robots cyberphysical systems cyberspace... 1 0 0 0 0 0
14131 Unsupervised Neural Machine Translation spite recent success neural machine translatio... 1 0 0 0 0 0
14132 Geometric Methods for Robust Data Analysis in ... machine learning data analysis finds scientifi... 1 0 0 0 0 0
14133 Modules Over the Ring of Ponderation functions... paper introduce new modules ring ponderation f... 0 0 1 0 0 0
14134 Strict monotonicity of principal eigenvalues o... paper studies eigenvalue problem mathbbrd clas... 0 0 1 0 0 0
14135 Best Practices for Applying Deep Learning to N... report targeted groups subject matter experts ... 1 0 0 0 0 0
14136 Precision Interfaces building interactive tools support data analys... 1 0 0 0 0 0
14137 Gaussian Approximation of a Risk Model with St... consider classical risk process arrival claims... 0 0 0 0 0 1
14138 Data Modelling for the Evaluation of Virtualiz... conduct realistic evaluation virtualized netwo... 1 0 0 0 0 0
14139 Understanding Negations in Information Process... information systems experience evergrowing vol... 1 0 0 1 0 0
14140 A study of sliding motion of a solid body on a... recent studies show interest materials asymmet... 0 1 0 0 0 0
14141 Fisher information matrix of binary time series common approach analyzing categorical correlat... 0 0 1 1 0 0
14142 A Fourier analytic approach to inhomogeneous D... paper study inhomogeneous diophantine approxim... 0 0 1 0 0 0
14143 Screening in perturbative approaches to LSS specific value cosmological constant lambda ac... 0 1 0 0 0 0
14144 Thin films with precisely engineered nanostruc... synthesis rationally designed nanostructured m... 0 1 0 0 0 0
14145 End-to-End Network Delay Guarantees for Real-T... propose novel framework reduces management int... 1 0 0 0 0 0
14146 Efficient cold outflows driven by cosmic rays ... present semianalytical models galactic outflow... 0 1 0 0 0 0
14147 On the Effectiveness of Discretizing Quantitat... learning algorithms learn linear models often ... 1 0 0 0 0 0
14148 Kustaanheimo-Stiefel transformation with an ar... kustaanheimostiefel ks transformation depends ... 0 0 1 0 0 0
14149 A dynamic game approach to distributionally ro... paper presents new safety specification method... 1 0 1 0 0 0
14150 Entity Linking for Queries by Searching Wikipe... present simple yet effective approach linking ... 1 0 0 0 0 0
14151 Towards personalized human AI interaction - ad... reinforcement learning ai commonly uses reward... 1 0 0 1 0 0
14152 Relational recurrent neural networks memorybased neural networks model temporal dat... 0 0 0 1 0 0
14153 A Scalable Discrete-Time Survival Model for Ne... currently great interest applying neural netwo... 0 0 0 1 0 0
14154 A driven-dissipative spin chain model based on... infinite chain drivendissipative condensate sp... 0 1 0 0 0 0
14155 Projected Primal-Dual Gradient Flow of Augment... paper projected primaldual gradient flow augme... 0 0 1 0 0 0
14156 A Short Note on Almost Sure Convergence of Bay... although significant literature asymptotic the... 0 0 1 1 0 0
14157 Rainbow matchings in properly-coloured multigr... aharoni berger conjectured bipartite multigrap... 1 0 0 0 0 0
14158 Recursive computation of the invariant distrib... paper provides general abstract approach appro... 0 0 1 0 0 0
14159 Secondary resonances and the boundary of effec... one interesting features libration domain coor... 0 1 0 0 0 0
14160 Qualitative Measurements of Policy Discrepancy... deep qnetwork dqn returnbased reinforcement le... 0 0 0 1 0 0
14161 Probabilistic Constraints on the Mass and Comp... recent studies regarding habitability observab... 0 1 0 0 0 0
14162 Explicit Salem sets, Fourier restriction, and ... exhibit first explicit examples salem sets mat... 0 0 1 0 0 0
14163 Tunneling of the hard-core model on finite tri... consider hardcore model finite triangular latt... 0 1 1 0 0 0
14164 Spectral State Compression of Markov Processes model reduction markov process basic problem m... 0 0 0 1 0 0
14165 Multi-band characterization of the hot Jupiter... carried campaign characterize hot jupiters was... 0 1 0 0 0 0
14166 Non-Fermi liquid at the FFLO quantum critical ... superconductor subjected strong inplane magnet... 0 1 0 0 0 0
14167 Unsupervised Ensemble Regression consider regression problem labeled data obser... 1 0 0 1 0 0
14168 Accurate approximation of the distributions of... although poissonvoronoi diagrams interesting m... 0 0 0 1 0 0
14169 Flux-Stabilized Majorana Zero Modes in Coupled... one promising avenue study onedimensional topo... 0 1 0 0 0 0
14170 Nonlinear Kalman Filtering for Censored Observ... use kalman filtering well nonlinear extensions... 0 0 1 1 0 0
14171 Advances in Atomic Resolution In Situ Environm... advances atomic resolution situ environmental ... 0 1 0 0 0 0
14172 An improved high order finite difference metho... paper presents extension recently developed hi... 0 0 1 0 0 0
14173 Refined estimates for simple blow-ups of the s... work sharp compactness theorem yamabe problem ... 0 0 1 0 0 0
14174 The discrete logarithm problem over prime fiel... brief note connect discrete logarithm problem ... 1 0 1 0 0 0
14175 DGCNN: Disordered Graph Convolutional Neural N... convolutional neural networks cnns applied gra... 1 0 0 1 0 0
14176 Profile Estimation for Partial Functional Part... paper studies textitpartial functional partial... 0 0 1 1 0 0
14177 Optimal $k$-Coverage Charging Problem wireless rechargeable sensor networks consisti... 1 0 0 0 0 0
14178 Facebook's gender divide online social media information resources tran... 1 0 0 0 0 0
14179 Knowing the past improves cooperation in the f... cooperation cornerstone human evolutionary suc... 1 0 0 0 1 0
14180 BMO estimate of lacunary Fourier series on non... show classical equivalence bmo norm l norm lac... 0 0 1 0 0 0
14181 Multi-objective training of Generative Adversa... recent literature demonstrated promising resul... 1 0 0 1 0 0
14182 Application of Surface Coil for Nuclear Magnet... conduct comprehensive set tests performance su... 0 1 0 0 0 0
14183 A universal coarse K-theory paper construct equivariant coarse homology th... 0 0 1 0 0 0
14184 Parameters of Three Selected Model Galactic Po... paper continuation recent paper devoted refini... 0 1 0 0 0 0
14185 Giant Thermal Conductivity Enhancement in Mult... multilayer mos possesses highly anisotropic th... 0 1 0 0 0 0
14186 Interrogation of spline surfaces with applicat... novel surface interrogation technique proposed... 1 0 0 0 0 0
14187 On recursive computation of coprime factorizat... propose general computational procedures based... 1 0 1 0 0 0
14188 On Dark Matter Interactions with the Standard ... study electroweak scale dark matter dm whose i... 0 1 0 0 0 0
14189 Spin diffusion from an inhomogeneous quench in... generalised hydrodynamics predicts universal b... 0 1 0 0 0 0
14190 Morphological Simplification of Archaeological... propose employ scale spaces mathematical morph... 1 0 0 0 0 0
14191 A note on a separating system of rational inva... paper deals construction separating system rat... 0 0 1 0 0 0
14192 A Modality-Adaptive Method for Segmenting Brai... paper present method simultaneously segmenting... 0 0 0 1 0 0
14193 Protein Pattern Formation protein pattern formation essential spatial or... 0 0 0 0 1 0
14194 What do we need to build explainable AI system... artificial intelligence ai generally machine l... 1 0 0 1 0 0
14195 Targeted matrix completion matrix completion problem arises many dataanal... 1 0 0 1 0 0
14196 Coresets for Dependency Networks many applications infer structure probabilisti... 1 0 0 1 0 0
14197 Relative stability of a ferroelectric state in... influence bsite ion substitutions xbinatioxbat... 0 1 0 0 0 0
14198 Data-driven modelling and validation of aircra... paper presents exhaustive study arrivals proce... 0 0 0 1 0 0
14199 Exact evolution equation for the effective pot... derive new exact evolution equation scale depe... 0 1 0 0 0 0
14200 Properties of Quasi-Assouad dimension shown controlled moran constructions mathbbr i... 0 0 1 0 0 0
14201 PFAx: Predictable Feature Analysis to Perform ... predictable feature analysis pfa richthofer wi... 1 0 0 0 0 0
14202 Multiplex decomposition of non-Markovian dynam... elements composing complex systems usually int... 0 1 0 1 0 0
14203 Model of knowledge transfer within an organisa... many studies show acquisition knowledge key bu... 1 1 0 0 0 0
14204 Efficient Propagation of Uncertainties in Manu... uncertainty propagation large scale discrete s... 0 0 0 1 0 0
14205 Semi-automated Signal Surveying Using Smartpho... location fingerprinting locates devices based ... 1 0 0 0 0 0
14206 On the n-th row of the graded Betti table of a... prove explicit formula first nonzero entry nth... 0 0 1 0 0 0
14207 Topological conjugacy of topological Markov sh... characterize topologically conjugate twosided ... 0 0 1 0 0 0
14208 StealthDB: a Scalable Encrypted Database with ... encrypted database systems provide great metho... 1 0 0 0 0 0
14209 On the conformal duality between constant mean... main aim survey paper gather together results ... 0 0 1 0 0 0
14210 Making Sense of Vision and Touch: Self-Supervi... contactrich manipulation tasks unstructured en... 1 0 0 0 0 0
14211 Positive solutions for nonlinear problems invo... let omegaleft abright subsetmathbbr min lleft ... 0 0 1 0 0 0
14212 Vortex lattices in binary Bose-Einstein conden... study structure stability vortex lattices twoc... 0 1 0 0 0 0
14213 Regression estimator for the tail index estimating tail index parameter one primal obj... 0 0 1 1 0 0
14214 Active modulation of electromagnetically induc... metamaterial analogues electromagnetically ind... 0 1 0 0 0 0
14215 The continuity equation with cusp singularities paper study special case completion cusp khler... 0 0 1 0 0 0
14216 Simplicial Structures for Higher Order Hochsch... dgeq study simplicial structure chain complex ... 0 0 1 0 0 0
14217 Destination-Directed Trajectory Modeling and P... problems information destination moving object... 1 0 0 0 0 0
14218 Monadic Second Order Logic with Measure and Ca... investigate extension monadic second order log... 1 0 1 0 0 0
14219 Two-point correlation in wall turbulence accor... constantstress layer wall turbulence twopoint ... 0 1 0 0 0 0
14220 Variational problems with long-range interaction consider class variational problems densities ... 0 0 1 0 0 0
14221 On Breast Cancer Detection: An Application of ... paper presents comparison six machine learning... 1 0 0 1 0 0
14222 Loss Landscapes of Regularized Linear Autoenco... autoencoders deep learning model representatio... 1 0 0 1 0 0
14223 Enduring Lagrangian coherence of a Loop Curren... ocean flows routinely inferred lowresolution s... 0 1 0 0 0 0
14224 Nonparametric inference for continuous-time ev... flexible approach modeling dynamic event count... 0 0 1 1 0 0
14225 Optimal Pricing-Based Edge Computing Resource ... core issue blockchain mining requires solving ... 1 0 0 0 0 0
14226 Automorphic vector bundles with global section... general conjecture stated cone automorphic vec... 0 0 1 0 0 0
14227 Composition and decomposition of GANs work propose compositiondecomposition framewor... 1 0 0 1 0 0
14228 Quasiconformal mappings and Hölder continuity establish every kquasiconformal mapping w unit... 0 0 1 0 0 0
14229 Boundedness of averaging operators on geometri... prove averaging operators uniformly bounded l ... 0 0 1 0 0 0
14230 Efficient Low-Order Approximation of First-Pas... consider problem computing firstpassage time d... 0 1 0 1 0 0
14231 Delayed avalanches in Multi-Pixel Photon Counters hamamatsu photonics introduced new generation ... 0 1 0 0 0 0
14232 Dynamic Deep Neural Networks: Optimizing Accur... introduce dynamic deep neural networks dnn new... 1 0 0 1 0 0
14233 Linear-Cost Covariance Functions for Gaussian ... gaussian random fields grf fundamental stochas... 0 0 0 1 0 0
14234 Models of fault-tolerant distributed computati... computability power distributed computing mode... 1 0 1 0 0 0
14235 Erratum: Higher Order Elicitability and Osband... note corrects conditions proposition theorem i... 0 0 1 1 0 1
14236 Staging Human-computer Dialogs: An Application... demonstrate application futamura projections h... 1 0 0 0 0 0
14237 Enhancing synchronization in chaotic oscillato... report enhancing complete synchronization iden... 0 1 0 0 0 0
14238 Compressed Sensing with Deep Image Prior and L... propose novel method compressed sensing recove... 0 0 0 1 0 0
14239 Beamforming and Power Splitting Designs for AN... paper energy harvesting scheme multiuser multi... 1 0 0 0 0 0
14240 Spectral Properties of Tensor Products of Chan... investigate spectral properties tensor product... 0 0 1 0 0 0
14241 Integral Chow motives of threefolds with $K$-m... prove smooth projective algebraic variety dime... 0 0 1 0 0 0
14242 Efficient Recurrent Neural Networks using Stru... recurrent neural networks rnns becoming increa... 1 0 0 1 0 0
14243 Neural Architecture Search: A Survey deep learning enabled remarkable progress last... 0 0 0 1 0 0
14244 High Efficiency Power Side-Channel Attack Immu... advancement technology last decades leading wi... 1 0 0 0 0 0
14245 Real-time monitoring of the structure of ultra... work thin magnetite films deposited srtio via ... 0 1 0 0 0 0
14246 Harnessing Flexible and Reliable Demand Respon... demand response dr costeffective environmental... 0 0 1 0 0 0
14247 GraphGAN: Graph Representation Learning with G... goal graph representation learning embed verte... 1 0 0 1 0 0
14248 Accelerating Stochastic Gradient Descent For L... widespread sentiment possible effectively util... 0 0 1 1 0 0
14249 Topological Kondo insulators in one dimension:... study means densitymatrix renormalization grou... 0 1 0 0 0 0
14250 A novel improved fuzzy support vector machine ... application fuzzy support vector machine stock... 0 0 0 1 0 1
14251 Deformed Heisenberg Algebra with a minimal len... review essentials formalism quantum mechanics ... 0 1 0 0 0 0
14252 Protonation induced high-Tc phases in iron-bas... chemical substitution growth wellestablished m... 0 1 0 0 0 0
14253 Spectral Estimation of Plasma Fluctuations I: ... relative root mean squared errors rmse nonpara... 0 0 0 1 0 0
14254 Angles between curves in metric measure spaces goal paper study angle two curves framework me... 0 0 1 0 0 0
14255 A Hybrid Multiscale Model for Cancer Invasion ... ability locally degrade extracellular matrix e... 0 0 0 0 1 0
14256 Differential quadrature method for space-fract... mathematical physics spacefractional diffusion... 0 0 1 0 0 0
14257 Positivstellensatzë for noncommutative rationa... derive positivstellensatz noncommutative ratio... 0 0 1 0 0 0
14258 Cohesion-based Online Actor-Critic Reinforceme... wake vast population smart device users worldw... 1 0 0 0 0 0
14259 The minus order and range additivity study minus order algebra bounded linear opera... 0 0 1 0 0 0
14260 Rigidity-induced scale invariance in polymer e... dynamics fully flexible polymer ejecting capsi... 0 1 0 0 0 0
14261 A Cloud-based Service for Real-Time Performanc... created cloudbased service allows end users ru... 1 0 0 0 0 0
14262 On hyperballeans of bounded geometry ballean coarse structure set endowed family su... 0 0 1 0 0 0
14263 Bayesian model selection consistency and oracl... article investigate large sample properties mo... 0 0 1 1 0 0
14264 ChimpCheck: Property-Based Randomized Test Gen... consider problem generating relevant execution... 1 0 0 0 0 0
14265 Mathematical analysis of pulsatile flow, vorte... dynamics along particle trajectories axisymmet... 0 0 1 0 0 0
14266 Resilient Feedback Controller Design For Linea... paper resilient controller designed linear tim... 1 0 0 0 0 0
14267 Integrability of dispersionless Hirota type eq... prove integrability dispersionless hirota type... 0 1 1 0 0 0
14268 Optimal stopping via reinforced regression note propose new approach towards solving nume... 0 0 0 1 0 0
14269 Least informative distributions in Maximum q-l... use maximum qloglikelihood estimation least in... 0 0 1 1 0 0
14270 Visual analytics for loan guarantee network ri... groups enterprises guarantee form complex guar... 1 0 0 0 0 0
14271 Pronunciation recognition of English phonemes ... vocal joystick vowel corpus washington univers... 1 0 0 0 0 0
14272 Vulnerability to pandemics in a rapidly urbani... examine salient trends influenza pandemics aus... 0 0 0 0 1 0
14273 Theoretical aspects of microscale acoustofluidics henrik bruus professor labchip systems theoret... 0 0 0 0 1 0
14274 Context Generation from Formal Specifications ... analysis tools like abstract interpreters symb... 1 0 0 0 0 0
14275 Gradient Descent with Random Initialization: F... paper considers problem solving systems quadra... 0 0 0 1 0 0
14276 Unifying and Generalizing Methods for Removing... unwanted variation including hidden confoundin... 0 0 1 1 0 0
14277 Quantum-Accurate Molecular Dynamics Potential ... purpose short contribution report development ... 0 1 0 0 0 0
14278 An empirical evaluation of alternative methods... bandt pompe introduced permutation entropy tim... 0 0 0 1 0 0
14279 MIMIC-CXR: A large publicly available database... chest radiography extremely powerful imaging m... 1 0 0 0 0 0
14280 Convolutional Neural Networks for Page Segment... paper presents convolutional neural network cn... 1 0 0 1 0 0
14281 Localized Quantitative Criteria for Equidistri... let xnninfty sequence torus mathbbt normalized... 0 0 1 0 0 0
14282 Disturbance propagation, inertia location and ... conventional generators power grids steadily s... 1 0 0 0 0 0
14283 Investigating the Characteristics of One-Sided... onesided matching mechanisms fundamental assig... 1 0 0 0 0 0
14284 MIDI-VAE: Modeling Dynamics and Instrumentatio... introduce midivae neural network model based v... 1 0 0 0 0 0
14285 A General Deep Learning Framework for Structur... work present gumbel graph network modelfree de... 1 0 0 0 0 0
14286 Disorder robustness and protection of Majorana... majorana bound states mbs wellestablished clea... 0 1 0 0 0 0
14287 Characterisation of novel prototypes of monoli... upgrade atlas experiment high luminosity phase... 0 1 0 0 0 0
14288 End-to-end DNN Based Speaker Recognition Inspi... recently several endtoend speaker verification... 1 0 0 0 0 0
14289 Motivic infinite loop spaces prove recognition principle motivic infinite p... 0 0 1 0 0 0
14290 Dimer correlation amplitudes and dimer excitat... correlation functions dimer operators product ... 0 1 0 0 0 0
14291 Spectrum Access In Cognitive Radio Using A Two... advent th generation wireless standards increa... 1 0 0 0 0 0
14292 Charge transport through a single molecule of ... fullerenes attracted interest possible applica... 0 1 0 0 0 0
14293 Blind Spots for Direct Detection with Simplifi... using existing simplified model framework buil... 0 1 0 0 0 0
14294 Experiments of posture estimation on vehicles ... paper study methods estimate drivers posture v... 1 0 0 0 0 0
14295 Matrix Completion Based Localization in the In... order make proper reaction collected informati... 1 0 0 0 0 0
14296 Hypersurfaces with nonnegative Ricci curvature... based properties nsubharmonic functions show c... 0 0 1 0 0 0
14297 Achieving the time of $1$-NN, but the accuracy... propose simple approach given distributed comp... 0 0 1 1 0 0
14298 A note on unitizations of generalized effect a... forgetful functor category generalized effect ... 0 0 1 0 0 0
14299 Real and Complex Integrals on Spheres and Balls evaluate integrals certain polynomials spheres... 0 0 1 0 0 0
14300 Spin dynamics of FeGa$_{3-x}$Ge$_x$ studied by... intermetallic semiconductor fega acquires itin... 0 1 0 0 0 0
14301 Topology and edge modes in quantum critical ch... show topology protect exponentially localized ... 0 1 0 0 0 0
14302 Incompressible fillings of manifolds find boundaries borelserre compactifications l... 0 0 1 0 0 0
14303 Multichannel Attention Network for Analyzing V... public speaking important aspect human communi... 1 0 0 0 0 0
14304 The Łojasiewicz Exponent via The Valuative Ham... let k algebraically closed field characteristi... 0 0 1 0 0 0
14305 Science and its significant other: Representin... bibliometrics offers particular representation... 1 0 0 0 0 0
14306 Referenceless Quality Estimation for Natural L... traditional automatic evaluation measures natu... 1 0 0 0 0 0
14307 Regularisation of Neural Networks by Enforcing... investigate effect explicitly enforcing lipsch... 0 0 0 1 0 0
14308 HiNet: Hierarchical Classification with Neural... traditionally classifying large hierarchical l... 1 0 0 0 0 0
14309 Multiscale permutation entropy analysis of las... experimentally quantified temporal structural ... 0 1 0 0 0 0
14310 Improving OpenCL Performance by Specializing C... automatic compiler phase selectionordering tra... 1 0 0 0 0 0
14311 Shot noise and biased tracers: a new look at t... shot noise important ingredient measurement th... 0 1 0 0 0 0
14312 On the maximal directional Hilbert transform i... establish sharp growth rate terms cardinality ... 0 0 1 0 0 0
14313 MOLIERE: Automatic Biomedical Hypothesis Gener... hypothesis generation becoming crucial timesav... 1 0 0 1 0 0
14314 Lower bounds for several online variants of bi... consider several previously studied online var... 1 0 0 0 0 0
14315 Query-limited Black-box Attacks to Classifiers study blackbox attacks machine learning classi... 1 0 0 1 0 0
14316 Efficient Kinematic Planning for Mobile Manipu... work addresses problem kinematic trajectory pl... 1 0 0 0 0 0
14317 Measuring Integrated Information: Comparison o... integrated information theory iit prominent th... 0 0 0 0 1 0
14318 Volumes of $\mathrm{SL}_n\mathbb{C}$-represent... let compact oriented threemanifold whose inter... 0 0 1 0 0 0
14319 Learning in Variational Autoencoders with Kull... paper propose two novel bounds loglikelihood b... 0 0 0 1 0 0
14320 Design and demonstration of an acoustic right-... paper design fabricate experimentally characte... 0 1 0 0 0 0
14321 FBG-Based Position Estimation of Highly Deform... conventional shape sensing techniques using fi... 1 0 0 0 0 0
14322 Small-signal Stability Analysis and Performanc... distributed control potential solution decreas... 1 0 0 0 0 0
14323 Agent Failures in All-Pay Auctions allpay auctions common mechanism various human... 1 0 0 0 0 0
14324 Practical volume computation of structured con... examine volume computation generaldimensional ... 0 0 0 0 0 1
14325 Charting the replica symmetric phase diluted meanfield models spin systems whose ge... 1 1 0 0 0 0
14326 Adaptive Clustering through Semidefinite Progr... analyze clustering problem flexible probabilis... 0 0 1 1 0 0
14327 Improving pairwise comparison models using Emp... comparison data arises many important contexts... 1 0 0 1 0 0
14328 Single Element Nonlinear Chimney Model generalize chimney model introducing nonlinear... 0 1 0 0 0 0
14329 VOEvent Standard for Fast Radio Bursts fast radio bursts new class transient radio ph... 0 1 0 0 0 0
14330 Fine-tuning deep CNN models on specific MS COC... finetuning deep convolutional neural network c... 1 0 0 0 0 0
14331 On the Throughput of Channels that Wear Out work investigates fundamental limits communica... 1 0 1 0 0 0
14332 Reply to Marchildon: absorption and non-unitar... rebut erroneous statements attempt clear misun... 0 1 0 0 0 0
14333 Interaction-induced transition in the quantum ... demonstrate weakly disordered metal shortrange... 0 1 0 0 0 0
14334 Epidemiological impact of waning immunization ... epidemiological sirv model based study designe... 0 0 0 0 1 0
14335 Waves of seed propagation induced by delayed a... study model seed dispersal considers inclusion... 0 1 0 0 0 0
14336 Sobolev GAN propose new integral probability metric ipm di... 1 0 0 1 0 0
14337 Understanding Human Motion and Gestures for Un... paper present number robust methodologies unde... 1 0 0 0 0 0
14338 One-loop binding corrections to the electron $... calculate oneloop electron selfenergy correcti... 0 1 0 0 0 0
14339 Periodic solutions of Euler-Lagrange equations... paper consider problem finding periodic soluti... 0 0 1 0 0 0
14340 Dehn functions of subgroups of right-angled Ar... show positive integer k exist rightangled arti... 0 0 1 0 0 0
14341 Recovering Sparse Nonnegative Signals via Non-... many real world practical problems formulated ... 0 0 1 0 0 0
14342 Estimating Local Interactions Among Many Agent... various economic environments people observe s... 0 0 0 1 0 0
14343 Multimodal speech synthesis architecture for u... paper proposes new architecture speaker adapta... 1 0 0 1 0 0
14344 Analytical history purpose note explain analytical history modula... 0 1 0 0 0 0
14345 Control Synthesis for Multi-Agent Systems unde... paper presents framework automatic synthesis c... 1 0 0 0 0 0
14346 Eulerian and Lagrangian solutions to the conti... first part paper establish uniqueness result c... 0 1 1 0 0 0
14347 Star formation, supernovae, iron, and alpha: c... recent versions observed cosmic starformation ... 0 1 0 0 0 0
14348 ALFABURST: A commensal search for Fast Radio B... alfaburst searching fast radio bursts frbs com... 0 1 0 0 0 0
14349 Mechanical properties and thermal conductivity... graphitic carbon nitride nanosheets among attr... 0 1 0 0 0 0
14350 Green's Functions of Partial Differential Equa... paper develop way obtaining greens functions p... 0 0 1 0 0 0
14351 Zero-Modified Poisson-Lindley distribution wit... main object article present extension zeroinfl... 0 0 0 1 0 0
14352 Phase-Retrieval as a Regularization Problem recently shown phase retrieval imaging sample ... 0 0 1 0 0 0
14353 Comparing simulations and test data of a radia... vis instrument board euclid mission weaklensin... 0 1 0 0 0 0
14354 A generalization of crossing families set points plane emphcrossing family set line ... 1 0 0 0 0 0
14355 Uncovering Offshore Financial Centers: Conduit... multinational corporations use highly complex ... 0 1 0 0 0 0
14356 Predicting radio emission from the newborn hot... magnetised exoplanets expected emit radio freq... 0 1 0 0 0 0
14357 Redshift determination through weighted phase ... present new algorithm time complexity log n de... 0 1 0 0 0 0
14358 Nonautonomous Dynamics of Acute Cell Injury clinicallyrelevant forms acute cell injury inc... 0 0 0 0 1 0
14359 Cavity-enhanced photoionization of an ultracol... twostep photoionization strategy ultracold rub... 0 1 0 0 0 0
14360 Fusion rule algebras related to a pair of comp... purpose present paper investigate fusion rule ... 0 0 1 0 0 0
14361 Matricial Canonical Moments and Parametrizatio... paper study moment sequences matrixvalued meas... 0 0 1 0 0 0
14362 Embedding Deep Networks into Visual Explanations paper propose novel explanation module explain... 1 0 0 0 0 0
14363 Information Diffusion in Social Networks: Frie... dynamic models statistical inference diffusion... 1 0 0 0 0 0
14364 Really should we pruning after model be totall... pretraining models pruning algorithms plays im... 1 0 0 0 0 0
14365 Adversarial Networks for the Detection of Aggr... semantic segmentation constitutes integral par... 1 0 0 0 0 0
14366 A class of singular integrals associated with ... main purpose paper study multiparameter singul... 0 0 1 0 0 0
14367 Surge-like oscillations above sunspot light br... highresolution observations solar chromosphere... 0 1 0 0 0 0
14368 A new Composition-Diamond lemma for dialgebras let dilangle xrangle free dialgebra field gene... 0 0 1 0 0 0
14369 A Remote Interface for Live Interaction with O... discrete event simulators omnet provide fast c... 1 0 0 0 0 0
14370 Dynamic time warping distance for message prop... social messages classification research domain... 1 0 0 1 0 0
14371 Proceedings of the 3rd International Workshop ... rd international workshop overlay architecture... 1 0 0 0 0 0
14372 Simultaneous Modeling of Multiple Complication... type diabetes mellitus tdm chronic disease oft... 0 0 0 1 0 0
14373 On a topology property for moduli space of Kap... article study kapustinwitten equations closed ... 0 0 1 0 0 0
14374 Neural Semantic Parsing over Multiple Knowledg... fundamental challenge developing semantic pars... 1 0 0 0 0 0
14375 Self-Committee Approach for Image Restoration ... many discriminative learning methods using con... 1 0 0 0 0 0
14376 Quantifying Differential Privacy in Continuous... differential privacy dp received increasing at... 1 0 0 0 0 0
14377 A Sufficient Condition for Nilpotency of the N... let g finite group property ab powers deltacom... 0 0 1 0 0 0
14378 Monte Carlo Estimation of the Density of the S... study unbiased estimator density sum random va... 0 0 1 1 0 0
14379 Transferable neural networks for enhanced samp... variational autoencoder frameworks demonstrate... 0 0 0 1 1 0
14380 Collisional stripping of planetary crusts geochemical studies planetary accretion evolut... 0 1 0 0 0 0
14381 N-GCN: Multi-scale Graph Convolution for Semi-... graph convolutional networks gcns shown signif... 1 0 0 1 0 0
14382 Sparse Kneser graphs are Hamiltonian integers kgeq ngeq k kneser graph knk graph wh... 1 0 0 0 0 0
14383 Fixed points of morphisms among binary general... introduce class fixed points primitive morphis... 0 0 1 0 0 0
14384 Dimension of the space of conics on Fano hyper... r beheshti showed smooth fano hypersurface x d... 0 0 1 0 0 0
14385 Automorphisms of Partially Commutative Groups ... structure certain subgroup automorphism group ... 0 0 1 0 0 0
14386 Testing Global Constraints every constraint programming cp solver exposes... 1 0 0 0 0 0
14387 Restricted Boltzmann Machines: Introduction an... restricted boltzmann machine network stochasti... 0 0 0 1 0 0
14388 Learning and Visualizing Localized Geometric F... convolutional neural networks dcnn used object... 1 0 0 1 0 0
14389 Note on regions containing eigenvalues of a ma... excluding regions eigenvalue matrix contained ... 0 0 1 0 0 0
14390 Abstract Family-based Model Checking using Mod... variational systems allow effective building m... 1 0 0 0 0 0
14391 Nonparametric Shape-restricted Regression consider problem nonparametric regression shap... 0 0 1 1 0 0
14392 Emergence of Invariance and Disentanglement in... using established principles statistics inform... 1 0 0 1 0 0
14393 Fracton topological order via coupled layers work develop coupled layer construction fracto... 0 1 0 0 0 0
14394 Local Asymptotic Normality of Infinite-Dimensi... study local asymptotic normality mestimates co... 0 0 1 1 0 0
14395 Polarization exchange of optical eigenmode pai... polarization exchange effect twistednematic fa... 0 1 0 0 0 0
14396 Galaxy Protoclusters as Drivers of Cosmic Star... presentday clusters massive halos containing m... 0 1 0 0 0 0
14397 Universality and scaling laws in the cascading... cascading failures may lead dramatic collapse ... 1 1 0 0 0 0
14398 Vector-valued Jack Polynomials and Wavefunctio... hamiltonian quantum calogerosutherland model n... 0 0 1 0 0 0
14399 Wirtinger systems of generators of knot groups define wirtinger number link invariant closely... 0 0 1 0 0 0
14400 Labeled Memory Networks for Online Model Adapt... augmenting neural network memory grow without ... 1 0 0 1 0 0
14401 Perturbative approach to weakly driven many-pa... develop liouville perturbation theory weakly d... 0 1 0 0 0 0
14402 Smart Mining for Deep Metric Learning solve deep metric learning problems producing ... 1 0 0 0 0 0
14403 Quantum phase transitions of a generalized com... consider class onedimensional compass models s... 0 1 0 0 0 0
14404 A blowup algebra of hyperplane arrangements shown orlikterao algebra graded isomorphic spe... 0 0 1 0 0 0
14405 Object Region Mining with Adversarial Erasing:... investigate principle way progressively mine d... 1 0 0 0 0 0
14406 Streaming Binary Sketching based on Subspace T... paper address problem learning compact similar... 1 0 0 0 0 0
14407 Improving hot-spot pressure for ignition in hi... novel capsule target design improve hotspot pr... 0 1 0 0 0 0
14408 Cell-to-cell variation sets a tissue-rheology-... single cell senses chemical gradient chemotaxe... 0 1 0 0 0 0
14409 Languages of Play: Towards semantic foundation... formal models games help us account predict be... 1 0 0 0 0 0
14410 Hybrid Normed Ideal Perturbations of n-tuples ... hybrid normed ideal perturbations ntuples oper... 0 0 1 0 0 0
14411 Global behaviour of radially symmetric solutio... paper concerned radially symmetric solutions s... 0 0 1 0 0 0
14412 On the Total Forcing Number of a Graph let g simple finite graph without isolated ver... 0 0 1 0 0 0
14413 Brief Notes on Hard Takeoff, Value Alignment, ... make basic observations hard takeoff value ali... 1 0 0 0 0 0
14414 Convolutional Neural Networks In Classifying C... dna methylation extensively studied epigenetic... 0 0 0 1 1 0
14415 Persistent Monitoring of Dynamically Changing ... consider problem planning closed walk mathcal ... 1 0 0 0 0 0
14416 Almost sharp nonlinear scattering in one-dimen... study decay small solutions borninfeld equatio... 0 0 1 0 0 0
14417 Life efficiency does not always increase with ... exist general positive correlation important l... 0 1 0 0 0 0
14418 Molecular simulations of entangled defect stru... investigate defect structures forming around t... 0 1 0 0 0 0
14419 Quasi Maximum-Likelihood Estimation of Dynamic... paper establishes almost sure convergence asym... 0 0 1 1 0 0
14420 Disunited Nations? A Multiplex Network Approac... paper contributes emerging literature models v... 1 0 0 0 0 0
14421 Magnetic phase diagram of the iron pnictides i... investigate impact spin anisotropic interactio... 0 1 0 0 0 0
14422 Algorithms and Bounds for Very Strong Rainbow ... wellstudied coloring problem assign colors edg... 1 0 0 0 0 0
14423 Quantile function expansion using regularly va... present simple result allows us evaluate asymp... 0 0 1 1 0 0
14424 Identification of Key Proteins Involved in Axo... axon guidance crucial process growth central p... 0 0 0 0 1 0
14425 Last-Iterate Convergence: Zero-Sum Games and C... motivated applications game theory optimizatio... 0 0 0 1 0 0
14426 The Lifetimes of Phases in High-Mass Star-Form... highmass stars form within star clusters dense... 0 1 0 0 0 0
14427 Null controllability of a population dynamics ... paper deal null controllability population dyn... 0 0 1 0 0 0
14428 ICLR Reproducibility Challenge Report (Padam :... work part iclr reproducibility challenge try r... 1 0 0 1 0 0
14429 Robust Bayes-Like Estimation: Rho-Bayes estima... consider problem estimating joint distribution... 0 0 1 1 0 0
14430 Nonlinear demixed component analysis for neura... introduce extension demixed principal componen... 0 0 0 0 1 0
14431 Stability of semi-wavefronts for delayed react... paper deals asymptotic behavior solutions dela... 0 0 1 0 0 0
14432 An End-to-End Approach to Natural Language Obj... propose endtoend approach natural language obj... 1 0 0 0 0 0
14433 Using Rule-Based Labels for Weak Supervised Le... access large datasets deep neural networks dnn... 1 0 0 1 0 0
14434 Intelligent Sensor Based Bayesian Neural Netwo... objective paper develop artificial neural netw... 1 0 0 0 0 0
14435 The infinite Fibonacci groups and relative asp... prove generalised fibonacci group frn infinite... 0 0 1 0 0 0
14436 Representations of Polynomial Rota-Baxter Alge... rotabaxter operator algebraic abstraction inte... 0 0 1 0 0 0
14437 The extended ROSAT-ESO Flux-Limited X-ray Gala... mass function galaxy clusters sensitive tracer... 0 1 0 0 0 0
14438 An Optimized Pattern Recognition Algorithm for... advent largescale heterogeneous search engines... 1 0 0 0 0 0
14439 Uniform asymptotics as a stationary point appr... obtain rigorous uniform asymptotics particular... 0 0 1 0 0 0
14440 An SDP-Based Algorithm for Linear-Sized Spectr... undirected weighted graph gvew n vertices edge... 1 0 0 0 0 0
14441 Self-Adjusting Threshold Mechanism for Pixel D... readout chips hybrid pixel detectors use low p... 0 1 0 0 0 0
14442 Rotational inertia interface in a dynamic latt... paper presents novel analysis transmission pro... 0 1 0 0 0 0
14443 Low-frequency wide band-gap elastic/acoustic m... terms acousticelastic metamaterials describe c... 0 1 0 0 0 0
14444 Inertia-Constrained Pixel-by-Pixel Nonnegative... blind source separation common processing tool... 1 1 0 1 0 0
14445 Warped Product Pointwise Semi-slant Submanifol... recently chen j garay studied pointwise slant ... 0 0 1 0 0 0
14446 Bayesian Semi-supervised Learning with Graph G... propose dataefficient gaussian processbased ba... 1 0 0 1 0 0
14447 Knowledge Engineering for Hybrid Deductive Dat... modern knowledge base systems frequently need ... 1 0 0 0 0 0
14448 Satisfiability Bounds for ω-regular Properties... derive algorithm compute satisfiability bounds... 1 0 0 0 0 0
14449 On the relaxed mean-field stochastic control p... paper concerned optimal control problems syste... 0 0 1 0 0 0
14450 A New Point-set Registration Algorithm for Fin... novel minutiabased fingerprint matching algori... 1 0 0 0 0 0
14451 A Faster Solution to Smale's 17th Problem I: R... suppose ffldotsfn system random nvariate polyn... 1 0 0 0 0 0
14452 Making compression algorithms for Unicode text majority online content written languages engl... 1 0 1 0 0 0
14453 Adaptive Exact Learning of Decision Trees from... paper study adaptive learnability decision tre... 1 0 0 1 0 0
14454 Image denoising by median filter in wavelet do... details image noise may restored removing nois... 1 0 0 0 0 0
14455 Restoration of Images with Wavefront Aberrations contribution deals image restoration optical s... 1 1 0 0 0 0
14456 Controlling the shape of membrane protein poly... membrane proteins lipids selfassemble membrane... 0 1 0 0 0 0
14457 Realizing uniformly recurrent subgroups show every uniformly recurrent subgroup locall... 0 0 1 0 0 0
14458 A New Approximation Guarantee for Monotone Sub... monotone submodular function maximization appr... 1 0 0 0 0 0
14459 Electrode Reactions in Slowly Relaxing Media standard models reaction kinetics condensed ma... 0 1 0 0 0 0
14460 End-to-end 3D face reconstruction with deep ne... monocular facial shape reconstruction single f... 1 0 0 0 0 0
14461 Entanglement of photons in their dual wave-par... waveparticle duality fundamental description n... 0 1 0 0 0 0
14462 On Tensor Train Rank Minimization: Statistical... tensor train tt decomposition provides spaceef... 0 0 0 1 0 0
14463 Threshold fluctuations in a superconducting cu... calculate energy threshold fluctuation delta f... 0 1 0 0 0 0
14464 Transient phenomena in a three-layer waveguide... excitation waves threelayer acoustic wavegide ... 0 0 1 0 0 0
14465 Introducing symplectic billiards article introduce simple dynamical system call... 0 0 1 0 0 0
14466 Banchoff's sphere and branched covers over the... filling dehn surface manifold generically imme... 0 0 1 0 0 0
14467 The Impact of Social Curiosity on Information ... information spreading models consider individu... 1 1 0 0 0 0
14468 Decomposition of mean-field Gibbs distribution... show low complexity condition gradient hamilto... 0 0 1 1 0 0
14469 Analytic Discs and Uniform Algebras on Real-An... general conditions shown uniform algebra gener... 0 0 1 0 0 0
14470 Novel solid state vacuum quartz encapsulated g... report easy versatile route synthesis parent p... 0 1 0 0 0 0
14471 Twistors from Killing Spinors alias Radiation ... paper intended step killing spinor programme s... 0 0 1 0 0 0
14472 Table Space Designs For Implicit and Explicit ... one main advantages prolog potential implicit ... 1 0 0 0 0 0
14473 Evidence for triplet superconductivity near an... superconductivity recently observed cras helim... 0 1 0 0 0 0
14474 Singlet ground state in the spin-$1/2$ weakly ... present synthesis detailed investigation struc... 0 1 0 0 0 0
14475 Deep learning bank distress from news and nume... paper focus attention exploitation information... 1 0 0 1 0 0
14476 Theoretical studies of superconductivity in do... investigate superconductivity may exist doped ... 0 1 0 0 0 0
14477 On low for speed oracles relativizing computations turing machines orac... 1 0 1 0 0 0
14478 $\mbox{Rb}_{2}\mbox{Ti}_2\mbox{O}_{5-δ}$: A su... electrical conductivity high dielectric consta... 0 1 0 0 0 0
14479 LinNet: Probabilistic Lineup Evaluation Throug... teams possible lineups best chances opponents ... 0 0 0 1 0 0
14480 Observational Equivalence in System Estimation... observability complex systemsnetworks focus pa... 1 0 0 0 0 0
14481 Incremental Adversarial Domain Adaptation for ... continuous appearance shifts changes weather l... 1 0 0 1 0 0
14482 SAND: An automated VLBI imaging and analysing ... present implementation automated vlbi data red... 0 1 0 0 0 0
14483 Quench-induced entanglement and relaxation dyn... investigate time evolution towards asymptotic ... 0 1 0 0 0 0
14484 Coded Caching Schemes with Low Rate and Subpac... coded caching scheme effective technique incre... 1 0 0 0 0 0
14485 Multitask diffusion adaptation over networks w... online learning streaming data distributed col... 1 0 0 1 0 0
14486 Strong perpendicular magnetic anisotropy energ... report perpendicular magnetic anisotropy pma b... 0 1 0 0 0 0
14487 Covering Groups of Nonconnected Topological Gr... investigate universal cover topological group ... 0 0 1 0 0 0
14488 Polarization properties of turbulent synchrotr... synchrotron emitting bubbles arise outflow com... 0 1 0 0 0 0
14489 Efimov Effect in the Dirac Semi-metals efimov effect refers quantum states discrete s... 0 1 0 0 0 0
14490 Logic Lectures: Gödel's Basic Logic Course at ... edited version given text gdels unpublished ma... 0 0 1 0 0 0
14491 Field dependent neutron diffraction study in N... paper present temperature field dependent neut... 0 1 0 0 0 0
14492 Optimistic lower bounds for convex regularized... minimax lower bounds pessimistic nature given ... 0 0 1 1 0 0
14493 Continual Lifelong Learning with Neural Networ... humans animals ability continually acquire fin... 0 0 0 1 1 0
14494 Potential kernel, hitting probabilities and di... zdextensions probabilitypreserving dynamical s... 0 0 1 0 0 0
14495 On the economics of electrical storage for var... use renewable energy sources major strategy mi... 1 0 0 0 0 0
14496 Deep Learning in Customer Churn Prediction: Un... companies increase efforts retaining customers... 1 0 0 1 0 0
14497 Predicting and Discovering True Muonium recent observation discrepancies muonic sector... 0 1 0 0 0 0
14498 Prediction of half-metallic properties in TlCr... halfmetallic properties tlcrs tlcrse hypotheti... 0 1 0 0 0 0
14499 Giant interfacial perpendicular magnetic aniso... study interfacial magnetocrystalline anisotrop... 0 1 0 0 0 0
14500 Stable Self-Assembled Atomic-Switch Networks f... nature inspired neuromorphic architectures exp... 1 1 0 0 0 0
14501 On the arithmetic of simple singularities of t... ade dynkin diagram gives rise family algebraic... 0 0 1 0 0 0
14502 Centralized Network Utility Maximization over ... study network utility maximization num decompo... 1 0 1 0 0 0
14503 Bottom-up Object Detection by Grouping Extreme... advent deep learning object detection drifted ... 1 0 0 0 0 0
14504 The Different Shapes of the LIS Energy Spectra... paper examines cosmic ray c nuclei spectra gev... 0 1 0 0 0 0
14505 A Nonconvex Splitting Method for Symmetric Non... symmetric nonnegative matrix factorization sym... 0 0 1 1 0 0
14506 Galactic Dark Matter Halos and Globular Cluste... total mass mgcs globular cluster gc system gal... 0 1 0 0 0 0
14507 Database of Parliamentary Speeches in Ireland,... present database parliamentary debates contain... 1 0 0 1 0 0
14508 Reduced Modeling of Unknown Trajectories paper deals model order reduction parametrical... 0 0 0 1 0 0
14509 Pump-Enhanced Continuous-Wave Magnetometry usi... ensembles nitrogenvacancy centers diamond high... 0 1 0 0 0 0
14510 Topological Spin Liquid with Symmetry-Protecte... topological spin liquids robust quantum states... 0 1 0 0 0 0
14511 SMT Queries Decomposition and Caching in Semi-... semisymbolic controlexplicit datasymbolic mode... 1 0 0 0 0 0
14512 Homotopy dimer algebras and cyclic contractions dimer algebras arise particular type quiver ga... 0 0 1 0 0 0
14513 On the trace problem for Triebel--Lizorkin spa... subject traces sobolev spaces mixed lebesgue n... 0 0 1 0 0 0
14514 Breaking the curse of dimensionality in regres... models many signals highdimensional models oft... 0 0 1 1 0 0
14515 DVAE++: Discrete Variational Autoencoders with... training discrete latent variable models remai... 0 0 0 1 0 0
14516 Bet-hedging against demographic fluctuations biological organisms cope stochastic variation... 0 1 0 0 0 0
14517 ISeeU: Visually interpretable deep learning fo... improve performance intensive care units icus ... 1 0 0 1 0 0
14518 Low-complexity Approaches for MIMO Capacity wi... paper proposes two lowcomplexity iterative alg... 1 0 0 0 0 0
14519 The VISTA ZYJHKs Photometric System: Calibrati... paper describe routine photometric calibration... 0 1 0 0 0 0
14520 Spin-filtering in superconducting junction wit... report electronic transport impact spinfilteri... 0 1 0 0 0 0
14521 Intersection of conjugate solvable subgroups i... shown solvable subgroup g almost simple group ... 0 0 1 0 0 0
14522 Improving inference of the dynamic biological ... gene expression ge data capture valuable condi... 0 0 0 0 1 0
14523 Optimal Weighting for Exam Composition problem faced many instructors designing exams... 0 0 0 1 0 0
14524 Generalized orderless pooling performs implici... recent cnn architectures use average pooling f... 1 0 0 0 0 0
14525 The Gaia-ESO Survey: Exploring the complex nat... abridged used fourth internal data release gai... 0 1 0 0 0 0
14526 On the Complexity of Robust Stable Marriage robust stable marriage rsm variant classical s... 1 0 0 0 0 0
14527 Vacuum Friction know empty space preferred state rest true spe... 0 1 0 0 0 0
14528 Intelligent Personal Assistant with Knowledge ... intelligent personal agent ipa agent purpose h... 1 0 0 0 0 0
14529 Private Data System Enabling Self-Sovereign St... increased use internet governments large compa... 1 0 0 0 0 0
14530 A Curious Family of Binomial Determinants That... evaluate curious determinant first mentioned g... 1 0 0 0 0 0
14531 Community Structure Characterization entry discusses problem describing communities... 1 1 0 0 0 0
14532 Design of Deep Neural Networks as Add-on Block... paper introduces deep neural networks dnns add... 1 0 0 0 0 0
14533 Application of data science techniques to dise... apply three data science techniques nonnegativ... 0 1 0 0 0 0
14534 Strong convergence rates of modified truncated... motivated truncated em method introduced mao n... 0 0 1 0 0 0
14535 Some aspects of holomorphic mappings: a survey expository paper concerned properties proper h... 0 0 1 0 0 0
14536 Local Linear Constraint based Optimization Mod... dual spectral computed tomography dsct achieve... 0 0 1 0 0 0
14537 Efficient Online Timed Pattern Matching by Aut... timed pattern matching problem actively studie... 1 0 0 0 0 0
14538 APO Time Resolved Color Photometry of Highly-E... report g r band observations interstellar obje... 0 1 0 0 0 0
14539 Variable selection in discriminant analysis fo... propose method variable selection discriminant... 0 0 1 1 0 0
14540 AdaGAN: Boosting Generative Models generative adversarial networks gan goodfellow... 1 0 0 1 0 0
14541 A Classification-Based Study of Covariate Shif... basic still largely unanswered question contex... 1 0 0 1 0 0
14542 Sequence-to-Sequence Models Can Directly Trans... present recurrent encoderdecoder deep neural n... 1 0 0 1 0 0
14543 Ensemble Methods for Personalized E-Commerce S... personalized search hot research topic many ye... 1 0 0 0 0 0
14544 Comparison of Sobol' sequences in financial ap... sobol sequences widely used quasimonte carlo m... 1 0 0 1 0 0
14545 A wavelet integral collocation method for nonl... high order wavelet integral collocation method... 0 0 1 0 0 0
14546 Recommendations of the LHC Dark Matter Working... weaklycoupled tevscale particles may mediate i... 0 1 0 0 0 0
14547 Generalization of the concepts of seniority nu... present generalized versions concepts seniorit... 0 1 0 0 0 0
14548 Rise of the HaCRS: Augmenting Autonomous Cyber... size complexity software systems increase numb... 1 0 0 0 0 0
14549 Block-Diagonal and LT Codes for Distributed Co... propose two coded schemes distributed computin... 1 0 0 0 0 0
14550 Gevrey estimates for one dimensional parabolic... study gevrey character natural parameterizatio... 0 0 1 0 0 0
14551 Improving Factor-Based Quantitative Investing ... periodic basis publicly traded companies requi... 1 0 0 1 0 0
14552 Magnetic Flux Tailoring through Lenz Lenses in... new pathway nuclear magnetic resonance spectro... 0 1 0 0 0 0
14553 Spatial risk measures induced by powers of max... meticulous assessment risk extreme environment... 0 0 0 0 0 1
14554 Fluctuations in 1D stochastic homogenization o... paper deals homogenization problem onedimensio... 0 0 1 0 0 0
14555 Runge-Kutta-Gegenbauer methods for advection-d... paper rungekuttagegenbauer rkg stability polyn... 0 1 0 0 0 0
14556 Tensor network method for reversible classical... develop tensor network technique solve univers... 1 1 0 0 0 0
14557 Model Predictions for Time-Resolved Transport ... recent advances ultrafast measurement cold ato... 0 1 0 0 0 0
14558 A Multimodal Corpus of Expert Gaze and Behavio... phonetic segmentation process splitting speech... 1 0 0 0 0 0
14559 Gradient Estimators for Implicit Models implicit models allow generation samples point... 1 0 0 1 0 0
14560 Token Economics in Energy Systems: Concept, Fu... traditional centralized energy systems disadva... 0 0 0 0 0 1
14561 ACtuAL: Actor-Critic Under Adversarial Learning generative adversarial networks gans powerful ... 1 0 0 1 0 0
14562 Influence des mécanismes dissociés de ludifica... introduction serious games pedagogical support... 1 0 0 0 0 0
14563 On the Fine-grained Complexity of One-Dimensio... paper investigate complexity onedimensional dy... 1 0 0 0 0 0
14564 Topological quantum paramagnet in a quantum sp... recently found bosonic excitations ordered med... 0 1 0 0 0 0
14565 Magic wavelengths of Ca$^{+}$ ion for linearly... dynamic dipole polarizabilities lowlying state... 0 1 0 0 0 0
14566 Network Slicing for 5G with SDN/NFV: Concepts,... fifth generation mobile communications anticip... 1 0 0 0 0 0
14567 Design of $n$- and $p$-type oxide thermoelectr... investigate structural electronic transport th... 0 1 0 0 0 0
14568 Localized heat perturbation in harmonic 1D cry... work exact solutions equation describes anomal... 0 1 0 0 0 0
14569 Modeling Semantic Expectation: Using Script Kn... recent research psycholinguistics provided inc... 1 0 0 1 0 0
14570 Constraints on kinematic parameters at $z\ne0$ standard cosmographic approach consists perfor... 0 1 0 0 0 0
14571 Joint Syntacto-Discourse Parsing and the Synta... discourse parsing long treated standalone prob... 1 0 0 0 0 0
14572 Combinatorial Multi-armed Bandit with Probabil... paper study combinatorial multiarmed bandit pr... 1 0 0 1 0 0
14573 Generative Adversarial Residual Pairwise Netwo... deep neural networks achieve unprecedented per... 1 0 0 0 0 0
14574 Evaporation of dilute droplets in a turbulent ... droplet evaporation turbulent sprays involves ... 0 1 0 0 0 0
14575 A priori Hölder and Lipschitz regularity for g... let mathbbx mu proper metric measure space let... 0 0 1 0 0 0
14576 Simultaneous tracking of spin angle and amplit... show simultaneous backaction evading tracking ... 0 1 0 0 0 0
14577 Charge exchange in galaxy clusters though theoretically expected charge exchange ... 0 1 0 0 0 0
14578 A Grazing Gaussian Beam consider friedlanders wave equation two space ... 0 0 1 0 0 0
14579 Reconfigurable Manipulator Simulation for Robo... paper represents systematic way generation aar... 1 0 0 0 0 0
14580 Group actions and a multi-parameter Falconer d... paper study following multiparameter variant c... 0 0 1 0 0 0
14581 Interacting fermions on the half-line: boundar... recent years witnessed extensive development t... 0 1 1 0 0 0
14582 Online and Distributed Robust Regressions unde... todays era big data robust leastsquares regres... 1 0 0 1 0 0
14583 Global well-posedness for the Schrödinger map ... paper prove global result schrdinger map probl... 0 0 1 0 0 0
14584 Stable explicit schemes for simulation of nonl... implicit schemes extensively used building phy... 1 1 0 0 0 0
14585 Congruence lattices of finite diagram monoids give complete description congruence lattices ... 0 0 1 0 0 0
14586 Weighted blowup correspondence of orbifold Gro... let sf x symplectic orbifold groupoid sf sympl... 0 0 1 0 0 0
14587 Constraints on Quenching of $z\lesssim2$ Massi... use logmmodot quiescent starforming galaxies z... 0 1 0 0 0 0
14588 Improving LBP and its variants using anisotrop... main purpose paper propose new preprocessing s... 1 0 0 0 0 0
14589 Dimension-free PAC-Bayesian bounds for matrice... paper focused dimensionfree pacbayesian bounds... 0 0 1 1 0 0
14590 Configuration Spaces and Robot Motion Planning... paper surveys topological problems relevant mo... 0 0 1 0 0 0
14591 Effect Summaries for Thread-Modular Analysis propose novel guessandcheck principle increase... 1 0 0 0 0 0
14592 Theory of Correlated Pairs of Electrons Oscill... formation correlated electron pairs oscillatin... 0 1 0 0 0 0
14593 Feldman-Katok pseudometric and the GIKN constr... gikn construction introduced gorodetski ilyash... 0 0 1 0 0 0
14594 Hamiltonian Monte-Carlo for Orthogonal Matrices consider problem sampling posterior distributi... 1 0 0 1 0 0
14595 Rapid Mixing Swendsen-Wang Sampler for Stochas... gibbs sampler particularly popular markov chai... 1 0 0 1 0 0
14596 Towards effective research recommender systems... paper argue integration recommender systems re... 1 0 0 0 0 0
14597 Existence and a priori estimates of solutions ... article sets forth results existence priori es... 0 0 1 0 0 0
14598 On the sectional curvature along central confi... paper characterize planar central configuratio... 0 0 1 0 0 0
14599 Interferometric confirmation of "water fountai... water fountain stars wfs evolved objects water... 0 1 0 0 0 0
14600 Parametric Inference for Discretely Observed S... subordinate diffusions constructed time changi... 0 0 1 1 0 0
14601 Adversarially Regularized Graph Autoencoder fo... graph embedding effective method represent gra... 0 0 0 1 0 0
14602 Cheap Orthogonal Constraints in Neural Network... introduce novel approach perform firstorder op... 1 0 0 1 0 0
14603 Training Big Random Forests with Little Resources without access large compute clusters building... 0 0 0 1 0 0
14604 Epitaxy of Advanced Nanowire Quantum Devices semiconductor nanowires provide ideal platform... 0 1 0 0 0 0
14605 Toward universality in degree 2 of the Kricker... setting finite type invariants nullhomologous ... 0 0 1 0 0 0
14606 Automatic segmentation of MR brain images with... automatic segmentation mr brain images importa... 1 0 0 0 0 0
14607 Integrable Structure of Multispecies Zero Rang... present brief review integrability multispecie... 0 1 1 0 0 0
14608 A shared latent space matrix factorisation met... clinical trial registries used monitor product... 1 0 0 0 0 0
14609 Spectra of Magnetic Operators on the Diamond L... adapt wellknown spectral decimation technique ... 0 0 1 0 0 0
14610 Arrow calculus for welded and classical links develop calculus diagrams knotted objects defi... 0 0 1 0 0 0
14611 Determinacy of Schmidt's Game and Other Inters... schmidts game similar intersection games playe... 0 0 1 0 0 0
14612 Scalable Kernel K-Means Clustering with Nystro... kernel kmeans clustering correctly identify ex... 1 0 0 1 0 0
14613 Discovering Playing Patterns: Time Series Clus... classification time series data challenge comm... 1 0 0 1 0 0
14614 On the bound states of magnetic Laplacians on ... paper mainly inspired conjecture existence bou... 0 0 1 0 0 0
14615 Finite-Time Distributed Linear Equation Solver... paper proposes distributed algorithms multiage... 1 0 0 0 0 0
14616 High Throughput Probabilistic Shaping with Pro... product distribution matching pdm proposed gen... 1 0 0 0 0 0
14617 Minimax Estimation of Large Precision Matrices... last decade witnesses significant methodologic... 0 0 1 1 0 0
14618 Machine learning in protein engineering machine learningguided protein engineering new... 0 0 0 0 1 0
14619 Advanced Steel Microstructural Classification ... inner structure material called microstructure... 1 1 0 0 0 0
14620 Categorizing Hirsch Index Variants utilizing hirsch index h variants exploratory ... 1 0 0 1 0 0
14621 Why a Population Genetics Framework is Inappro... although darwinian models rampant social scien... 0 0 0 0 1 0
14622 Is together better? Examining scientific colla... collaborations integral part scientific resear... 1 0 0 0 0 0
14623 A Lichnerowicz estimate for the spectral gap o... second order operator compact manifold satisfy... 0 0 1 0 0 0
14624 Quasiclassical theory of spin dynamics in supe... develop theory based formalism quasiclassical ... 0 1 0 0 0 0
14625 The RBO Dataset of Articulated Objects and Int... present dataset models articulated objects com... 1 0 0 0 0 0
14626 Training Generative Adversarial Networks via P... relate minimax game generative adversarial net... 0 0 0 1 0 0
14627 A Detailed Observational Analysis of V1324 Sco... recently discovered classical novae emit gev g... 0 1 0 0 0 0
14628 The California-Kepler Survey. III. A Gap in th... size planet observable property directly conne... 0 1 0 0 0 0
14629 Large sets avoiding linear patterns prove dimension function h h prec xd countable... 0 0 1 0 0 0
14630 Faster Algorithms for Weighted Recursive State... pushdown systems pdss recursive state machines... 1 0 0 0 0 0
14631 Local Density Approximation for Almost-Bosonic... discuss averagefield approximation trapped gas... 0 1 1 0 0 0
14632 Chemical dynamics between wells across a time-... chemical physical reaction dynamics essential ... 0 1 0 0 0 0
14633 Dust-trapping vortices and a potentially plane... radial drift problem constitutes one fundament... 0 1 0 0 0 0
14634 Weak and smooth solutions for a fractional Yam... counterpart classical yamabe problem fractiona... 0 0 1 0 0 0
14635 Lipschitz Properties for Deep Convolutional Ne... paper discuss stability properties convolution... 1 0 1 0 0 0
14636 Quadrature Compound: An approximating family o... compound distributions allow construction rich... 0 0 0 1 0 0
14637 Centrality in Modular Networks identifying influential nodes network fundamen... 1 0 0 0 0 0
14638 Yield Trajectory Tracking for Hyperbolic Age-S... population systems modeled agestructured hyper... 1 0 1 0 0 0
14639 A sixteen-relator presentation of an infinite ... provide explicit presentation infinite hyperbo... 0 0 1 0 0 0
14640 Fast and accurate Bayesian model criticism and... bayesian hierarchical models increasingly popu... 0 0 1 1 0 0
14641 Optimizing deep video representation to match ... comparison observed brain activity statistics ... 0 0 0 0 1 0
14642 Non-Abelian Fermionization and Fractional Quan... recent surge interest dualities relating theor... 0 1 0 0 0 0
14643 Periodic solutions and regularization of a Kep... consider kepler problem dimension two three ti... 0 0 1 0 0 0
14644 Ultra-wide-band slow light in photonic crystal... slow light propagation structured materials hi... 0 1 0 0 0 0
14645 Sketch Layer Separation in Multi-Spectral Hist... highresolution imaging delivered new prospects... 1 0 0 0 0 0
14646 Comment on "Spatial optical solitons in highly... recent paper alberucci c jisha n smyth g assan... 0 1 0 0 0 0
14647 Local Descriptor for Robust Place Recognition ... place recognition challenging problem mobile r... 1 0 0 0 0 0
14648 Assessing the performance of self-consistent h... paper assess predictive power selfconsistent h... 0 1 0 0 0 0
14649 Local Synchronization of Sampled-Data Systems ... present smooth distributed nonlinear control l... 1 0 1 0 0 0
14650 On the orbits that generate the X-shape in the... milky way bulge shows boxpeanut xshaped bulge ... 0 1 0 0 0 0
14651 How Peer Effects Influence Energy Consumption paper analyzes impact peer effects electricity... 1 0 0 0 0 0
14652 Physical Origins of Gas Motions in Galaxy Clus... hitomi xray satellite provided first direct me... 0 1 0 0 0 0
14653 Variational Approaches for Auto-Encoding Gener... autoencoding generative adversarial networks g... 1 0 0 1 0 0
14654 Verification of the anecdote about Edwin Hubbl... edwin powel hubble regarded one important astr... 0 1 0 0 0 0
14655 LSTM Fully Convolutional Networks for Time Ser... fully convolutional neural networks fcn shown ... 1 0 0 1 0 0
14656 Flat $F$-manifolds, Miura invariants and integ... extend results proved scalar equations case sy... 0 1 0 0 0 0
14657 Analysis and Design of Cost-Effective, High-Th... paper introduces new approach costeffective hi... 1 0 0 0 0 0
14658 TensorFlow Distributions tensorflow distributions library implements vi... 1 0 0 1 0 0
14659 A generalised Davydov-Scott model for polarons... present oneparameter family mathematical model... 0 1 0 0 0 0
14660 Wide Binaries in Tycho-{\it Gaia}: Search Meth... mine tychoit gaia astrometric solution tgas ca... 0 1 0 0 0 0
14661 Classification on Large Networks: A Quantitati... data point large graph graph statistics densit... 1 0 0 1 0 0
14662 Predicting Future Machine Failure from Machine... accurately predicting machine failures advance... 0 0 0 1 0 0
14663 Design and Optimisation of the FlyFast Front-e... collective adaptive systems cas consist large ... 1 0 0 0 0 0
14664 Distributed rank-1 dictionary learning: Toward... use functional brain imaging research diagnosi... 1 0 0 0 0 0
14665 HARPO: 1.7 - 74 MeV gamma-ray beam validation ... presentation scineghe conference past achievem... 0 1 0 0 0 0
14666 One-to-one composant mappings of $[0,\infty)$ ... knaster continua solenoids wellknown examples ... 0 0 1 0 0 0
14667 Valued fields, Metastable groups introduce class theories called metastable inc... 0 0 1 0 0 0
14668 Radio Galaxy Zoo: Cosmological Alignment of Ra... study mutual alignment radio sources within tw... 0 1 0 0 0 0
14669 Non-iterative Label Propagation in Optimal Lea... graph based semisupervised learning gssl intui... 1 0 0 0 0 0
14670 PeerHunter: Detecting Peer-to-Peer Botnets thr... peertopeer pp botnets become one major threats... 1 0 0 0 0 0
14671 An X-ray/SDSS sample (II): outflowing gas plas... galaxyscale outflows nowadays observed many ac... 0 1 0 0 0 0
14672 ZOO: Zeroth Order Optimization based Black-box... deep neural networks dnns one prominent techno... 1 0 0 1 0 0
14673 Existence of Noise Induced Order, a Computer A... prove computer aided proof existence noise ind... 0 0 1 0 0 0
14674 Residual Unfairness in Fair Machine Learning f... recent work fairness machine learning proposed... 0 0 0 1 0 0
14675 Egocentric Vision-based Future Vehicle Localiz... predicting future location vehicles essential ... 1 0 0 0 0 0
14676 Metriplectic formalism: friction and much more metriplectic formalism couples poisson bracket... 0 1 0 0 0 0
14677 Hierarchical Video Understanding introduce hierarchical architecture video unde... 0 0 0 1 0 0
14678 When Hashes Met Wedges: A Distributed Algorith... finding similar user pairs fundamental task so... 1 0 0 0 0 0
14679 Hysteretic vortex matching effects in high-$T_... square arrays submicrometer columnar defects t... 0 1 0 0 0 0
14680 Spatial Factor Models for High-Dimensional and... gathering information forest variables expensi... 0 0 0 1 0 0
14681 Detecting Adversarial Image Examples in Deep N... recently many studies demonstrated deep neural... 1 0 0 0 0 0
14682 Crowdsourcing for Beyond Polarity Sentiment An... sentiment analysis aims uncover emotions conve... 1 0 0 0 0 0
14683 Sketched Ridge Regression: Optimization Perspe... address statistical optimization impacts class... 1 0 0 1 0 0
14684 Ballistic magnon heat conduction and possible ... report observation magnon thermal conductivity... 0 1 0 0 0 0
14685 On Alzer's inequality extensions generalizations alzers inequality w... 0 0 1 0 0 0
14686 Oncilla robot: a versatile open-source quadrup... present oncilla robot novel mobile quadruped l... 1 0 0 0 0 0
14687 A generative model for sparse, evolving digraphs generating graphs similar real ones open probl... 1 0 0 0 0 0
14688 Penalized Interaction Estimation for Ultrahigh... quadratic regression goes beyond linear model ... 0 0 0 1 0 0
14689 4D limit of melting crystal model and its inte... paper addresses problems quantum spectral curv... 0 1 1 0 0 0
14690 On constraints and dividing in ternary homogen... let ternary homogeneous simple prove finitely ... 0 0 1 0 0 0
14691 Changes in lipid membranes may trigger amyloid... amyloid beta peptides abeta implicated alzheim... 0 1 0 0 0 0
14692 Transcendency Degree One Function Fields Over ... let mathbbk algebraic closure finite field mat... 0 0 1 0 0 0
14693 The phase transitions between $Z_n\times Z_n$ ... study continuous phase transitions triggered s... 0 1 0 0 0 0
14694 Universal Reinforcement Learning Algorithms: S... many stateoftheart reinforcement learning rl a... 1 0 0 0 0 0
14695 Cell Identity Codes: Understanding Cell Identi... understanding cell identity important task man... 0 0 0 1 1 0
14696 Full replica symmetry breaking in p-spin-glass... shown continuously changing effective number i... 0 1 0 0 0 0
14697 Formation and condensation of excitonic bound ... densitymatrixrenormalizationgroup dmrg method ... 0 1 0 0 0 0
14698 Tunable Emergent Heterostructures in a Prototy... interface two distinct materials desirable pro... 0 1 0 0 0 0
14699 Weak Label Supervision for Monaural Source Sep... deep learning models effective source separati... 1 0 0 0 0 0
14700 Mixed Bohr radius in several variables let kbellpnbellqn ndimensional pqbohr radius h... 0 0 1 0 0 0
14701 Adversarial Examples: Attacks and Defenses for... rapid progress significant successes wide spec... 1 0 0 1 0 0
14702 Auto-Keras: Efficient Neural Architecture Sear... neural architecture search nas proposed automa... 0 0 0 1 0 0
14703 Distributed Representation of Subgraphs network embeddings become popular learning eff... 1 0 0 1 0 0
14704 The right tool for the right question --- beyo... two major questions neuroimaging studies attem... 0 0 0 1 0 0
14705 Recognising Axionic Dark Matter by Compton and... light axionic dark matter motivated string the... 0 1 0 0 0 0
14706 Core of communities in bipartite networks use information present bipartite network dete... 1 1 0 0 0 0
14707 Low-Rank Hidden State Embeddings for Viterbi S... textual information extraction sequence labeli... 1 0 0 0 0 0
14708 Zeroth-Order Online Alternating Direction Meth... paper design analyze new zerothorder online al... 1 0 0 1 0 0
14709 Stationary solutions for stochastic damped Nav... consider stochastic damped navierstokes equati... 0 0 1 0 0 0
14710 On compact packings of the plane with circles ... compact circlepacking p euclidean plane set ci... 0 0 1 0 0 0
14711 Next Basket Prediction using Recurring Sequent... nowadays hot challenge supermarket chains offe... 1 0 0 0 0 0
14712 Solving nonlinear circuits with pulsed excitat... paper concept multirate partial differential e... 1 0 0 0 0 0
14713 Optimal modification of the LRT for the equali... paper considers optimal modification likelihoo... 0 0 1 1 0 0
14714 Feature uncertainty bounding schemes for large... consider binary classification problem data la... 1 0 0 1 0 0
14715 Impact of carrier localization on recombinatio... examine effect carrier localization due random... 0 1 0 0 0 0
14716 A Digital Neuromorphic Architecture Efficientl... information neural networks represented weight... 1 0 0 1 0 0
14717 Volume of representations and mapping degree given connected real lie group contractible ho... 0 0 1 0 0 0
14718 Transiting Planets with LSST III: Detection Ra... large synoptic survey telescope lsst generate ... 0 1 0 0 0 0
14719 Summing coincidence in rare event gamma-ray me... monte carlo method based geant toolkit develop... 0 1 0 0 0 0
14720 Free constructions and coproducts of d-frames general theory presentations dframes yet exist... 1 0 1 0 0 0
14721 Trace Expressiveness of Timed and Probabilisti... automata expressiveness essential feature unde... 1 0 0 0 0 0
14722 Open data, open review and open dialogue in ma... nowadays protecting trust social sciences also... 0 0 0 1 0 0
14723 The isoperimetric problem in the 2-dimensional... paper continuation second authors previous wor... 0 0 1 0 0 0
14724 Estimating Buildings' Parameters over Time Inc... modeling buildings heat dynamics complex proce... 1 0 0 1 0 0
14725 Decentralized Connectivity-Preserving Deployme... present decentralized scalable approach deploy... 1 0 0 0 0 0
14726 Bell's Inequality and Entanglement in Qubits propose alternative evaluation quantum entangl... 0 1 0 0 0 0
14727 Stochastic Conjugate Gradient Algorithm with V... conjugate gradient cg methods class important ... 1 0 0 1 0 0
14728 Weak in the NEES?: Auto-tuning Kalman Filters ... kalman filters routinely used many data fusion... 1 0 0 1 0 0
14729 Ultra-wide plasmonic tuning of semiconductor m... fully reconfigurable metasurfaces would enable... 0 1 0 0 0 0
14730 A Method for Analysis of Patient Speech in Dia... present approach automatic detection alzheimer... 1 0 0 0 0 0
14731 Resilient Transmission Grid Design: AC Relaxat... illustrated recent years superstorm sandy nort... 1 0 1 0 0 0
14732 VSE++: Improving Visual-Semantic Embeddings wi... present new technique learning visualsemantic ... 1 0 0 0 0 0
14733 The cooling-off effect of price limits in the ... paper investigate coolingoff effect opposite m... 0 0 0 0 0 1
14734 When Anderson localization makes quantum parti... unveil novel unexpected manifestation anderson... 0 1 0 0 0 0
14735 On the origin of super-diffusive behavior in a... experiments simulations established dynamics c... 0 0 0 0 1 0
14736 Statistical analysis of the first passage path... transition mechanism jump processes two differ... 0 0 1 0 0 0
14737 The SLUGGS Survey: Dark matter fractions at la... use globular cluster kinematics data primarily... 0 1 0 0 0 0
14738 Wave packet dynamics of Bogoliubov quasipartic... study dynamics bogoliubov wave packet supercon... 0 1 0 0 0 0
14739 The search for superheavy elements: Historical... heaviest transuranic elements known superheavy... 0 1 0 0 0 0
14740 MuLoG, or How to apply Gaussian denoisers to m... speckle reduction longstanding topic synthetic... 0 0 1 1 0 0
14741 Radon Transform for Sheaves define radon transform functor sheaves prove e... 0 0 1 0 0 0
14742 A type theory for synthetic $\infty$-categories propose foundations synthetic theory inftycate... 0 0 1 0 0 0
14743 Strongly Hierarchical Factorization Machines a... highorder parametric models include terms feat... 1 0 0 0 0 0
14744 On the relationship of Mathematics to the real... article discuss relationship mathematics physi... 0 1 1 0 0 0
14745 $\mathsf{LLF}_{\cal P}$: a logical framework f... extend constructive dependent type theory logi... 1 0 0 0 0 0
14746 Laplace equation for the Dirac, Euler and the ... article give explicit solutions laplace equati... 0 0 1 0 0 0
14747 Quantifying the Reality Gap in Robotic Manipul... quantify accuracy various simulators compared ... 1 0 0 0 0 0
14748 On the character degrees of a Sylow $p$-subgro... let q power prime p let uq sylow psubgroup fin... 0 0 1 0 0 0
14749 Zero-Delay Rate Distortion via Filtering for V... deal zerodelay source coding vectorvalued gaus... 1 0 0 0 0 0
14750 Damping of gravitational waves by matter develop unified description via boltzmann equa... 0 1 0 0 0 0
14751 Calibrations for minimal networks in a coverin... paper define notion calibration equivalent app... 0 0 1 0 0 0
14752 Universal 3D Wearable Fingerprint Targets: Adv... present design manufacturing high fidelity uni... 1 0 0 0 0 0
14753 The Velocity of the Propagating Wave for Spati... consider dynamics message passing spatially co... 1 1 1 0 0 0
14754 Voevodsky's conjecture for cubic fourfolds and... first part paper prove voevodskys nilpotence c... 0 0 1 0 0 0
14755 Projection-Free Bandit Convex Optimization paper propose first computationally efficient ... 0 0 0 1 0 0
14756 The Recommendation System to SNS Community for... already developed recommendation system sights... 1 0 0 0 0 0
14757 Constructive Stabilization and Pole Placement ... seminal result decentralized control developme... 1 0 0 0 0 0
14758 Hyperpolarizability and operational magic wave... optical clocks benefit tight atomic confinemen... 0 1 0 0 0 0
14759 A Unified Approach to Configuration-based Dyna... special type rotarywing unmanned aerial vehicl... 1 0 0 0 0 0
14760 Improving Vision-based Self-positioning in Int... traffic congestion widespread problem dynamic ... 1 0 0 0 0 0
14761 BPS Algebras, Genus Zero, and the Heterotic Mo... note expand technical issues raised citeppv au... 0 0 1 0 0 0
14762 Exploiting Nontrivial Connectivity for Automat... nontrivial connectivity allowed training deep ... 1 0 0 1 0 0
14763 A unified treatment of multiple testing with p... significant literature methods incorporating k... 0 0 1 1 0 0
14764 The flip Markov chain for connected regular gr... mahlmann schindelhauer defined markov chain ca... 1 0 1 0 0 0
14765 FPGA-based ORB Feature Extraction for Real-Tim... simultaneous localization mapping slam problem... 1 0 0 0 0 0
14766 On the Transformation of Latent Space in Autoe... noting importance latent variables inference l... 1 0 0 1 0 0
14767 Log-Convexity of Weighted Area Integral Means ... present work weighted area integral means mpva... 0 0 1 0 0 0
14768 From Nodal Chain Semimetal To Weyl Semimetal i... based firstprinciples calculations effective m... 0 1 0 0 0 0
14769 Protein and hydration-water dynamics are decou... water plays major role biosystems greatly cont... 0 1 0 0 0 0
14770 Lakshmibai-Seshadri paths for hyperbolic Kac-M... let mathfrakg hyperbolic kacmoody algebra rank... 0 0 1 0 0 0
14771 Beyond Worst-case: A Probabilistic Analysis of... affine policies control widely used solution a... 0 0 1 0 0 0
14772 Hausdorff operators on modulation and Wiener a... give sharp conditions boundedness hausdorff op... 0 0 1 0 0 0
14773 From Deep to Shallow: Transformations of Deep ... paper introduce transformations deep rectifier... 1 0 0 1 0 0
14774 Second-order Convolutional Neural Networks convolutional neural networks cnns successfull... 1 0 0 0 0 0
14775 On the quasi-sure superhedging duality with fr... prove superhedging duality discretetime financ... 0 0 0 0 0 1
14776 The Gaia-ESO Survey: low-alpha element stars i... take advantage gaiaeso survey idr bulge data s... 0 1 0 0 0 0
14777 On Kedlaya type inequalities for weighted means proved every symmetric repetition invariant je... 0 0 1 0 0 0
14778 Mesh-free Semi-Lagrangian Methods for Transpor... present three new semilagrangian methods based... 1 0 0 0 0 0
14779 Spatial Models with the Integrated Nested Lapl... integrated nested laplace approximation inla c... 0 0 0 1 0 0
14780 Prediction-Constrained Topic Models for Antide... supervisory signals help topic models discover... 1 0 0 1 0 0
14781 Casimir-Polder force fluctuations as spatial p... study spatial fluctuations casimirpolder force... 0 1 0 0 0 0
14782 A Unifying View of Explicit and Implicit Featu... nonlinear kernel methods approximated fast lin... 1 0 0 1 0 0
14783 Predicting Adolescent Suicide Attempts with Ne... though suicide major public health problem us ... 1 0 0 1 0 0
14784 Designing RNA Secondary Structures is Hard rna sequence word alphabet four elements acgu ... 1 0 0 0 0 0
14785 Towards Understanding the Impact of Human Mobi... motivated recent findings human mobility proxy... 1 1 0 0 0 0
14786 Normality and Related Properties of Forcing Al... present sufficient condition irreducibility fo... 0 0 1 0 0 0
14787 Training Triplet Networks with GAN triplet networks widely used models characteri... 1 0 0 1 0 0
14788 Recovering Pairwise Interactions Using Neural ... recovering pairwise interactions ie pairs inpu... 1 0 0 1 0 0
14789 Boundary Algebraic Bethe Ansatz for a nineteen... boundary algebraic bethe ansatz supersymmetric... 0 1 0 0 0 0
14790 Optimal cost for strengthening or destroying a... strengthening destroying network important iss... 0 1 0 0 0 0
14791 Direct Optimization through $\arg \max$ for Di... reparameterization variational autoencoders co... 0 0 0 1 0 0
14792 Orbit classification in the Hill problem: I. T... case classical hill problem numerically invest... 0 1 0 0 0 0
14793 Bio-Inspired Local Information-Based Control f... paper addresses task allocation problem larges... 0 0 1 1 0 0
14794 Simultaneous Confidence Band for Partially Lin... paper construct simultaneous confidence band s... 0 0 0 1 0 0
14795 Tent--Shaped Surface Morphologies of Silicon: ... nanometalsemiconductor junction dependent poro... 0 1 0 0 0 0
14796 Attention networks for image-to-text paper approaches problem imagetotext attention... 0 0 0 1 0 0
14797 A Monocular Vision System for Playing Soccer i... humanoid soccer robots perceive environment ex... 1 0 0 0 0 0
14798 Low-shot learning with large-scale diffusion paper considers problem inferring image labels... 1 0 0 1 0 0
14799 Instrumentation and its Interaction with the S... fermilab muon campus host muon g experiment wo... 0 1 0 0 0 0
14800 On the wave propagation analysis and supratran... research investigate nonlinear energy transmis... 0 1 0 0 0 0
14801 Advances in Variational Inference many modern unsupervised semisupervised machin... 1 0 0 1 0 0
14802 Security Against Impersonation Attacks in Dist... multiagent system transitioning centralized di... 1 0 0 0 0 0
14803 Large-Batch Training for LSTM and Beyond largebatch training approaches enabled researc... 1 0 0 1 0 0
14804 One-shot and few-shot learning of word embeddings standard deep learning systems require thousan... 1 0 0 1 0 0
14805 Exactly Robust Kernel Principal Component Anal... propose novel method called robust kernel prin... 0 0 0 1 0 0
14806 Moderate deviation analysis for classical comm... analyse families codes classical data transmis... 1 0 1 0 0 0
14807 Frequency Principle: Fourier Analysis Sheds Li... study training process deep neural networks dn... 1 0 0 1 0 0
14808 Efficient, Safe, and Probably Approximately Co... paper explore theoretical boundaries planning ... 1 0 0 0 0 0
14809 Uniform cohomological expansion of uniformly q... let fcolon uniformly quasiregular selfmapping ... 0 0 1 0 0 0
14810 The logic of pseudo-uninorms and their residua method density elimination generalized noncomm... 0 0 1 0 0 0
14811 Computation of Green's functions through algeb... article use linear algebra improve computation... 0 0 1 0 0 0
14812 Methods for finding leader--follower equilibri... concept leaderfollower stackelberg equilibrium... 1 0 0 0 0 0
14813 Pressure Induced Superconductivity in the New ... widely perceived correlation effect may play i... 0 1 0 0 0 0
14814 Universal Adversarial Perturbations Against Se... deep learning remarkably successful perceptual... 1 0 0 1 0 0
14815 Marginal sequential Monte Carlo for doubly int... bayesian inference models intractable partitio... 1 0 0 1 0 0
14816 The impact of neutral impurity concentration o... impact neutral impurity scattering electrons c... 0 1 0 0 0 0
14817 Calabi-Yau hypersurfaces and SU-bordism batyrev constructed family calabiyau hypersurf... 0 0 1 0 0 0
14818 Distribution-Based Categorization of Classifie... transfer learning tl aims transfer knowledge a... 1 0 0 0 0 0
14819 Alexander invariants of periodic virtual knots show every periodic virtual knot realized clos... 0 0 1 0 0 0
14820 Near-linear time approximation algorithms for ... computing optimal transport distances earth mo... 1 0 0 1 0 0
14821 Mathematical model of gender bias and homophil... women become better represented business acade... 1 0 0 0 0 0
14822 Monotonicity of non-pluripolar products and co... establish monotonicity property mass nonplurip... 0 0 1 0 0 0
14823 Fast and high-quality tetrahedral mesh generat... creating tetrahedral meshes anatomically accur... 0 1 0 0 0 0
14824 Curriculum Dropout dropout effective way regularizing neural netw... 1 0 0 1 0 0
14825 Self-dual and logarithmic representations of t... paper continuation arxiv present certain new a... 0 0 1 0 0 0
14826 Distance weighted discrimination of face image... illustrate advantages distance weighted discri... 1 0 0 1 0 0
14827 Partition-based Unscented Kalman Filter for Re... accurate state estimation largescale lithiumio... 1 0 0 0 0 0
14828 Towards Principled Methods for Training Genera... goal paper introduce single algorithm method m... 1 0 0 1 0 0
14829 Co-Clustering for Multitask Learning paper presents new multitask learning framewor... 1 0 0 1 0 0
14830 Avoiding Communication in Proximal Methods for... fast iterative soft thresholding algorithm fis... 1 0 0 0 0 0
14831 Stochastic Development Regression on Non-Linea... introduce regression model data nonlinear mani... 1 0 0 0 0 0
14832 Prediction of Kidney Function from Biopsy Imag... convolutional neural network used predict kidn... 0 0 0 1 0 0
14833 Weighing neutrinos in dynamical dark energy mo... briefly review recent results constraining neu... 0 1 0 0 0 0
14834 Can supersymmetry emerge at a quantum critical... supersymmetry plays important role superstring... 0 1 0 0 0 0
14835 Five-parameter potential box with inverse squa... using tridiagonal representation approach obta... 0 1 0 0 0 0
14836 Succinctness in subsystems of the spatial mu-c... paper systematically explore questions succinc... 0 0 1 0 0 0
14837 Evidence for electronically-driven ferroelectr... applying measurements dielectric constants rel... 0 1 0 0 0 0
14838 Testing FLUKA on neutron activation of Si and ... samples two characteristic semiconductor senso... 0 1 0 0 0 0
14839 Probabilistic Search for Structured Data via P... databases widespread yet extracting relevant d... 1 0 0 1 0 0
14840 Superposition of p-superharmonic functions dominative plaplace operator introduced operat... 0 0 1 0 0 0
14841 Ramsey properties and extending partial automo... show every free amalgamation class finite stru... 1 0 1 0 0 0
14842 Estimation of the shape of the density contour... elliptically contoured distributions generaliz... 0 0 1 1 0 0
14843 Aggregated Pairwise Classification of Statisti... classification shapes great interest diverse a... 1 0 0 1 0 0
14844 The MUSE-Wide survey: Detection of a clusterin... present clustering analysis sample lyalphaemit... 0 1 0 0 0 0
14845 On Polymorphic Sessions and Functions: A Tale ... work exploits logical foundation session types... 1 0 0 0 0 0
14846 Effects of initial spatial phase in radiative ... study radiative neutrino pair emission deexcit... 0 1 0 0 0 0
14847 Finite-sample risk bounds for maximum likeliho... mdl twopart coding textitindex resolvability p... 0 0 1 1 0 0
14848 Integrated Modeling of Second Phase Precipitat... current work combines cluster dynamics cd tech... 0 1 0 0 0 0
14849 Emergent topological superconductivity at nema... one dimensional hybrid systems play important ... 0 1 0 0 0 0
14850 Linear and nonlinear market correlations: char... pearson correlation mutual information based c... 0 1 0 0 0 0
14851 An explicit projective bimodule resolution of ... construct explicit projective bimodule resolut... 0 0 1 0 0 0
14852 Error Analysis and Improving the Accuracy of W... modern deep neural networks dnns spend large a... 1 0 0 1 0 0
14853 Active Learning amidst Logical Knowledge structured prediction ubiquitous applications ... 1 0 0 0 0 0
14854 On the Limiting Stokes' Wave of Extreme Height... mentioned schwartz cokelet failed gain converg... 0 1 0 0 0 0
14855 Pressure impact on the stability and distortio... effects high pressure crystal structure orthor... 0 1 0 0 0 0
14856 The system of cloud oriented learning tools as... aim research design implementation cloud based... 1 0 0 0 0 0
14857 Chemical abundances of two extragalactic young... use integratedlight spectroscopic observations... 0 1 0 0 0 0
14858 Clingo goes Linear Constraints over Reals and ... recent series asp system clingo provides gener... 1 0 0 0 0 0
14859 Dynamic Uplink/Downlink Resource Management in... flexible duplex proposed adapt channel traffic... 1 0 0 0 0 0
14860 Carleman estimates for forward and backward st... paper establish carleman estimates forward bac... 0 0 1 0 0 0
14861 Reply to comment on `Poynting flux in the neig... doubts expressed comment eur j phys tenability... 0 1 0 0 0 0
14862 Delegated Causality of Complex Systems notion delegated causality introduced subtle k... 0 1 0 0 0 0
14863 Resonating Valence Bond Theory of Superconduct... resonating valence bond rvb theory high tc sup... 0 1 0 0 0 0
14864 Efficient and accurate numerical schemes for a... paper consider numerical approximations hydrod... 0 0 1 0 0 0
14865 Brownian Motion of a Classical Particle in Qua... kleinkramers equation governing brownian motio... 0 1 0 0 0 0
14866 Hierarchical Policy Search via Return-Weighted... learning optimal policy multimodal reward func... 1 0 0 1 0 0
14867 Two-dimensional Fourier transformations and Mo... several fourier transformations functions one ... 0 0 1 0 0 0
14868 Optimal Allocation of Static Var Compensator v... shunt facts devices static var compensator svc... 0 0 1 0 0 0
14869 Polarity tuning of spin-orbit-induced spin spl... established spin splitting monolayer ml transi... 0 1 0 0 0 0
14870 Some parametrized dynamic priority policies fo... completeness dynamic priority scheduling schem... 1 0 0 0 0 0
14871 Vector bundles over classifying spaces of p-lo... paper obtain description grothendieck group co... 0 0 1 0 0 0
14872 Identification of a complete YPT1 Rab GTPase s... colletotrichum represent genus fungal species ... 0 0 0 0 1 0
14873 Multiplicative Structure in the Stable Splitti... space based loops slnmathbbc also known affine... 0 0 1 0 0 0
14874 Strange duality on rational surfaces II: highe... study le potiers strange duality conjecture ra... 0 0 1 0 0 0
14875 Graph learning under sparsity priors graph signals offer generic natural representa... 1 0 0 1 0 0
14876 Improving Trajectory Optimization using a Road... present evaluation several representative samp... 1 0 0 0 0 0
14877 Smooth and Efficient Policy Exploration for Ro... many policy search algorithms proposed robot l... 1 0 0 0 0 0
14878 Social Innovation and the Evolution of Creativ... ideas forge creatively individuals groups buil... 0 0 0 0 1 0
14879 Interaction between magnetic moments and itine... elucidating interaction magnetic moments itine... 0 1 0 0 0 0
14880 Il Fattore di Sylvester sylvester factor essential part asymptotic for... 0 0 1 0 0 0
14881 Bright and Gap Solitons in Membrane-Type Acous... study analytically numerically envelope solito... 0 1 0 0 0 0
14882 Local reservoir model for choice-based learning decision making based behavioral neural observ... 0 0 0 1 1 0
14883 Weil-Petersson geometry on the space of Bridge... inspired mirror symmetry investigate different... 0 0 1 0 0 0
14884 Analysis of a Sputtered Si Surface for Ar Sput... sputter depth profiling often sample erosion a... 0 1 0 0 0 0
14885 Extracting spectroscopic molecular parameters ... using quantum wave packet simulation including... 0 1 0 0 0 0
14886 A Generative Model for Score Normalization in ... propose theoretical framework thinking score n... 1 0 0 1 0 0
14887 Deep Networks tag the location of bird vocalis... work focuses reliable detection segmentation b... 1 0 0 0 0 0
14888 To Wait or Not to Wait: Two-way Functional Haz... telephone call centers offer convenient commun... 0 0 0 1 0 0
14889 Bayesian Gaussian models for interpolating lar... areal level spatial data often large sparse ma... 0 0 0 1 0 0
14890 Report on TBAS 2012: Workshop on Task-Based an... ecir halfday workshop taskbased aggregated sea... 1 0 0 0 0 0
14891 Reliability of the measured velocity anisotrop... determining velocity distribution halo stars e... 0 1 0 0 0 0
14892 $H$-compactness of elliptic operators on weigh... paper study asymptotic behavior secondorder un... 0 0 1 0 0 0
14893 $b$-symbol distance distribution of repeated-r... symbolpair codes introduced cassuto blaum rais... 1 0 0 0 0 0
14894 Knowledge Fusion via Embeddings from Text, Kno... present baseline approach crossmodal knowledge... 1 0 0 1 0 0
14895 Observation of spin superfluidity: YIG magneti... topology order parameter magnon condensate obs... 0 1 0 0 0 0
14896 Tuning of Interlayer Coupling in Large-Area Gr... van der waals vdw heterostructures receiving g... 0 1 0 0 0 0
14897 Learning to Multi-Task by Active Sampling one longstanding challenges artificial intelli... 1 0 0 0 0 0
14898 Sufficient Conditions for Idealised Models to ... prove two sufficient conditions idealised mode... 0 0 0 1 0 0
14899 Long term availability of raw experimental dat... experimental data availability cornerstone rep... 0 0 0 1 0 0
14900 MRA - Proof of Concept of a Multilingual Repor... mra multilingual report annotator web applicat... 1 0 0 0 0 0
14901 Contagions in Social Networks: Effects of Mono... consider sis contagion processes networks clas... 1 0 0 0 0 0
14902 Derivation of a multilayer approach to model s... propose multilayer approach simulate hyperpycn... 0 1 0 0 0 0
14903 Continued fractions and conformal mappings for... construct conformal mappings help continuous f... 0 0 1 0 0 0
14904 Stochastic Activation Pruning for Robust Adver... neural networks known vulnerable adversarial e... 0 0 0 1 0 0
14905 Canonical bases of modules over one dimensiona... let k field denote kt polynomial ring coeffici... 0 0 1 0 0 0
14906 Detecting Adversarial Samples from Artifacts deep neural networks dnns powerful nonlinear a... 1 0 0 1 0 0
14907 Bots sustain and inflate striking opposition i... societies complex systems tend polarize subgro... 1 0 0 0 0 0
14908 Approximation of full-boundary data from parti... measurements subset boundary common electrical... 0 0 1 0 0 0
14909 A Random Block-Coordinate Douglas-Rachford Spl... paper propose new optimization algorithm spars... 1 0 0 0 0 0
14910 Corrective Re-gridding Techniques for Non-Unif... time domain terahertz spectroscopy typically u... 0 1 0 0 0 0
14911 Optimistic Robust Optimization With Applicatio... robust optimization traditionally taken pessim... 1 0 0 1 0 0
14912 High Dimensional Time Series Generators multidimensional time series sequences real va... 0 0 0 1 0 0
14913 An isoperimetric inequality for Laplace eigenv... show positive integer k kth nonzero eigenvalue... 0 0 1 0 0 0
14914 Numerical solutions of an unsteady 2-D incompr... paper proposed modified markerandcell mac meth... 0 1 0 0 0 0
14915 A Dynamic Programming Solution to Bounded Deji... propose dynamic programming solution image dej... 1 0 1 0 0 0
14916 Delayed pull-in transitions in overdamped MEMS... consider dynamics overdamped mems devices unde... 0 1 0 0 0 0
14917 How ConvNets model Non-linear Transformations paper theoretically address three fundamental ... 1 0 0 0 0 0
14918 Volcano transition in a solvable model of osci... puzzling transition discovered simulations ran... 0 1 0 0 0 0
14919 Recent advances and open questions on the susy... review different constructions supersymmetry s... 0 0 1 0 0 0
14920 Toda maps, cocycles, and canonical systems present discussion hierarchy toda flows gives ... 0 0 1 0 0 0
14921 The Gibbs paradox, the Landauer principle and ... well known context general relativity spacetim... 0 1 0 0 0 0
14922 PlumX As a Potential Tool to Assess the Macros... main purpose macrostudy shed light broad impac... 1 0 0 0 0 0
14923 Action Robust Reinforcement Learning and Appli... policy said robust maximizes reward considerin... 1 0 0 1 0 0
14924 A characterization of finite vector bundles on... vector bundle e projective variety x called fi... 0 0 1 0 0 0
14925 APSYNSIM: An Interactive Tool To Learn Interfe... aperture synthesis simulator simple interactiv... 0 1 0 0 0 0
14926 The dimensionless dissipation rate and the Kol... expression dimensionless dissipation rate deri... 0 1 0 0 0 0
14927 Consistent estimation of the spectrum of trace... markov chain monte carlo widely used variety s... 0 0 0 1 0 0
14928 Balancing Selection Pressures, Multiple Object... previous research using evolutionary computati... 1 0 0 0 0 0
14929 High-throughput nanofluidic device for one-dim... ensemble averaging experiments may conceal man... 0 1 0 0 0 0
14930 Coupled Graphs and Tensor Factorization for Re... joint analysis data multiple information repos... 1 0 0 1 0 0
14931 A computer algebra system for R: Macaulay2 and... algebraic methods long history statistics prom... 0 0 0 1 0 0
14932 Transversal magnetoresistance and Shubnikov-de... explore theoretically magnetoresistance weyl s... 0 1 0 0 0 0
14933 In Search of Lost (Mixing) Time: Adaptive Mark... availability data sets large numbers variables... 0 0 0 1 0 0
14934 Network growth models: A behavioural basis for... several growth models proposed literature scal... 1 1 0 0 0 0
14935 On Convergence Property of Implicit Self-paced... selfpaced learning spl new methodology simulat... 1 0 0 0 0 0
14936 Graphene quantum dots prevent alpha-synucleino... emerging evidence indicates pathogenesis parki... 0 1 0 0 0 0
14937 Liu-Nagel phase diagrams in infinite dimension study harmonic soft spheres model thermal stru... 0 1 0 0 0 0
14938 Networks of planar Hamiltonian systems introduce diffusively coupled networks dynamic... 0 1 1 0 0 0
14939 Robust Tracking Using Region Proposal Networks recent advances visual tracking showed deep co... 1 0 0 0 0 0
14940 Recovering sparse graphs construct fixed parameter algorithm parameteri... 1 0 0 0 0 0
14941 Remark on arithmetic topology formalize arithmetic topology ie relationship ... 0 0 1 0 0 0
14942 Stable Architectures for Deep Neural Networks deep neural networks become invaluable tools s... 1 0 1 0 0 0
14943 Geometry and Arithmetic of Crystallographic Sp... introduce notion crystallographic sphere packi... 0 0 1 0 0 0
14944 On the global convergence of the Jacobi method... paper analyzes special cyclic jacobi methods s... 0 0 1 0 0 0
14945 Counting Motifs with Graph Sampling applied researchers often construct network ra... 0 0 0 1 0 0
14946 Optimizing noise level for perturbing geo-loca... tremendous increase number smart phones app st... 1 0 0 0 0 0
14947 Hochschild Cohomology and Deformation Quantiza... affine toric variety mathrmspeca give convex g... 0 0 1 0 0 0
14948 Adversarial Examples for Semantic Image Segmen... machine learning methods general deep neural n... 1 0 0 1 0 0
14949 Graphical virtual links and a polynomial of si... signed cyclic graph g construct unique virtual... 0 0 1 0 0 0
14950 Exploring the Single-Particle Mobility Edge in... singleparticle mobility edge spme marks critic... 0 1 0 0 0 0
14951 Integral field observations of the blue compac... abridged lowluminosity gasrich blue compact ga... 0 1 0 0 0 0
14952 A Framework for Automated Cellular Network Tun... tuning cellular network performance always occ... 0 0 0 1 0 0
14953 A Survey of Augmented Reality Navigation navigation popular area research academia indu... 1 0 0 0 0 0
14954 Strong Landau-quantization effects in high-mag... investigate onset superconductivity magnetic f... 0 1 0 0 0 0
14955 On boundary extension of mappings in metric sp... study boundary behavior socalled ring qmapping... 0 0 1 0 0 0
14956 Temporally Evolving Community Detection and Pr... work consider problem combining link content t... 1 0 0 1 0 0
14957 A Robust Utility Learning Framework via Invers... many smart infrastructure applications flexibi... 1 0 1 0 0 0
14958 Evaluating stochastic seeding strategies in ne... trying maximize adoption behavior population c... 1 0 0 0 0 0
14959 Flux noise in a superconducting transmission line study superconducting transmission line tl for... 0 1 0 0 0 0
14960 Relativistic Newtonian Dynamics for Objects an... relativistic newtonian dynamics rnd introduced... 0 1 0 0 0 0
14961 Spatio-Temporal Structured Sparse Regression w... paper introduces new sparse spatiotemporal str... 0 0 0 1 0 0
14962 Answer Set Solving with Bounded Treewidth Revi... parameterized algorithms way solve hard proble... 1 0 0 0 0 0
14963 Community structure: A comparative evaluation ... discovering community structure complex networ... 1 0 0 0 0 0
14964 Classification of isoparametric submanifolds a... paper assume isoparametric submanifolds flat s... 0 0 1 0 0 0
14965 Training Group Orthogonal Neural Networks with... learning rich diverse representations critical... 1 0 0 0 0 0
14966 Antiunitary representations and modular theory antiunitary representations lie groups take va... 0 0 1 0 0 0
14967 ARTENOLIS: Automated Reproducibility and Testi... motivation automatically testing changes code ... 1 0 0 0 0 0
14968 Droplet states in quantum XXZ spin systems on ... study xxz spin systems general graphs particul... 0 0 1 0 0 0
14969 Meta-learners for Estimating Heterogeneous Tre... growing interest estimating analyzing heteroge... 0 0 1 1 0 0
14970 Counting triangles formula for the first Chern... consider problem combinatorial computation fir... 0 0 1 0 0 0
14971 Probing homogeneity with standard candles show standard candles provide valuable informa... 0 1 0 0 0 0
14972 Fabrication tolerant chalcogenide mid-infrared... understanding exoplanet formation finding pote... 0 1 0 0 0 0
14973 Accurate Bayesian Data Classification without ... extend standard bayesian multivariate gaussian... 1 0 1 1 0 0
14974 Offline Biases in Online Platforms: a Study of... diverse sharing economy platforms fair marketp... 1 0 0 0 0 0
14975 Parameter Estimation for Thurstone Choice Models consider estimation accuracy individual streng... 0 0 1 1 0 0
14976 Quantitative modeling and analysis of bifurcat... modeling parameter estimation neuronal dynamic... 0 1 1 0 0 0
14977 Uniqueness and radial symmetry of minimizers f... paper prove uniqueness radial symmetry minimiz... 0 0 1 0 0 0
14978 Improved Accounting for Differentially Private... consider problem differential privacy accounti... 1 0 0 1 0 0
14979 Scattertext: a Browser-Based Tool for Visualiz... scattertext open source tool visualizing lingu... 1 0 0 0 0 0
14980 Tight contact structures on Seifert surface co... consider complements standard seifert surfaces... 0 0 1 0 0 0
14981 Modular invariant representations of the $\mat... compute modular transformation formula charact... 0 0 1 0 0 0
14982 The CODALEMA/EXTASIS experiment: Contributions... contributions codalemaextasis experiment th in... 0 1 0 0 0 0
14983 Distributed Kernel K-Means for Large Scale Clu... clustering samples according effective metric ... 0 0 0 1 0 0
14984 The Origin of Solar Filament Plasma Inferred f... solar filamentsprominences one common features... 0 1 0 0 0 0
14985 Distributed Stochastic Optimization via Adapti... stochastic convex optimization algorithms popu... 0 0 0 1 0 0
14986 Bilipschitz Equivalence of Trees and Hyperboli... combine conditions found wh results mpr show q... 0 0 1 0 0 0
14987 On the contribution of thermal excitation to t... direct impact excitation precipitating electro... 0 1 0 0 0 0
14988 Dose finding for new vaccines: the role for im... current methods optimize vaccine dose purely e... 0 0 0 0 1 0
14989 On Learning Mixtures of Well-Separated Gaussians consider problem efficiently learning mixtures... 1 0 1 0 0 0
14990 Sylvester's Problem and Mock Heegner Points prove p equiv pmod prime cube modulo p equatio... 0 0 1 0 0 0
14991 Community Detection in the Network of German P... many social networks exhibit underlying commun... 1 1 0 0 0 0
14992 Coupon Advertising in Online Social Systems: A... online social systems become important platfor... 1 0 0 0 0 0
14993 Statistical study of auroral omega bands presence statistical studies auroral omega ban... 0 1 0 0 0 0
14994 Efficient Lightweight Encryption Algorithm for... future generation networks internet things iot... 1 0 0 0 0 0
14995 Inter-site pair superconductivity: origins and... challenge understanding hightemperature superc... 0 1 0 0 0 0
14996 Non-standard FDTD implementation of the Schröd... work apply coles nonstandard form fdtd solve t... 0 1 0 0 0 0
14997 The magnetic and electronic properties of Oxys... magnetic oxyselenides topic research several d... 0 1 0 0 0 0
14998 Localizing the Object Contact through Matching... paper presents novel framework integration vis... 1 0 0 0 0 0
14999 Scattering Cross Section in a Cylindrical anis... design uniaxial anisotropic metamaterial layer... 0 1 0 0 0 0
15000 Stability analysis of a system coupled to a he... first approach study systems coupling finite i... 0 0 1 0 0 0
15001 Corral Framework: Trustworthy and Fully Functi... data processing pipelines represent important ... 1 1 0 0 0 0
15002 Radial orbit instability in systems of highly ... stationary stellar systems radially elongated ... 0 1 0 0 0 0
15003 Short-range wakefields generated in the blowou... past calculation wakefields generated electron... 0 1 0 0 0 0
15004 Scaled Nuclear Norm Minimization for Low-Rank ... minimizing nuclear norm matrix shown efficient... 1 0 0 1 0 0
15005 Stability and Transparency Analysis of a Bilat... paper presents novel approach stability transp... 1 0 0 0 0 0
15006 Quantum eigenstate tomography with qubit tunne... measurement energy eigenvalues spectrum multiq... 0 1 0 0 0 0
15007 Binary hermitian forms and optimal embeddings fix quadratic order ring integers embedding qu... 0 0 1 0 0 0
15008 An Improved Training Procedure for Neural Auto... neural autoregressive models explicit density ... 1 0 0 1 0 0
15009 A Stochastic Formulation of the Resolution of ... stochastic orbital approach resolution identit... 0 1 0 0 0 0
15010 Automatic Mapping of NES Games with Mappy game maps useful human players generalgameplay... 1 0 0 0 0 0
15011 Proportional Closeness Estimation of Probabili... paper focused problem estimating probability p... 0 0 1 1 0 0
15012 Utility of General and Specific Word Embedding... conventional text classification models make b... 1 0 0 1 0 0
15013 The AKARI IRC asteroid flux catalogue: updated... akari irc allsky survey provided twenty thousa... 0 1 0 0 0 0
15014 Finite sample Bernstein - von Mises theorems f... demonstrate prior influence posterior distribu... 0 0 1 1 0 0
15015 Low-temperature behavior of the multicomponent... consider multicomponent widomrowlison metropol... 0 1 1 0 0 0
15016 Stream Graphs and Link Streams for the Modelin... graph theory provides language studying struct... 1 0 0 1 0 0
15017 Supermetric Search metric search concerned efficient evaluation q... 1 0 0 0 0 0
15018 Liouville-type theorems with finite Morse inde... paper study solutions possibly unbounded signc... 0 0 1 0 0 0
15019 Performance Impact of Base Station Antenna Hei... paper present new significant theoretical disc... 1 0 0 0 0 0
15020 An information-theoretic approach for selectin... question selecting best amongst different choi... 0 0 1 1 0 0
15021 A watershed-based algorithm to segment and cla... imaging assays cellular function especially us... 1 0 0 0 0 0
15022 On the restricted Chebyshev-Boubaker polynomials using language riordan arrays study oneparamet... 0 0 1 0 0 0
15023 Band filling control of the Dzyaloshinskii-Mor... observe explain theoretically dramatic evoluti... 0 1 0 0 0 0
15024 Reducing Estimation Risk in Mean-Variance Port... portfolio analysis traditional approach replac... 0 0 0 0 0 1
15025 CutFEM topology optimization of 3D laminar inc... paper studies characteristics applicability cu... 1 0 1 0 0 0
15026 Network topology of neural systems supporting ... many neural systems display avalanche behavior... 0 0 0 0 1 0
15027 Comparison of ontology alignment systems acros... ontology alignment widelyused find corresponde... 1 0 0 0 0 0
15028 Polarizability Extraction for Waveguide-Fed Me... consider design modeling metasurfaces couple e... 0 1 0 0 0 0
15029 Connection Scan Algorithm introduce connection scan algorithm csa effici... 1 0 0 0 0 0
15030 A Proof of Orthogonal Double Machine Learning ... consider two stage estimation nonparametric fi... 0 0 1 1 0 0
15031 Quantile Treatment Effects in Difference in Di... paper shows conditional quantile treatment eff... 0 0 1 1 0 0
15032 Coppersmith's lattices and "focus groups": an ... present principled technique reducing matrix s... 1 0 1 0 0 0
15033 Gas vs. solid phase deuterated chemistry: HDCO... formation deuterated molecules favoured low te... 0 1 0 0 0 0
15034 Improved stability of optimal traffic paths models involving branched structures employed ... 0 0 1 0 0 0
15035 Neural Code Comprehension: A Learnable Represe... recent success embeddings natural language pro... 1 0 0 1 0 0
15036 Electron conduction in solid state via time va... paper study electron wavepacket dynamics elect... 0 1 0 0 0 0
15037 On blowup of co-rotational wave maps in odd sp... consider corotational wave maps ddimensional m... 0 0 1 0 0 0
15038 The Young Substellar Companion ROXs 12 B: Near... roxs mass j young star hosting directly imaged... 0 1 0 0 0 0
15039 Connecting dissipation and phase slips in a Jo... study emergence dissipation atomic josephson j... 0 1 0 0 0 0
15040 Satellite conjunction analysis and the false c... satellite conjunction analysis assessment coll... 0 0 1 1 0 0
15041 A formula goes to court: Partisan gerrymanderi... recently proposal advanced detect unconstituti... 0 1 0 0 0 0
15042 Quantitative aspects of linear and affine clos... affine lambdaterms lambdaterms bound variable ... 1 0 1 0 0 0
15043 Drug response prediction by ensemble learning ... chemotherapeutic response cancer cells given c... 0 0 0 1 1 0
15044 Eigenvalue approximation of sums of Hermitian ... propose technique calculating understanding ei... 0 1 1 0 0 0
15045 Some Ultraspheroidal Monogenic Clifford Gegenb... present paper new classes wavelet functions pr... 0 0 1 0 0 0
15046 Gait learning for soft microrobots controlled ... soft microrobots based photoresponsive materia... 1 0 0 0 0 0
15047 Evolution of Nagaoka phase with kinetic energy... investigate using density matrix renormalizati... 0 1 0 0 0 0
15048 Blocking Transferability of Adversarial Exampl... advances machine learning ml led adoption inte... 1 0 0 0 0 0
15049 Analytic continuation of Wolynes theory into t... wolynes theory electronically nonadiabatic rea... 0 1 0 0 0 0
15050 JDFTx: software for joint density-functional t... densityfunctional theory dft revolutionized co... 0 1 0 0 0 0
15051 Experimental realization of purely excitonic l... since seminal observation roomtemperature lase... 0 1 0 0 0 0
15052 Selective probing of hidden spin-polarized sta... spin angleresolved photoemission spectroscopy ... 0 1 0 0 0 0
15053 Classification without labels: Learning from m... modern machine learning techniques used constr... 0 0 0 1 0 0
15054 Semantic Annotation for Microblog Topics Using... trending topics microblogs twitter valuable re... 1 0 0 0 0 0
15055 Twin-beam real-time position estimation of mic... various optical methods measuring positions mi... 1 1 0 0 0 0
15056 Asymmetric metallicity patterns in the stellar... explore correlations velocity metallicity poss... 0 1 0 0 0 0
15057 End-to-End Attention based Text-Dependent Spea... new type endtoend system textdependent speaker... 1 0 0 1 0 0
15058 Automated Discovery of Process Models from Eve... process mining allows analysts exploit logs hi... 1 0 0 0 0 0
15059 Criteria for strict monotonicity of the mixed ... let pdots pn qdots qn convex polytopes mathbbr... 0 0 1 0 0 0
15060 Colorings with Fractional Defect consider coloring graph vertex assigned fracti... 0 0 1 0 0 0
15061 The new concepts of measurement error's regula... several literatures authors give new thinking ... 0 0 1 1 0 0
15062 The cavity approach for Steiner trees packing ... belief propagation approximation cavity method... 1 0 0 0 0 0
15063 Observational Learning by Reinforcement Learning observational learning type learning occurs fu... 1 0 0 1 0 0
15064 P4-compatible High-level Synthesis of Low Late... packet parsing key step sdnaware devices packe... 1 0 0 0 0 0
15065 Uniruledness of Strata of Holomorphic Differen... address question concerning birational geometr... 0 0 1 0 0 0
15066 Conservation laws, vertex corrections, and scr... present microscopic theory raman response clea... 0 1 0 0 0 0
15067 The distribution of symmetry of a naturally re... show distribution symmetry naturally reductive... 0 0 1 0 0 0
15068 Odd-integer quantum Hall states and giant spin... fabricate highmobility ptype fewlayer wse fiel... 0 1 0 0 0 0
15069 Efficient Probabilistic Performance Bounds for... field reinforcement learning recent progress t... 1 0 0 1 0 0
15070 Face Identification and Clustering thesis study two problems based clustering alg... 1 0 0 0 0 0
15071 Properties of Hydrogen Bonds in the Protic Ion... comparative molecular dynamics simulations hex... 0 1 0 0 0 0
15072 On Abruptly-Changing and Slowly-Varying Multia... study nonstationary stochastic multiarmed band... 0 0 0 1 0 0
15073 Validation of small Kepler transiting planet c... main goal nasas kepler mission establish frequ... 0 1 0 0 0 0
15074 CP-decomposition with Tensor Power Method for ... convolutional neural networks cnns shown great... 1 0 0 0 0 0
15075 Stoic Ethics for Artificial Agents present position paper advocating notion stoic... 1 0 0 0 0 0
15076 From quarks to nucleons in dark matter direct ... provide expressions nonperturbative matching e... 0 1 0 0 0 0
15077 Sharpened Strichartz estimates and bilinear re... develop refined strichartz estimates l regular... 0 0 1 0 0 0
15078 A fast and stable test to check if a weakly di... present test determining substochastic matrix ... 1 0 1 0 0 0
15079 Task-Oriented Query Reformulation with Reinfor... search engines play important role everyday li... 1 0 0 0 0 0
15080 Inverse scattering transform for the nonlocal ... reverse spacetime rst sinegordon sinhgordon no... 0 1 0 0 0 0
15081 Relieving the frustration through Mn$^{3+}$ su... present study impact mn substitution geometric... 0 1 0 0 0 0
15082 Inference on Auctions with Weak Assumptions on... given sample bids independent auctions paper e... 1 0 1 0 0 0
15083 Introduction to OXPath contemporary web pages increasingly sophistica... 1 0 0 0 0 0
15084 Image Registration for the Alignment of Digiti... work conducted survey different registration a... 1 0 0 0 0 0
15085 Jointly Attentive Spatial-Temporal Pooling Net... person reidentification person reid crucial ta... 1 0 0 1 0 0
15086 Inertia, positive definiteness and $\ell_p$ no... let sxxdotsxn set distinct positive integers l... 0 0 1 0 0 0
15087 Low-Latency Millimeter-Wave Communications: Tr... paper investigates two strategies reduce commu... 1 0 0 0 0 0
15088 The structure of multiplicative tilings of the... suppose omega subseteq rrsetminusset two sets ... 0 0 1 0 0 0
15089 Supporting Crowd-Powered Science in Economics:... modern investigation economics sciences requir... 0 0 0 0 0 1
15090 The effect of temperature on generic stable pe... work characterized changes dynamics twodimensi... 0 1 0 0 0 0
15091 The $u^n$-invariant and the Symbol Length of $... given field f operatornamecharf define unf max... 0 0 1 0 0 0
15092 An Affective Robot Companion for Assisting the... able recognize emotions human users considered... 1 0 0 0 0 0
15093 Rao-Blackwellization to give Improved Estimate... sufficient statistics derived population size ... 0 0 0 1 0 0
15094 Bernstein Polynomial Model for Nonparametric M... paper study bernstein polynomial model estimat... 0 0 0 1 0 0
15095 Small-space encoding LCE data structure with c... emphlongest common extension emphlce problem p... 1 0 0 0 0 0
15096 Machine learning application in the life time ... materials design development typically takes s... 1 1 0 0 0 0
15097 A Unified Framework for Stochastic Matrix Fact... propose unified framework speed existing stoch... 1 0 1 1 0 0
15098 Short Term Power Demand Prediction Using Stoch... power prediction demand vital power system del... 0 0 0 1 0 0
15099 Learning Qualitatively Diverse and Interpretab... growing interest developing accurate models al... 0 0 0 1 0 0
15100 Propagation of self-localised Q-ball solitons ... relativistic quantum field theories compact ob... 0 1 0 0 0 0
15101 Improving the staggered grid Lagrangian hydrod... work make two improvements staggered grid hydr... 0 1 0 0 0 0
15102 Reinforcement Learning-based Thermal Comfort C... vehicle climate control systems aim keep passe... 1 0 0 0 0 0
15103 A functional model for the Fourier--Plancherel... truncated fourier operator mathscrfmathbbr mat... 0 0 1 0 0 0
15104 Mapping $n$ grid points onto a square forces a... prove regular ntimes n square grid points inte... 1 0 1 0 0 0
15105 An FPT algorithm for planar multicuts with sou... given list k sourcesink pairs edgeweighted gra... 1 0 0 0 0 0
15106 Calibration with Bias-Corrected Temperature Sc... label shift refers phenomenon marginal probabi... 1 0 0 1 0 0
15107 Propagation Networks for Model-Based Control U... increasing interest learning dynamics simulato... 1 0 0 0 0 0
15108 High-redshift galaxies and black holes in the ... first billion years universe pivotal time star... 0 1 0 0 0 0
15109 Soft Label Memorization-Generalization for Nat... often multiple labels obtained training exampl... 1 0 0 0 0 0
15110 Floquet Topological Magnons introduce concept floquet topological magnons ... 0 1 0 0 0 0
15111 Wasserstein Soft Label Propagation on Hypergra... inspired recent interests developing machine l... 0 0 0 1 0 0
15112 Psychological and Personality Profiles of Poli... global recruitment radical islamic movements s... 1 1 0 0 0 0
15113 Techniques for Interpretable Machine Learning interpretable machine learning tackles importa... 0 0 0 1 0 0
15114 New Models and Methods for Formation and Analy... doctoral work focuses three main problems rela... 1 1 0 0 0 0
15115 Identifying networks with common organizationa... many complex systems represented networks prob... 1 1 0 1 0 0
15116 Image-based Proof of Work Algorithm for the In... new variation blockchain proof work algorithm ... 1 0 0 0 0 0
15117 Multi-Lane Perception Using Feature Fusion Bas... extensive precise robust recognition modeling ... 1 0 0 0 0 0
15118 Stability analysis and stabilization of LPV sy... linear parametervarying lpv systems jumps piec... 1 0 1 0 0 0
15119 Identity Testing and Interpolation from High P... consider problem identity testing recovering i... 1 0 1 0 0 0
15120 A bird's eye view on the flat and conic band w... present thorough tightbinding analysis band st... 0 1 0 0 0 0
15121 Replacement AutoEncoder: A Privacy-Preserving ... increasing number sensors mobile internet thin... 1 0 0 1 0 0
15122 Application of the Mixed Time-averaging Semicl... recently introduced mixed timeaveraging semicl... 0 1 0 0 0 0
15123 Bounds on layer potentials with rough inputs f... paper establish squarefunction estimates doubl... 0 0 1 0 0 0
15124 From support $τ$-tilting posets to algebras aim paper study poset isomorphism two support ... 0 0 1 0 0 0
15125 Measuring the reionization 21 cm fluctuations ... one main challenges probing reionization epoch... 0 1 0 0 0 0
15126 Sensing-Constrained LQG Control linearquadraticgaussian lqg control concerned ... 1 0 0 0 0 0
15127 Deep Residual Learning for Instrument Segmenta... detection tracking pose estimation surgical in... 1 0 0 0 0 0
15128 Computing Constrained Approximate Equilibria i... paper computing constrained approximate nash e... 1 0 0 0 0 0
15129 Evolution in Groups: A deeper look at synaptic... promising paradigm achieving highly efficient ... 1 0 0 1 0 0
15130 Polynomial Time and Sample Complexity for Non-... problem nongaussian component analysis ngca fi... 1 0 0 1 0 0
15131 ARABIS: an Asynchronous Acoustic Indoor Positi... acoustic ranging based indoor positioning solu... 1 0 0 0 0 0
15132 Realistic Evaluation of Deep Semi-Supervised L... semisupervised learning ssl provides powerful ... 0 0 0 1 0 0
15133 Recovering piecewise constant refractive indic... concerned inverse scattering problem recoverin... 0 0 1 0 0 0
15134 On Bezout Inequalities for non-homogeneous Pol... introduce workable notion degree nonhomogeneou... 1 0 1 0 0 0
15135 Joint Mixability of Elliptical Distributions a... paper develop theory complete mixability joint... 0 0 1 1 0 0
15136 Secure uniform random number extraction via in... guarantee security uniform random numbers gene... 1 0 0 0 0 0
15137 Mobile Encryption Gateway (MEG) for Email Encr... email cryptography applications often suffer m... 1 0 0 0 0 0
15138 Nematic Skyrmions in Odd-Parity Superconductors study topological excitations twocomponent nem... 0 1 0 0 0 0
15139 Concentration and consistency results for cano... statistical inference exponentialfamily models... 0 0 1 1 0 0
15140 Bayesian Network Learning via Topological Order propose mixed integer programming mip model it... 1 0 0 1 0 0
15141 The nature of the giant exomoon candidate Kepl... recent announcement neptunesized exomoon candi... 0 1 0 0 0 0
15142 Generative Adversarial Privacy present datadriven framework called generative... 0 0 0 1 0 0
15143 Hierarchical Modeling of Seed Variety Yields a... eradicating hunger malnutrition key developmen... 1 0 0 1 0 0
15144 A Clinical and Finite Elements Study of Stress... stress urinary incontinence sui urine leakage ... 1 0 0 0 0 0
15145 The n-term Approximation of Periodic Generaliz... paper study compressibility random processes f... 0 0 1 0 0 0
15146 Sliced rotated sphere packing designs spacefilling designs popular choices computer ... 0 0 1 1 0 0
15147 On the Convergence of Weighted AdaGrad with Mo... adaptive stochastic gradient descent methods a... 1 0 0 1 0 0
15148 Cyclic Dominance in the Spatial Coevolutionary... paper studies scenarios cyclic dominance coevo... 1 1 1 0 0 0
15149 Analysis of universal adversarial perturbations deep networks recently shown vulnerable univer... 1 0 0 1 0 0
15150 Unsupervised and Semi-supervised Anomaly Detec... investigate anomaly detection unsupervised fra... 1 0 0 1 0 0
15151 Wearable Health Monitoring Using Capacitive Vo... rapid miniaturization cost reduction computing... 1 0 0 0 0 0
15152 Electromagnetically Induced Transparency (EIT)... investigate effect bandlimited white gaussian ... 0 1 0 0 0 0
15153 SINR Outage Evaluation in Cellular Networks: S... signaltonoiseplusinterference ratio sinr outag... 1 0 1 0 0 0
15154 Smart grid modeling and simulation - Comparing... one important tools development smart grid sim... 1 0 0 0 0 0
15155 A Large-Scale CNN Ensemble for Medication Safe... revealing adverse drug reactions adr essential... 1 0 0 0 0 0
15156 Solutions to twisted word equations and equati... wellknown problem solve equations virtually fr... 1 0 1 0 0 0
15157 DeepTransport: Learning Spatial-Temporal Depen... predicting traffic conditions recently explore... 1 0 0 0 0 0
15158 On Statistical Optimality of Variational Bayes article addresses longstanding open problem ju... 0 0 1 1 0 0
15159 The Teichmüller Stack paper comprehensive introduction results grew ... 0 0 1 0 0 0
15160 On the Impact of Micro-Packages: An Empirical ... rise usercontributed open source software oss ... 1 0 0 0 0 0
15161 Location and Orientation Optimisation for Spat... design sparse spatially stretched tripole arra... 1 0 0 0 0 0
15162 Hausdorff dimension of limsup sets of random r... almost sure hausdorff dimension limsup set ran... 0 0 1 0 0 0
15163 Thermal Characterization of Microscale Heat Co... power electronics shrinks submicron scale ther... 0 1 0 0 0 0
15164 A summation formula for triples of quadratic s... let vvv triple even dimensional vector spaces ... 0 0 1 0 0 0
15165 Designing Strassen's algorithm strassen shocked world showing two n x n matri... 1 0 1 0 0 0
15166 A Software-equivalent SNN Hardware using RRAM-... spiking neural network snn naturally inspires ... 1 0 0 0 0 0
15167 Max flow vitality in general and $st$-planar g... emphvitality arcnode graph respect maximum flo... 1 0 0 0 0 0
15168 Between Homomorphic Signal Processing and Deep... paper presents new approach understanding deep... 1 0 0 0 0 0
15169 Negative membrane capacitance of outer hair ce... ability mammalian ear processing high frequenc... 0 1 0 0 0 0
15170 Resonant inelastic x-ray scattering operators ... derive general expressions resonant inelastic ... 0 1 0 0 0 0
15171 Hamiltonian Path in Split Graphs- a Dichotomy paper investigate hamiltonian path problem con... 1 0 0 0 0 0
15172 Design Patterns for Fusion-Based Object Retrieval address task ranking objects people blogs vert... 1 0 0 0 0 0
15173 Early Routability Assessment in VLSI Floorplan... multiple design iterations inevitable nanomete... 1 0 0 0 0 0
15174 Inverse Ising problem in continuous time: A la... consider inverse ising problem ie inference ne... 0 0 0 1 0 0
15175 Analysis of the flux growth rate in emerging a... studied emergence process active region ars an... 0 1 0 0 0 0
15176 Porosity and Differentiability of Lipschitz Ma... let f lipschitz map subset stratified group ba... 0 0 1 0 0 0
15177 A Structured Learning Approach with Neural Con... sleep plays vital role human health mental phy... 0 0 0 1 0 0
15178 Dominant dimension and tilting modules study algebras tilting modules generated cogen... 0 0 1 0 0 0
15179 Fast and Accurate 3D Medical Image Segmentatio... deep neural network models used medical image ... 1 0 0 0 0 0
15180 Direct Optical Visualization of Water Transpor... gaining detailed understanding water transport... 0 1 0 0 0 0
15181 Hyperbolicity cones and imaginary projections recently authors de wolff introduced imaginary... 0 0 1 0 0 0
15182 Fairness-aware Classification: Criterion, Conv... fairnessaware classification receiving increas... 0 0 0 1 0 0
15183 Optimal Rates for Community Estimation in the ... community identification network important pro... 0 0 1 1 0 0
15184 On Sound Relative Error Bounds for Floating-Po... stateoftheart static analysis tools verifying ... 1 0 0 0 0 0
15185 Light yield determination in large sodium iodi... application naitl detectors search galactic da... 0 1 0 0 0 0
15186 A Systematic Approach to Numerical Dispersion ... finitedifference timedomain fdtd method well e... 0 1 0 0 0 0
15187 On Synchronous, Asynchronous, and Randomized B... work considers stochastic nash game player sol... 0 0 1 0 0 0
15188 On the insertion of n-powers algebraic terms insertion npowers words may mo... 1 0 1 0 0 0
15189 The TUS detector of extreme energy cosmic rays... origin nature extreme energy cosmic rays eecrs... 0 1 0 0 0 0
15190 New ellipsometric approach for determining sma... propose precise ellipsometric method investiga... 0 1 0 0 0 0
15191 Maximizing the Mutual Information of Multi-Ant... singleuser multipleinput multipleoutput sumimo... 1 0 0 0 0 0
15192 Multistationarity and Bistability for Fewnomia... bistability multistationarity properties react... 1 0 0 0 1 0
15193 Erratum: Link prediction in drug-target intera... background silico drugtarget interaction dti p... 1 0 0 0 0 0
15194 Variable Selection for Highly Correlated Predi... penaltybased variable selection methods powerf... 0 0 1 1 0 0
15195 Scraping and Preprocessing Commercial Auction ... last three decades seen significant increase t... 0 0 0 1 0 0
15196 Batch Size Influence on Performance of Graphic... impact maximally possible batch size better ru... 1 0 0 0 0 0
15197 Minimax Euclidean Separation Rates for Testing... consider compositecomposite testing problems e... 0 0 1 1 0 0
15198 Simple Policy Evaluation for Data-Rich Iterati... databased policy iterative control task presen... 1 0 0 0 0 0
15199 Proper quadrics in the Euclidean $n$-space paper investigate metric properties quadrics c... 0 0 1 0 0 0
15200 Mapping of the dark exciton landscape in trans... transition metal dichalcogenides tmds exhibit ... 0 1 0 0 0 0
15201 Active set algorithms for estimating shape-con... review modify active set algorithm duembgen et... 0 0 0 1 0 0
15202 Asymptotic orthogonalization of subalgebras in... let ii factor von neumann subalgebra qsubset i... 0 0 1 0 0 0
15203 Neural Control Variates for Variance Reduction statistics machine learning approximation intr... 0 0 0 1 0 0
15204 On tidal energy in Newtonian two-body motion work based essential linear analysis carried c... 0 1 1 0 0 0
15205 Markov-Modulated Linear Regression classical linear regression considered case re... 0 0 0 1 0 0
15206 Compactness of the resolvent for the Witten La... paper consider witten laplacian forms give suf... 0 0 1 0 0 0
15207 On the Azuma inequality in spaces of subgaussi... p let function varphipx x xle varphipx pxp p x... 0 0 1 0 0 0
15208 Realization of the Axial Next-Nearest-Neighbor... report smallangle neutron scattering sans meas... 0 1 0 0 0 0
15209 Long-time asymptotics for the derivative nonli... derive asymptotic formulas solution derivative... 0 1 1 0 0 0
15210 Non-Semisimple Extended Topological Quantum Fi... develop general theory construction extended t... 0 0 1 0 0 0
15211 Community Aware Random Walk for Network Embedding social network analysis provides meaningful in... 1 0 0 0 0 0
15212 A combined photometric and kinematic recipe fo... understanding nature bulges disc galaxies prov... 0 1 0 0 0 0
15213 Fast construction of efficient composite likel... growth size complexity modern data challenges ... 0 0 1 1 0 0
15214 State-selective influence of the Breit interac... report measurement kll dielectronic recombinat... 0 1 0 0 0 0
15215 Anti-spoofing Methods for Automatic SpeakerVer... growing interest automatic speaker verificatio... 1 0 0 1 0 0
15216 Face Deidentification with Generative Deep Neu... face deidentification active topic amongst pri... 1 0 0 0 0 0
15217 Towards a theory of word order. Comment on "De... comment dependency distance new perspective sy... 1 1 0 0 0 0
15218 Optimal Frequency Ranges for Sub-Microsecond P... precision pulsar timing requires optimization ... 0 1 0 0 0 0
15219 Submodular Mini-Batch Training in Generative M... article withdrawn uploaded without coauthors k... 1 0 0 0 0 0
15220 Local Gaussian Processes for Efficient Fine-Gr... traffic speed key indicator efficiency urban t... 1 0 0 0 0 0
15221 Vertex algebras associated with hypertoric var... construct family vertex algebras associated fa... 0 0 1 0 0 0
15222 Bit-Vector Model Counting using Statistical Es... approximate model counting bitvector smt formu... 1 0 0 0 0 0
15223 Stochastic Reformulations of Linear Systems: A... develop family reformulations arbitrary consis... 1 0 0 1 0 0
15224 Isotropic-Nematic Phase Transitions in Gravita... examine dense selfgravitating stellar systems ... 0 1 0 0 0 0
15225 Topological Semimetals carrying Arbitrary Hopf... propose new type hopf semimetals indexed pair ... 0 1 0 0 0 0
15226 Online Learning with Abstention present extensive study key problem online lea... 1 0 0 0 0 0
15227 Stabilization of self-mode-locked quantum dash... report experimental studies influence symmetri... 0 1 0 0 0 0
15228 Sensitivity Analysis for Mirror-Stratifiable C... paper provides set sensitivity analysis activi... 0 0 1 1 0 0
15229 Coupling Story to Visualization: Using Textual... online writers journalism media increasingly c... 1 0 0 0 0 0
15230 Automatic Prediction of Discourse Connectives accurate prediction suitable discourse connect... 1 0 0 0 0 0
15231 Learning to Adapt in Dynamic, Real-World Envir... although reinforcement learning methods achiev... 1 0 0 1 0 0
15232 A Novel Receiver Design with Joint Coherent an... paper propose novel splitting receiver involve... 1 0 0 0 0 0
15233 Comment on the Equality Condition for the I-MM... paper establishes equality condition immse pro... 1 0 0 0 0 0
15234 Feature discovery and visualization of robot m... gap ability collect interesting data ability a... 1 0 0 1 0 0
15235 Multiplicative models for frequency data, esti... paper models vector probabilities whose elemen... 0 0 1 1 0 0
15236 An Efficient Keyless Fragmentation Algorithm f... family information dispersal algorithms applie... 1 0 0 0 0 0
15237 Schramm--Loewner-evolution-type growth process... group theoretical formulation schrammloewnerev... 0 0 1 0 0 0
15238 Explicit Commutativity Conditions for Second-o... although explicit commutativitiy conditions se... 1 0 0 0 0 0
15239 Energy Acceptance of the St. George Recoil Sep... radiative alphacapture alphagamma reactions pl... 0 1 0 0 0 0
15240 Topological and Algebraic Characterizations of... recall first gallaisimplicial complex deltagam... 0 0 1 0 0 0
15241 Fairness risk measures ensuring classifiers nondiscriminatory fair re... 1 0 0 1 0 0
15242 On-line tracing of XACML-based policy coverage... currently extensible access control markup lan... 1 0 0 0 0 0
15243 The square lattice Ising model on the rectangl... based results published recently j phys math t... 0 1 1 0 0 0
15244 Using MRI Cell Tracking to Monitor Immune Cell... purpose mri cell tracking used monitor immune ... 0 1 0 0 0 0
15245 Entropic Spectral Learning in Large Scale Netw... present novel algorithm learning spectral dens... 0 0 0 1 0 0
15246 On Green's proof of infinitesimal Torelli theo... prove equivalence infinitesimal torelli theore... 0 0 1 0 0 0
15247 Gentle heating by mixing in cooling flow clusters analyze threedimensional hydrodynamical simula... 0 1 0 0 0 0
15248 Cutting-off Redundant Repeating Generations fo... paper tackles reduction redundant repeating ge... 1 0 0 1 0 0
15249 Some exercises with the Lasso and its compatib... consider lasso noiseless experiment one observ... 0 0 1 1 0 0
15250 Leveraging Sensory Data in Estimating Transfor... transformer lifetime assessments plays vital r... 1 0 0 0 0 0
15251 Spatial Projection of Multiple Climate Variabl... future projection climate typically obtained c... 1 0 0 1 0 0
15252 Two-dimensional plasmons in the random impedan... random impedance networks widely used model de... 0 1 0 0 0 0
15253 K-edge subtraction vs. A-space processing for ... purpose compare two methods use xray spectral ... 0 1 0 0 0 0
15254 Recall Traces: Backtracking Models for Efficie... many environments tiny subset states yield hig... 0 0 0 1 0 0
15255 Path-integral formalism for stochastic resetti... study dynamics overdamped brownian particles d... 0 1 0 0 0 0
15256 A strongly convergent numerical scheme from En... ensemble kalman methodology inverse problems s... 0 0 1 0 0 0
15257 Attenuation correction for brain PET imaging u... positron emission tomography pet functional im... 0 1 0 1 0 0
15258 Resolving Local Electrochemistry at the Nanosc... electrochemistry underlying mechanism variety ... 0 1 0 0 0 0
15259 Genuine equivariant operads build new algebraic structures call genuine eq... 0 0 1 0 0 0
15260 A linear-time algorithm for the maximum-area i... given n vertices convex polygon cyclic order t... 1 0 1 0 0 0
15261 Estimation of the infinitesimal generator by s... analysis molecular processes estimation timesc... 0 1 0 0 0 0
15262 Korea Microlensing Telescope Network Microlens... present microlensing events korea microlensing... 0 1 0 0 0 0
15263 Caveat Emptor, Computational Social Science: L... researchers use computational methods study co... 1 0 0 0 0 0
15264 Skeleton-Based Action Recognition Using Spatio... skeletonbased human action recognition attract... 1 0 0 0 0 0
15265 Interpolation and Extrapolation of Toeplitz Ma... work propose novel method quantifying distance... 0 0 1 1 0 0
15266 Performance of time delay estimation in a cogn... cognitive radar adapts transmit waveform respo... 1 0 1 0 0 0
15267 RAIL: Risk-Averse Imitation Learning imitation learning algorithms learn viable pol... 1 0 0 0 0 0
15268 Nucleation and growth of hierarchical martensi... shape memory alloys often show complex hierarc... 0 1 0 0 0 0
15269 Towards Sparse Hierarchical Graph Classifiers recent advances representation learning graphs... 1 0 0 0 0 0
15270 Strengths and Weaknesses of Deep Learning Mode... deep convolutional neural networks cnns based ... 0 0 0 1 0 0
15271 BayesVP: a Bayesian Voigt profile fitting package introduce bayesian approach modeling voigt pro... 0 1 0 0 0 0
15272 Efficient Algorithms for Non-convex Isotonic R... consider minimization submodular functions sub... 1 0 0 1 0 0
15273 The effects of oxygen in spinel oxide Li1+xTi2... evolution superconducting litiodelta insulatin... 0 1 0 0 0 0
15274 Qualitative uncertainty principle for Gabor tr... classes locally compact groups qualitative unc... 0 0 1 0 0 0
15275 Strategyproof Mechanisms for Additively Separa... additively separable hedonic games fractional ... 1 0 0 0 0 0
15276 The Conditional Analogy GAN: Swapping Fashion ... present novel method solve image analogy probl... 1 0 0 1 0 0
15277 Inverse antiplane problem on $n$ uniformly str... inverse problem antiplane elasticity determina... 0 0 1 0 0 0
15278 Categorical Structures on Bundle Gerbes and Hi... present construction hilbert space sections bu... 0 0 1 0 0 0
15279 The Monkeytyping Solution to the YouTube-8M Vi... article describes final solution team monkeyty... 1 0 0 0 0 0
15280 Brain EEG Time Series Selection: A Novel Graph... brain electroencephalography eeg classificatio... 0 0 0 1 1 0
15281 Modelling dependency completion in sentence co... present casestudy demonstrating usefulness bay... 1 0 0 1 0 0
15282 Performance analysis of local ensemble Kalman ... ensemble kalman filter enkf important data ass... 0 0 1 1 0 0
15283 The homology class of a Poisson transversal note devoted study homology class compact pois... 0 0 1 0 0 0
15284 Discrete Time Dynamic Programming with Recursi... paper provides alternative approach theory dyn... 0 0 0 0 0 1
15285 Anisotropic triangulations via discrete Rieman... construction anisotropic triangulations desira... 1 0 0 0 0 0
15286 Heteroskedastic PCA: Algorithm, Optimality, an... principal component analysis pca singular valu... 0 0 0 1 0 0
15287 A Manifesto for Web Science @ 10 twentyseven years ago one biggest societal cha... 1 0 0 0 0 0
15288 LAMOST Spectroscopic Survey of the Galactic An... present second release valueadded catalogues l... 0 1 0 0 0 0
15289 Counterfactual Fairness machine learning impact people legal ethical c... 1 0 0 1 0 0
15290 A Frame Tracking Model for Memory-Enhanced Dia... recently resources tasks proposed go beyond st... 1 0 0 0 0 0
15291 How to place an obstacle having a dihedral sym... generic model shape optimization problems cons... 0 0 1 0 0 0
15292 The mapping class groups of reducible Heegaard... manifold admits genus reducible heegaard split... 0 0 1 0 0 0
15293 Linguistic Relativity and Programming Languages use programming languages wax wane across deca... 1 0 0 1 0 0
15294 Double-sided probing by map of Asplund's dista... establish link mathematical morphology map asp... 1 0 1 0 0 0
15295 Regression approaches for Approximate Bayesian... book chapter introduces regression approaches ... 0 0 0 1 0 0
15296 Feature learning in feature-sample networks us... data knowledge representation fundamental conc... 1 0 0 0 0 0
15297 Analog control with two Artificial Axons artificial axon recently introduced synthetic ... 0 0 0 0 1 0
15298 Designing a cost-time-quality-efficient grindi... paper multiobjective mathematical model used o... 1 0 0 0 0 0
15299 Treewidth distance on phylogenetic trees article study treewidth emphdisplay graph auxi... 1 0 0 0 0 0
15300 What is the definition of two meromorphic func... two meromorphic functions fz gz sharing small ... 0 0 1 0 0 0
15301 Nb3Sn wire shape and cross sectional area inho... rutherford cable production wires plastically ... 0 1 0 0 0 0
15302 Towards Accurate Modelling of Galaxy Clusterin... interpreting smallscale clustering galaxies ha... 0 1 0 0 0 0
15303 Graphene nanoplatelets induced tailoring in ph... synthesis physical photocatalytic antibacteria... 0 1 0 0 0 0
15304 Lower Bounds for Searching Robots, some Faulty suppose sending k robots search real line cons... 1 0 0 0 0 0
15305 An efficient relativistic density-matrix renor... present implementation relativistic quantumche... 0 1 0 0 0 0
15306 Cyclic Hypergraph Degree Sequences problem efficiently characterizing degree sequ... 1 0 0 0 0 0
15307 First and Second Order Methods for Online Conv... convolutional sparse representations form spar... 1 0 0 1 0 0
15308 DPCA: Dimensionality Reduction for Discriminat... principal component analysis pca welldocumente... 1 0 0 1 0 0
15309 Modeling Magnetic Anisotropy of Single Chain M... single molecule magnets smms singleion anisotr... 0 1 0 0 0 0
15310 Compressive optical interferometry compressive sensing cs combines data acquisiti... 0 1 0 0 0 0
15311 Automated labeling of bugs and tickets using a... explore solutions automated labeling content b... 0 0 0 1 0 0
15312 Robot gains Social Intelligence through Multim... robots coexist humans social world like crucia... 1 0 0 1 0 0
15313 Preprint Déjà Vu: an FAQ give brief overview arxiv history describe cur... 1 1 0 0 0 0
15314 Implications of hydrodynamical simulations for... recent years realistic hydrodynamical simulati... 0 1 0 0 0 0
15315 Stable Charged Antiparallel Domain Walls in Hy... chargeneutral circ domain walls separate domai... 0 1 0 0 0 0
15316 Healing Data Loss Problems in Android Apps android apps designed cope stopstart events ev... 1 0 0 0 0 0
15317 Emergent SU(N) symmetry in disordered SO(N) sp... strongly disordered spin chains invariant son ... 0 1 0 0 0 0
15318 Imaging structural transitions in organometall... use optothermal molecular energy storage nanos... 0 1 0 0 0 0
15319 Spontaneous antiferromagnetic order and strain... using hybrid exchangecorrelation functional ab... 0 1 0 0 0 0
15320 Big Data Technology Accelerate Genomics Precis... genomics life science research data volume who... 1 0 0 0 0 0
15321 Dirichlet-to-Neumann or Poincaré-Steklov opera... framework laplacian transport described robin ... 0 0 1 0 0 0
15322 Grammar Variational Autoencoder deep generative models wildly successful learn... 0 0 0 1 0 0
15323 Optimal Bayesian Minimax Rates for Unconstrain... obtain optimal bayesian minimax rate unconstra... 0 0 1 1 0 0
15324 Retirement spending and biological age solve lifecycle model consumers chronological ... 0 0 0 0 0 1
15325 Quantum X Waves with Orbital Angular Momentum ... present complete consistent quantum theory gen... 0 1 0 0 0 0
15326 Role of Skin Friction Drag during Flow-Induced... investigate drag reduction due flowinduced rec... 0 1 0 0 0 0
15327 Generalization Error Bounds with Probabilistic... success deep learning led rising interest gene... 0 0 0 1 0 0
15328 Distributed algorithm for empty vehicles manag... paper original heuristic algorithm empty vehic... 1 0 0 0 0 0
15329 Controllability of the 1D Schrödinger equation... derive direct way exact controllability free s... 0 0 1 0 0 0
15330 ICT Green Governance: new generation model bas... strategy sustainable development governance in... 1 0 0 0 0 0
15331 Speaker Selective Beamformer with Keyword Mask... paper addresses problem automatic speech recog... 1 0 0 0 0 0
15332 Proof of an entropy conjecture of Leighton and... prove following conjecture leighton moitra let... 0 0 1 0 0 0
15333 What drives transient behaviour in complex sys... study transient behaviour dynamics complex sys... 0 1 0 0 0 0
15334 Complexity of strong approximation on the sphere assuming widelybelieved arithmetic conjectures... 0 0 1 0 0 0
15335 Correlation between Foam-Bubble Size and Drag ... recently proposed model foam impact air sea dr... 0 1 0 0 0 0
15336 On the Structure of Superconducting Order Para... paper discusses synthesis characterization com... 0 1 0 0 0 0
15337 Rigorous statistical analysis of HTTPS reachab... use secure connections using https default mea... 1 0 0 1 0 0
15338 Exploiting Negative Curvature in Deterministic... paper addresses question whether beneficial op... 0 0 1 0 0 0
15339 Outer automorphism groups of right-angled Coxe... generalise notion separating intersection link... 0 0 1 0 0 0
15340 Retrieving Instantaneous Field of View and Geo... limbimaging ionospheric thermospheric extremeu... 0 1 0 0 0 0
15341 Better than counting: Density profiles from fo... calculating onebody density profiles equilibri... 0 1 0 0 0 0
15342 Integrating self-efficacy into a gamified appr... security exploits include cyber threats comput... 1 0 0 0 0 0
15343 Quantum dynamics of bosons in a two-ring ladde... study quantum dynamics bosehubbard model ladde... 0 1 0 0 0 0
15344 A New Convolutional Network-in-Network Structu... inception network shown provide good performan... 1 0 0 0 0 0
15345 Rapid rotators revisited: absolute dimensions ... analyse kepler lightcurves exoplanet koib tran... 0 1 0 0 0 0
15346 Learning Linear Dynamical Systems via Spectral... present efficient practical algorithm online p... 1 0 0 1 0 0
15347 Time pressure and honesty in a deception game previous experiments found mixed results wheth... 0 0 0 0 1 0
15348 A deep learning approach to real-time parking ... deep learning model proposed predicting blockl... 1 0 0 1 0 0
15349 Time series experiments and causal estimands: ... define causal estimands experiments single tim... 0 0 1 1 0 0
15350 Sparse phase retrieval of one-dimensional sign... paper show sparse signals f representable line... 1 0 1 0 0 0
15351 Atomic and electronic structure of a copper/gr... report results xray spectroscopy raman measure... 0 1 0 0 0 0
15352 Modeling and Control of Humanoid Robots in Dyn... forthcoming applications concerning humanoid r... 1 0 0 0 0 0
15353 Forward-Backward Selection with Early Dropping forwardbackward selection one basic commonlyus... 1 0 0 1 0 0
15354 Ultracold bosonic scattering dynamics off a re... explore impact dimensionality scattering small... 0 1 0 0 0 0
15355 On Lebesgue Integral Quadrature new type quadrature developed gauss quadrature... 0 0 0 1 0 0
15356 Protection Number in Plane Trees protection number plane tree minimal distance ... 0 0 1 0 0 0
15357 Improved bounds for restricted families of pro... e unit sphere mathbbr let pie orthogonal proje... 0 0 1 0 0 0
15358 Differential galois theory and mechanics classical galois theory deals certain finite a... 0 1 1 0 0 0
15359 Note on "Average resistance of toroidal graphs... recent paper ws rossi p frasca f fagnani avera... 1 0 1 0 0 0
15360 A Survey of Runtime Monitoring Instrumentation... runtime monitoring lightweight dynamic verific... 1 0 0 0 0 0
15361 Interpretable Counting for Visual Question Ans... questions require counting variety objects ima... 1 0 0 0 0 0
15362 How consistent is my model with the data? Info... choice model class fundamental statistical lea... 1 0 0 1 0 0
15363 Stable recovery of deep linear networks under ... study deep linear network expressed form matri... 1 0 1 1 0 0
15364 Revisiting Parametricity: Inductives and Unifo... reynolds parametricity theory captures propert... 1 0 0 0 0 0
15365 Characterizing Minimal Semantics-preserving Sl... program schema defines class programs identica... 1 0 0 0 0 0
15366 Exposing Twitter Users to Contrarian News polarized topics often spark discussion debate... 1 0 0 0 0 0
15367 Value-Decomposition Networks For Cooperative M... study problem cooperative multiagent reinforce... 1 0 0 0 0 0
15368 Application of a Shallow Neural Network to Sho... machine learning increasingly prevalent stock ... 1 0 0 0 0 0
15369 A characterization of round spheres in space f... let mathbb qnc complete simplyconnected ndimen... 0 0 1 0 0 0
15370 Oxygen - Dislocation interaction in zirconium ... plasticity zirconium alloys mainly controlled ... 0 1 0 0 0 0
15371 Generating Spatial Spectrum with Metasurfaces fourier optics principle using fourier transfo... 0 1 0 0 0 0
15372 Modal clustering asymptotics with applications... densitybased clustering relies idea linking gr... 0 0 0 1 0 0
15373 Neural Networks for Beginners. A fast implemen... report provides introduction machine learning ... 1 0 0 1 0 0
15374 Spectral determination of semi-regular polygons let us say nsided polygon semiregular circumsc... 0 0 1 0 0 0
15375 Accuracy and validity of posterior distributio... class cressieread empirical likelihoods constr... 0 0 1 1 0 0
15376 A Quillen's Theorem A for strict $\infty$-cate... aim paper prove generalization famous theorem ... 0 0 1 0 0 0
15377 Assessing Excited State Energy Gaps with Time-... set density functionals coming different rungs... 0 1 0 0 0 0
15378 Description of the evolution of inhomogeneitie... use direct numerical integration vlasov equati... 0 1 0 0 0 0
15379 Fast generation of isotropic Gaussian random f... efficient simulation isotropic gaussian random... 0 0 1 1 0 0
15380 Initial-boundary value problem to 2D Boussines... paper concerned initialboundary value problem ... 0 0 1 0 0 0
15381 Profile of a coherent vortex in two-dimensiona... examine velocity profile coherent vortices app... 0 1 0 0 0 0
15382 Computation of life expectancy from incomplete... estimating human longevity computing life expe... 0 0 0 0 1 0
15383 Residual Squeeze VGG16 deep learning given way new era machine learni... 1 0 0 0 0 0
15384 Generic partiality for $\frac{3}{2}$-institutions fracinstitutions introduced extension institut... 0 0 1 0 0 0
15385 Independently Controllable Factors postulated good representation one disentangle... 1 0 0 1 0 0
15386 Determination and biological application of a ... boundary value problem could represent transce... 0 1 0 0 0 0
15387 Setting Boundaries with Memory: Generation of ... ddimensional quantum system subjected periodic... 0 1 0 0 0 0
15388 Collaborative Nested Sampling: Big Data vs. co... data torrent unleashed current upcoming astron... 0 1 0 1 0 0
15389 Latent Room-Temperature T$_c$ in Cuprate Super... ancient phrase roads lead rome applies chemist... 0 1 0 0 0 0
15390 Characterization of minimizers of an anisotrop... paper study anisotropic variant rudinosherfate... 0 0 1 0 0 0
15391 Partial regularity of weak solutions and life-... paper first study partial regularity weak solu... 0 0 1 0 0 0
15392 Distributed control of vehicle strings under f... paper studies optimal control problem string v... 1 0 1 0 0 0
15393 Random Feature-based Online Multi-kernel Learn... kernelbased methods exhibit welldocumented per... 1 0 0 1 0 0
15394 Faster Convergence & Generalization in DNNs deep neural networks gained tremendous popular... 0 0 0 1 0 0
15395 Regular Sequences from Determinantal Conditions paper construct regular sequences arise natura... 0 0 1 0 0 0
15396 Nonlinear Zeeman effect, line shapes and optic... perform zeeman spectroscopy rydberg electromag... 0 1 0 0 0 0
15397 On gradient regularizers for MMD GANs propose principled method gradientbased regula... 0 0 0 1 0 0
15398 Backprop with Approximate Activations for Memo... larger deeper neural network architectures del... 1 0 0 1 0 0
15399 Testing SPARUS II AUV, an open platform for in... paper describes experience preparing testing s... 1 0 0 0 0 0
15400 The Urban Last Mile Problem: Autonomous Drone ... drone delivery hot topic industry past years h... 1 0 0 0 0 0
15401 Extragalactic VLBI surveys in the MeerKAT era past decade seen significant advances cmwave v... 0 1 0 0 0 0
15402 Equicontinuity, orbit closures and invariant c... let x locally compact zerodimensional space le... 0 0 1 0 0 0
15403 The Ramsey property for Banach spaces, Choquet... show gurarij space mathbbg noncommutative anal... 0 0 1 0 0 0
15404 Evasion Attacks against Machine Learning at Te... securitysensitive applications success machine... 1 0 0 0 0 0
15405 Evaluation of Lightweight Block Ciphers in Har... conventional cryptography solutions illsuited ... 1 0 0 0 0 0
15406 The Sample Complexity of Online One-Class Coll... consider online oneclass collaborative filteri... 1 0 0 1 0 0
15407 Coherent long-distance displacement of individ... controlling nanocircuits single electron spin ... 0 1 0 0 0 0
15408 Transparency and Explanation in Deep Reinforce... autonomous ai systems entering human society n... 0 0 0 1 0 0
15409 Refactoring Software Packages via Community De... complexity size software projects increases re... 1 0 0 0 0 0
15410 Mechanism Design in Social Networks paper studies auction design problem seller se... 1 0 0 0 0 0
15411 Prototype Matching Networks for Large-Scale Mu... one fundamental tasks understanding genomics p... 1 0 0 1 0 0
15412 Quantum Multicriticality near the Dirac-Semime... compute effects generic shortrange interaction... 0 1 0 0 0 0
15413 Wider frequency domain for negative refraction... refraction index quantized lossy composite rig... 0 1 0 0 0 0
15414 Model Averaging and its Use in Economics method model averaging become important tool d... 0 0 0 1 0 0
15415 Dropout Feature Ranking for Deep Learning Models deep neural networks dnns achieve stateofthear... 1 0 0 1 0 0
15416 Per-instance Differential Privacy consider refinement differential privacy per i... 1 0 0 1 0 0
15417 Dual quadratic differentials and entire minima... define holomorphic quadratic differentials spa... 0 0 1 0 0 0
15418 Adaptive Modular Exponentiation Methods v.s. P... paper use python implement two efficient modul... 1 0 0 0 0 0
15419 Bayesian radiocarbon modelling for beginners due freely available tailored software bayesia... 0 0 0 1 0 0
15420 Suspended Load Path Tracking Control Using a T... work addresses problem path tracking control s... 1 0 0 0 0 0
15421 Decay Estimates and Strichartz Estimates of Fo... study time decay estimates fourthorder schrdin... 0 0 1 0 0 0
15422 On the Uniqueness of FROG Methods problem recovering signal power spectrum calle... 1 0 1 0 0 0
15423 Riesz sequences and generalized arithmetic pro... purpose note verify results attained admit ext... 0 0 1 0 0 0
15424 Positive Scalar Curvature and Minimal Hypersur... paper develop methods extend minimal hypersurf... 0 0 1 0 0 0
15425 Moving Beyond Sub-Gaussianity in High-Dimensio... concentration inequalities form essential tool... 0 0 0 1 0 0
15426 The additive groups of $\mathbb{Z}$ and $\math... consider four structures mathbbz mathrmsqfmath... 0 0 1 0 0 0
15427 Particle-hole symmetry of charge excitation sp... kotliar ruckenstein slaveboson representation ... 0 1 0 0 0 0
15428 OLÉ: Orthogonal Low-rank Embedding, A Plug and... deep neural networks trained using softmax lay... 1 0 0 1 0 0
15429 Decidability problems in automaton semigroups consider decidability problems selfsimilar sem... 1 0 1 0 0 0
15430 Migration of a Carbon Adatom on a Charged Sing... find negative charges armchair singlewalled ca... 0 1 0 0 0 0
15431 Function Norms and Regularization in Deep Netw... deep neural networks dnns become increasingly ... 1 0 0 1 0 0
15432 Efficiently Clustering Very Large Attributed G... attributed graphs model real networks enrichin... 1 1 0 0 0 0
15433 Thermochemistry and vertical mixing in the tro... thermochemical models used past constrain deep... 0 1 0 0 0 0
15434 Attentive cross-modal paratope prediction antibodies critical part immune system functio... 0 0 0 1 1 0
15435 Tomonaga-Luttinger spin liquid in the spin-1/2... kcualoso highly onedimensional spin inequilate... 0 1 0 0 0 0
15436 Weak Convergence of Stationary Empirical Proce... offer umbrella type result extends weak conver... 0 0 1 1 0 0
15437 Syntax Error Recovery in Parsing Expression Gr... parsing expression grammars pegs formalism use... 1 0 0 0 0 0
15438 Collaborative Pressure Ulcer Prevention: An Au... paper describes pressure ulcers online website... 0 0 0 1 0 0
15439 Brain networks reveal the effects of antipsych... study brain networks including derived functio... 0 0 0 0 1 0
15440 New approach to Minkowski fractional inequalit... paper obtain new results related minkowski fra... 0 0 1 0 0 0
15441 Segmentation of nearly isotropic overlapped tr... major challenges automatic track counting dist... 1 1 0 0 0 0
15442 A Bayesian Hyperprior Approach for Joint Image... recently impressive denoising results achieved... 1 0 0 1 0 0
15443 Development and evaluation of a deep learning ... structure based ligand discovery one successfu... 1 0 0 1 0 0
15444 The Bayesian update: variational formulations ... bayesian update viewed variational problem cha... 0 0 1 1 0 0
15445 Magnetic diode at $T$ = 300 K report finding unidirectional electronic prope... 0 1 0 0 0 0
15446 Efficient mixture model for clustering of spar... paper propose mixture model sparsemix clusteri... 1 0 0 1 0 0
15447 Normalized Total Gradient: A New Measure for M... image registration fundamental issue multispec... 1 0 0 0 0 0
15448 Graphical-model based estimation and inference... many privacy mechanisms reveal highlevel infor... 1 0 0 1 0 0
15449 Hierarchical Kriging for multi-fidelity aero-s... present work consider multifidelity surrogate ... 0 0 0 1 0 0
15450 Unifying PAC and Regret: Uniform PAC Bounds fo... statistical performance bounds reinforcement l... 1 0 0 1 0 0
15451 Alternative Semantic Representations for Zero-... proper semantic representation encoding side i... 1 0 0 0 0 0
15452 Being Corrupt Requires Being Clever, But Detec... consider variation problem corruption detectio... 1 0 0 0 0 0
15453 Computing the homology of basic semialgebraic ... describe analyze algorithm computing homology ... 1 0 1 0 0 0
15454 Deterministic and Randomized Diffusion based I... paper propose distributed iterated hard thresh... 1 0 0 0 0 0
15455 Iterated doubles of the Joker and their realis... let mathcala subhopf algebra mod steenrod alge... 0 0 1 0 0 0
15456 On subtrees of the representation tree in rati... every rational number pq defines rational base... 1 0 0 0 0 0
15457 A Practical Method for Solving Contextual Band... many efficient algorithms strong theoretical g... 1 0 0 1 0 0
15458 Trainable back-propagated functional transfer ... connections nodes fully connected neural netwo... 1 0 0 1 0 0
15459 Multiple Exciton Generation in Chiral Carbon N... use boltzmann transport equation study time ev... 0 1 0 0 0 0
15460 Turaev-Viro invariants, colored Jones polynomi... obtain formula turaevviro invariants link comp... 0 0 1 0 0 0
15461 Credit card fraud detection through parencliti... detection frauds credit card transactions majo... 1 1 0 0 0 0
15462 On the Consistency of Graph-based Bayesian Lea... popular approach semisupervised learning proce... 1 0 0 1 0 0
15463 Bayesian Optimization for Parameter Tuning of ... applying machine learning techniques problems ... 1 0 0 1 0 0
15464 A differential model for growing sandpiles on ... consider system differential equations mongeka... 0 0 1 0 0 0
15465 DCT-like Transform for Image Compression Requi... lowcomplexity point orthogonal approximate dct... 1 0 0 1 0 0
15466 On realizability of sign patterns by real poly... classical descartes rule signs limits number p... 0 0 1 0 0 0
15467 HAlign-II: efficient ultra-large multiple sequ... multiple sequence alignment msa plays key role... 1 0 0 0 0 0
15468 Search for Evergreens in Science: A Functional... evergreens science papers display continual ri... 1 0 0 1 0 0
15469 Tied Hidden Factors in Neural Networks for End... paper propose method model speaker session var... 1 0 0 0 0 0
15470 An Optimal Control Formulation of Pulse-Based ... many applications systemssynthetic biology par... 1 0 1 0 0 0
15471 A Converse to Banach's Fixed Point Theorem and... banachs fixed point theorem contraction maps w... 1 0 1 1 0 0
15472 Improved Discrete RRT for Coordinated Multi-ro... paper addresses problem coordination fleet mob... 1 0 0 0 0 0
15473 A note on the stratification by automorphisms ... note give socalled representative classificati... 0 0 1 0 0 0
15474 Relativistic verifiable delegation of quantum ... importance able verify quantum computation del... 1 0 0 0 0 0
15475 Finiteness of étale fundamental groups by redu... introduce spreading technique deduce finitenes... 0 0 1 0 0 0
15476 Morphological Error Detection in 3D Segmentations deep learning algorithms connectomics rely upo... 1 0 0 1 0 0
15477 Structural Feature Selection for Event Logs consider problem classifying business process ... 1 0 0 1 0 0
15478 Counting $G$-Extensions by Discriminant problem analyzing number number field extensio... 0 0 1 0 0 0
15479 Robust and Efficient Transfer Learning with Hi... introduce new formulation hidden parameter mar... 1 0 0 1 0 0
15480 Lattice Gaussian Sampling by Markov Chain Mont... sampling lattice gaussian distribution plays i... 1 0 0 0 0 0
15481 $S$-Leaping: An adaptive, accelerated stochast... propose sleaping algorithm acceleration gilles... 0 0 0 0 1 0
15482 Diclofenac sodium ion exchange resin complex l... goal present study develop polymeric matrix fi... 0 1 0 0 0 0
15483 Method of precision increase by averaging with... several independent algorithms computercalcula... 0 0 1 0 0 0
15484 On-line Building Energy Optimization using Dee... unprecedented high volumes data becoming avail... 1 0 1 0 0 0
15485 A KL-LUCB Bandit Algorithm for Large-Scale Cro... paper focuses bestarm identification multiarme... 0 0 1 1 0 0
15486 Refractive index tomography with structured il... work introduces novel reinterpretation structu... 0 1 0 0 0 0
15487 Foreign English Accent Adjustment by Learning ... stateoftheart automatic speech recognition asr... 1 0 0 1 0 0
15488 The geometry of hypothesis testing over convex... consider compound testing problem within gauss... 1 0 1 1 0 0
15489 Permutation methods for factor analysis and PCA researchers often datasets measuring features ... 0 0 1 1 0 0
15490 Adapting the CVA model to Leland's framework consider framework proposed burgard kjaer deri... 0 0 0 0 0 1
15491 Blue Sky Ideas in Artificial Intelligence Educ... th symposium educational advances artificial i... 1 0 0 0 0 0
15492 Network Analysis of Particles and Grains arrangements particles forces granular materia... 0 1 1 0 0 0
15493 Perfect Sequences and Arrays over the Unit Qua... introduce several new constructions perfect pe... 1 0 1 0 0 0
15494 Schwarzian conditions for linear differential ... show nonlinear schwarzian differential equatio... 0 1 0 0 0 0
15495 Robust Bayesian Filtering and Smoothing Using ... state estimation heavytailed process measureme... 1 0 0 1 0 0
15496 Multi-pass configuration for Improved Squeezed... study squeezed vacuum field generated hot rb v... 0 1 0 0 0 0
15497 Improved Computation of Involutive Bases paper describe improved algorithms compute jan... 1 0 1 0 0 0
15498 Dynamic Stochastic Approximation for Multi-sta... paper consider multistage stochastic optimizat... 1 0 1 1 0 0
15499 Stability Analysis of Piecewise Affine Systems... constrained model predictive control mpc widel... 1 0 0 0 0 0
15500 Addressing Item-Cold Start Problem in Recommen... traditional recommendation systems rely past u... 1 0 0 1 0 0
15501 End-to-End Monaural Multi-speaker ASR System w... recently endtoend models become popular approa... 1 0 0 0 0 0
15502 Characterization of Calabi--Yau variations of ... sheng zuos characteristic forms invariants var... 0 0 1 0 0 0
15503 Spectral Theory of Infinite Quantum Graphs investigate quantum graphs infinitely many ver... 0 0 1 0 0 0
15504 A comment on "A test of general relativity usi... recently ciufolini et al reported test general... 0 1 0 0 0 0
15505 SWIFT Detection of a 65-Day X-ray Period from ... ngc p ultraluminous xray source harboring accr... 0 1 0 0 0 0
15506 Pushing Configuration-Interaction to the Limit... new largescale parallel multiconfigurational s... 0 1 0 0 0 0
15507 Outer Regions of the Milky Way start gaia era time come address major challen... 0 1 0 0 0 0
15508 Multi-Objective Learning and Mask-Based Post-P... propose multiobjective framework learn seconda... 1 0 0 0 0 0
15509 Latent variable approach to diarization of aud... diarization audio recordings adhoc mobile devi... 1 0 0 0 0 0
15510 A multiple attribute model resolves a conflict... model incentive salience function stimulus val... 0 0 0 0 1 0
15511 Perturbation theory approaches to Anderson and... lecture notes based three lectures given anton... 0 1 0 0 0 0
15512 A measurement of the z = 0 UV background from ... report detection extended halpha emission tip ... 0 1 0 0 0 0
15513 The landscape of the spiked tensor model consider problem estimating large rankone tens... 0 0 1 1 0 0
15514 System Identification of a Multi-timescale Ada... paper parameter estimation problem multitimesc... 0 0 0 0 1 0
15515 Free deterministic equivalent Z-scores of comp... introduce new method qualify goodness fit para... 0 0 1 1 0 0
15516 Numerical algorithms for mean exit time and es... nongaussian stochastic dynamical systems mean ... 0 0 1 0 0 0
15517 Canonical Models and the Complexity of Modal T... study modal team logic mtl teamsemantical exte... 1 0 0 0 0 0
15518 CoT: Cooperative Training for Generative Model... propose cooperative training cot training gene... 0 0 0 1 0 0
15519 Iterated function systems consisting of phi-ma... associate iterated function system consisting ... 0 0 1 0 0 0
15520 Decay Rates of the Solutions to the Thermoelas... paper study energy decay thermoelastic bresse ... 0 0 1 0 0 0
15521 Baryogenesis at a Lepton-Number-Breaking Phase... study scenario baryon asymmetry universe arise... 0 1 0 0 0 0
15522 Contact resistance between two REBCO tapes und... noinsulation ni rebco magnets many advantages ... 0 1 0 0 0 0
15523 Stochastic Backward Euler: An Implicit Gradien... paper propose implicit gradient descent algori... 1 0 0 1 0 0
15524 The Frobenius number for sequences of triangul... compute frobenius number sequences triangular ... 0 0 1 0 0 0
15525 Information-entropic analysis of Korteweg--de ... solitary waves propagation baryonic density pe... 0 1 0 0 0 0
15526 The photon identification loophole in EPRB exp... recent einsteinpodolskyrosenbohm experiments g... 0 1 0 0 0 0
15527 Tilings of the plane with unit area triangles ... exist tilings plane pairwise noncongruent tria... 1 0 1 0 0 0
15528 The cauchy problem for radially symmetric homo... paper study cauchy problem radially symmetric ... 0 0 1 0 0 0
15529 Network Dissection: Quantifying Interpretabili... propose general framework called network disse... 1 0 0 0 0 0
15530 Systole inequalities for arithmetic locally sy... paper study systole growth arithmetic locally ... 0 0 1 0 0 0
15531 Featured Weighted Automata featured transition system transition system t... 1 0 0 0 0 0
15532 Schrödinger model and Stratonovich-Weyl corres... introduce schrdinger model unitary irreducible... 0 0 1 0 0 0
15533 Estimation in emerging epidemics: biases and r... analysing new emerging infectious disease outb... 0 0 0 1 0 0
15534 Long-Term Evolution of Genetic Programming Pop... evolve binary mux trees generations evolving p... 1 0 0 0 0 0
15535 A Multi-Scale Analysis of 27,000 Urban Street ... openstreetmap offers valuable source worldwide... 1 1 0 0 0 0
15536 Towards Detection of Exoplanetary Rings Via Tr... detection planetary ring exoplanets remains on... 0 1 0 0 0 0
15537 SiMon: Simulation Monitor for Computational As... scientific discovery via numerical simulations... 0 1 0 0 0 0
15538 Asymptotic and bootstrap tests for the dimensi... dimension reduction often preliminary step ana... 0 0 1 1 0 0
15539 Pseudoconcavity of flag domains: The method of... flag domain real g complex semismiple lie grou... 0 0 1 0 0 0
15540 Rule Formats for Nominal Process Calculi nominal transition systems ntss parrow et al d... 1 0 0 0 0 0
15541 Tilings with noncongruent triangles solve problem r nandakumar proving tiling plan... 1 0 1 0 0 0
15542 Phase limitations of Zames-Falb multipliers phase limitations continuoustime discretetime ... 1 0 1 0 0 0
15543 Fragmentation of vertically stratified gaseous... investigate using hydrodynamic simulations fra... 0 1 0 0 0 0
15544 Learning Local Receptive Fields and their Weig... propose simple generic layer formulation exten... 1 0 0 0 0 0
15545 Galaxies with Shells in the Illustris Simulati... stellar shells low surface brightness arcs ove... 0 1 0 0 0 0
15546 Runtime Verification of Temporal Properties ov... present monitoring approach verifying systems ... 1 0 0 0 0 0
15547 Deep Learning for Electromyographic Hand Gestu... recent years deep learning algorithms become i... 0 0 0 1 0 0
15548 Adaptive Non-uniform Compressive Sampling for ... paper adaptive nonuniform compressive sampling... 1 0 0 1 0 0
15549 Enabling Reasoning with LegalRuleML order automate verification process regulatory... 1 0 0 0 0 0
15550 Combinatorial distance geometry in normed spaces survey problems results combinatorial geometry... 0 0 1 0 0 0
15551 When is Network Lasso Accurate: The Vector Case recently proposed learning algorithm massive n... 1 0 0 0 0 0
15552 Surrogate Aided Unsupervised Recovery of Spars... consider recovery regression coefficients deno... 0 0 1 1 0 0
15553 Superior lattice thermal conductance of single... way nonequilibrium greens function simulations... 0 1 0 0 0 0
15554 The liar paradox is a real problem liar paradox widely seen serious problem try e... 0 0 1 0 0 0
15555 High-dimensional ABC chapter highdimensional abc appear forthcoming... 0 0 0 1 0 0
15556 Automating Release of Deep Link APIs for Andro... unlike web web page global url reach specific ... 1 0 0 0 0 0
15557 Refractive index measurements of single, spher... chapter introduce digital holographic microsco... 0 0 0 0 1 0
15558 Tuple-oriented Compression for Large-scale Min... data compression popular technique improving e... 1 0 0 1 0 0
15559 Program Language Translation Using a Grammar-D... task translating programming languages differs... 1 0 0 1 0 0
15560 In-Place Initializable Arrays initializing elements array specified value ba... 1 0 0 0 0 0
15561 A Simple Exponential Family Framework for Zero... present simple generative framework learning p... 1 0 0 1 0 0
15562 Modeling Hormesis Using a Non-Monotonic Copula... paper presents probabilistic method capturing ... 0 0 0 1 0 0
15563 Joint Task Offloading and Resource Allocation ... mobileedge computing mec emerging paradigm pro... 1 0 0 0 0 0
15564 The Sum Over Topological Sectors and $θ$ in th... discuss three spacetime dimensional mathbbcmat... 0 1 1 0 0 0
15565 Continued Kinematic and Photometric Investigat... observed solartype binaries within pc sun prev... 0 1 0 0 0 0
15566 A Note on Multiparty Communication Complexity ... integers n k density halesjewett number cnk de... 1 0 0 0 0 0
15567 First Results from Using Game Refinement Measu... paper explores entertainment experience learni... 1 0 0 0 0 0
15568 Structured Local Optima in Sparse Blind Deconv... blind deconvolution ubiquitous problem recover... 0 0 0 1 0 0
15569 The empirical Christoffel function with applic... illustrate potential applications machine lear... 1 0 0 0 0 0
15570 Around power law for PageRank components in Bu... paper investigate power law pagerank component... 1 0 1 0 0 0
15571 Cash-settled options for wholesale electricity... wholesale electricity market designs practice ... 1 0 1 0 0 0
15572 Power in High-Dimensional Testing Problems fan et al recently introduced remarkable metho... 0 0 1 1 0 0
15573 Deep Learning for Precipitation Nowcasting: A ... goal making highresolution forecasts regional ... 1 0 0 0 0 0
15574 PAWS: A Tool for the Analysis of Weighted Systems paws tool analyse behaviour weighted automata ... 1 0 0 0 0 0
15575 Quantum-optical spectroscopy for plasma electr... measurements plasma electric fields essential ... 0 1 0 0 0 0
15576 ROSA: R Optimizations with Static Analysis r popular language programming environment dat... 1 0 0 0 0 0
15577 Human Perception of Performance humans routinely asked evaluate performance in... 1 0 0 1 0 0
15578 Practical Distance Functions for Path-Planning... path planning important problem robotics one w... 1 0 0 0 0 0
15579 FPGA-Based CNN Inference Accelerator Synthesiz... deeplearning inference accelerator synthesized... 1 0 0 1 0 0
15580 The set of forces that ideal trusses, or wire ... problem determining multiplets forces sets for... 0 1 0 0 0 0
15581 A Thematic Study of Requirements Modeling and ... last decade researchers engineers developed va... 1 0 0 0 0 0
15582 On predictive density estimation with addition... based independently distributed x sim nptheta ... 0 0 1 1 0 0
15583 Optimizing Channel Selection for Seizure Detec... interpretation electroencephalogram eeg signal... 0 0 0 1 1 0
15584 Bases of standard modules for affine Lie algeb... feiginstoyanovskys type subspaces affine lie a... 0 0 1 0 0 0
15585 Connectivity-Driven Brain Parcellation via Con... present two related methods deriving connectiv... 0 0 0 1 1 0
15586 Baryon acoustic oscillations from the complete... present measurement baryon acoustic oscillatio... 0 1 0 0 0 0
15587 Gamma-ray and Optical Oscillations of 0716+714... examine gammaray optical light curves three br... 0 1 0 0 0 0
15588 Antibonding Ground state of Adatom Molecules i... ground state diatomic molecules nature inevita... 0 1 0 0 0 0
15589 Baby MIND: A magnetized segmented neutrino det... tk tokaitokamioka longbaseline neutrino experi... 0 1 0 0 0 0
15590 Applications of noncommutative deformations general class contractions variety x base disc... 0 0 1 0 0 0
15591 Photometric and radial-velocity time-series of... present first simultaneous photometric spectro... 0 1 0 0 0 0
15592 Particlelike scattering states in a microwave ... realize scattering states lossy chaotic twodim... 0 1 0 0 0 0
15593 Market Self-Learning of Signals, Impact and Op... present simple model nonequilibrium selforgani... 0 0 0 0 0 1
15594 Current-driven skyrmion dynamics in disordered... theoretical study currentdriven dynamics magne... 0 1 0 0 0 0
15595 On the Rigidity of Riemannian-Penrose Inequali... paper prove rigidity result equality case penr... 0 0 1 0 0 0
15596 An Algebra Model for the Higher Order Sum Rules introduce algebra model study higher order sum... 0 0 1 0 0 0
15597 On maxispaces of nonparametric tests problems nonparametric hypothesis testing intr... 0 0 1 1 0 0
15598 Learning Unsupervised Learning Rules major goal unsupervised learning discover data... 0 0 0 1 0 0
15599 Conformal Nanocarbon Coating of Alumina Nanocr... conformal coating technique nanocarbon develop... 0 1 0 0 0 0
15600 Characterizing spectral continuity in SDSS u'g... context th release sdss moving object catalog ... 0 1 0 0 0 0
15601 Transverse-spin correlations of the random tra... critical behavior random transversefield ising... 0 1 0 0 0 0
15602 Multivariate stable distributions and their ap... paper extend known methodology fitting stable ... 0 0 0 0 0 1
15603 Beautiful and damned. Combined effect of conte... user participation online communities driven i... 1 0 0 0 0 0
15604 SySeVR: A Framework for Using Deep Learning to... detection software vulnerabilities vulnerabili... 0 0 0 1 0 0
15605 Differentially Private Learning of Undirected ... investigate problem learning discrete undirect... 1 0 0 1 0 0
15606 Phase unwinding, or invariant subspace decompo... consider orthogonal decompositions invariant s... 0 0 1 0 0 0
15607 SalProp: Salient object proposals via aggregat... paper propose novel object proposal generation... 1 0 0 0 0 0
15608 Quantum gap and spin-wave excitations in the K... study effects quantum fluctuations dynamical g... 0 1 0 0 0 0
15609 Sparse Gaussian ICA independent component analysis ica cornerstone... 0 0 0 1 0 0
15610 Supervisor Synthesis of POMDP based on Automat... general thus popular model autonomous systems ... 1 0 0 0 0 0
15611 A Pseudo Knockoff Filter for Correlated Features barber candes introduced new variable selectio... 0 0 1 1 0 0
15612 $μ$-constant monodromy groups and Torelli resu... paper sequel gh notion marking isolated hypers... 0 0 1 0 0 0
15613 SoaAlloc: Accelerating Single-Method Multiple-... propose soaalloc dynamic object allocator sing... 1 0 0 0 0 0
15614 Probabilistic risk bounds for the characteriza... radiological characterization contaminated ele... 0 0 1 1 0 0
15615 Automatic Backward Differentiation for America... note derive backward automatic differentiation... 1 0 0 0 0 0
15616 The Belgian repository of fundamental atomic d... fundamental atomic parameters oscillator stren... 0 1 0 0 0 0
15617 High-Precision Calculations in Strongly Couple... hamiltonian truncation aka truncated spectrum ... 0 1 0 0 0 0
15618 State Distribution-aware Sampling for Deep Q-l... critical challenging problem reinforcement lea... 0 0 0 1 0 0
15619 Energy Trading between microgrids Individual C... high penetration renewable energy source makes... 1 0 0 0 0 0
15620 Learning Kolmogorov Models for Binary Random V... summarize recent findings proposed framework l... 0 0 0 1 0 0
15621 Möbius topological superconductivity in UPt$_3$ intensive studies three decades elucidated mul... 0 1 0 0 0 0
15622 Sparse Identification and Estimation of High-D... vector autoregressive moving average varma mod... 0 0 0 1 0 0
15623 Information Retrieval and Criticality in Parit... investigating information flow general parityt... 0 1 0 0 0 0
15624 A practical guide and software for analysing p... popular strategies capture subjective judgment... 1 0 0 1 0 0
15625 Web-Based Implementation of Travelling Salespe... world connected internet abundance internet us... 1 0 0 0 0 0
15626 Random Spatial Networks: Small Worlds without ... random network models play prominent role mode... 0 1 0 0 0 0
15627 The evolution of magnetic hot massive stars: I... largescale dipolar surface magnetic fields det... 0 1 0 0 0 0
15628 The finite gap method and the analytic descrip... focusing nls equation simplest universal model... 0 1 0 0 0 0
15629 First Discoveries of z>6 Quasars with the DECa... present first discoveries survey zgtrsim quasa... 0 1 0 0 0 0
15630 On unique continuation for solutions of the Sc... prove solution timedependent schrdinger equati... 0 0 1 0 0 0
15631 Particle-hole Asymmetry in the Cuprate Pseudog... one puzzling features hightemperature cuprate ... 0 1 0 0 0 0
15632 Numerically modeling Brownian thermal noise in... thermal noise expected one noise sources limit... 0 1 0 0 0 0
15633 Net2Vec: Quantifying and Explaining how Concep... effort understand meaning intermediate represe... 0 0 0 1 0 0
15634 Can the removal of molecular cloud envelopes b... investigate star formation efficiency signific... 0 1 0 0 0 0
15635 Joint Rate and Resource Allocation in Hybrid D... hybrid digitalanalog hda systems resource allo... 1 0 0 0 0 0
15636 Relaxation to a Phase-locked Equilibrium State... present experimental study nonequilibrium tunn... 0 1 0 0 0 0
15637 A Hybrid Model for Role-related User Classific... aid variety research studies propose twirole h... 1 0 0 0 0 0
15638 SecureBoost: A Lossless Federated Learning Fra... protection user privacy important concern mach... 1 0 0 1 0 0
15639 Selective reflection from Rb layer with thickn... studied peculiarities selective reflection rb ... 0 1 0 0 0 0
15640 The Complexity of Abstract Machines lambdacalculus peculiar computational model wh... 1 0 0 0 0 0
15641 Recent progress in the Zimmer program paper viewed sequel authors long survey zimmer... 0 0 1 0 0 0
15642 Restricted Causal Inference Algorithm paper proposes new algorithm recovery belief n... 1 0 0 0 0 0
15643 Fiber plucking by molecular motors yields larg... mechanical properties cell depend crucially te... 0 0 0 0 1 0
15644 Demographics of News Sharing in the U.S. Twitt... widespread adoption dissemination online news ... 1 0 0 0 0 0
15645 Dynamics and fragmentation mechanism of (CH3-C... interaction chchptch methylcyclopentadienyltri... 0 1 0 0 0 0
15646 On the robustness of the H$β$ Lick index as a ... examine hbeta lick index sample sim massive rm... 0 1 0 0 0 0
15647 Finite-size effects in a stochastic Kuramoto m... present collective coordinate approach study c... 0 1 0 0 0 0
15648 The normal distribution is freely selfdecompos... class selfdecomposable distributions free prob... 0 0 1 0 0 0
15649 Simplex Queues for Hot-Data Download cloud storage systems hot data usually replica... 1 0 0 0 0 0
15650 Voting power of political parties in the Senat... binomial system electoral system unique world ... 0 0 0 0 0 1
15651 A uniform stability principle for dual lattices prove highly uniform stability almostnear theo... 0 0 1 0 0 0
15652 pandapower - an Open Source Python Tool for Co... pandapower python based bsdlicensed power syst... 1 0 0 0 0 0
15653 Temporal oscillations of light transmission th... consider lightinduced binding motion dielectri... 0 1 0 0 0 0
15654 Berry-Esséen bounds for parameter estimation o... study rates convergence central limit theorems... 0 0 1 1 0 0
15655 Anomaly Detection via Minimum Likelihood Gener... anomaly detection aims detect abnormal events ... 0 0 0 1 0 0
15656 Supercurrent as a Probe for Topological Superc... magnetic adatom chain proximity coupled conven... 0 1 0 0 0 0
15657 Experimental statistics of veering triangulations certain fibered hyperbolic manifolds admit mat... 0 0 1 0 0 0
15658 Concept Drift and Anomaly Detection in Graph S... graph representations offer powerful intuitive... 1 0 0 1 0 0
15659 Lat-Net: Compressing Lattice Boltzmann Flow Si... computational fluid dynamics cfd hugely import... 0 1 0 1 0 0
15660 Second-Order Optimization for Non-Convex Machi... firstorder optimization methods stochastic gra... 1 0 0 1 0 0
15661 Computational Approaches for Stochastic Shorte... consider stochastic shortest path ssp problem ... 1 0 0 0 0 0
15662 One-dimensional in-plane edge domain walls in ... study existence properties onedimensional edge... 0 1 1 0 0 0
15663 Nontrivial Turmites are Turing-universal turmit turing machine works twodimensional gri... 1 1 0 0 0 0
15664 Dandelion: Redesigning the Bitcoin Network for... bitcoin cryptocurrencies surged popularity las... 1 0 0 0 0 0
15665 A characterisation of Lie algebras amongst ant... let mathbbk infinite field prove variety antic... 0 0 1 0 0 0
15666 Characteristics of a magneto-optical trap of m... present properties magnetooptical trap mot caf... 0 1 0 0 0 0
15667 Reconstructing a Lattice Equation: a Non-Auton... paper construct nonautonomous version hietarin... 0 1 0 0 0 0
15668 Adversarial Training Versus Weight Decay performancecritical machine learning models ro... 0 0 0 1 0 0
15669 Ray tracing method for stereo image synthesis ... paper presents realization approach spatial st... 1 0 0 0 0 0
15670 Numerical investigation of gapped edge states ... fractional quantum hallsuperconductor heterost... 0 1 0 0 0 0
15671 Multimodal Observation and Interpretation of S... paper present first results pilot experiment c... 1 0 0 1 0 0
15672 Theoretical limitations of Encoder-Decoder GAN... encoderdecoder gans architectures eg bigan ali... 1 0 0 1 0 0
15673 Ground state sign-changing solutions for a cla... paper concerned existence least energy signcha... 0 0 1 0 0 0
15674 Monads on higher monoidal categories study action monads categories equipped severa... 0 0 1 0 0 0
15675 A Review of Augmented Reality Applications for... evacuation one main disaster management soluti... 1 0 0 0 0 0
15676 Topology in time-reversal symmetric crystals discovery topological insulators reformed mode... 0 1 0 0 0 0
15677 Deep Convolutional Neural Network Inference wi... deep convolutional neural network cnn inferenc... 1 0 0 0 0 0
15678 Voids in the Cosmic Web as a probe of dark energy formation large voids cosmic web initial adiab... 0 1 0 0 0 0
15679 Templated ligation can create a hypercycle rep... stability sequence replication crucial emergen... 0 0 0 0 1 0
15680 Variational characterization of H^p paper obtain variational characterization hard... 0 0 1 0 0 0
15681 Towards Deep Learning Models Resistant to Adve... recent work demonstrated neural networks vulne... 1 0 0 1 0 0
15682 Internal delensing of Planck CMB temperature a... present first internal delensing cmb maps temp... 0 1 0 0 0 0
15683 Renaissance: Self-Stabilizing Distributed SDN ... introducing programmability automated verifica... 1 0 0 0 0 0
15684 Robust and Scalable Power System State Estimat... todays cyberenabled smart grids high penetrati... 1 0 0 0 0 0
15685 A new algorithm for constraint satisfaction pr... article provide new algorithm solving constrai... 0 0 1 0 0 0
15686 Testing of General Relativity with Geodetic VLBI geodetic vlbi technique capable measuring suns... 0 1 0 0 0 0
15687 An unbiased estimator for the ellipticity from... unbiased estimator ellipticity object noisy im... 0 1 1 1 0 0
15688 Spectral estimation of the percolation transit... several spectral bounds percolation transition... 1 1 0 1 0 0
15689 Collapsibility to a subcomplex of a given dime... paper extend works tancer malgouyres francs sh... 1 0 1 0 0 0
15690 Run, skeleton, run: skeletal model in a physic... paper present approach solve physicsbased rein... 1 0 0 1 0 0
15691 Affect Estimation in 3D Space Using Multi-Task... acquisition labeled training samples affective... 1 0 0 1 0 0
15692 Sparse Markov Decision Processes with Causal S... paper sparse markov decision process mdp novel... 1 0 0 1 0 0
15693 Mid-infrared Spectroscopic Observations of the... dustforming nova v oph unique first nova provi... 0 1 0 0 0 0
15694 An invitation to 2D TQFT and quantization of H... article consists two parts part present formul... 0 0 1 0 0 0
15695 An Ensemble Classification Algorithm Based on ... data stream mining problem caused widely conce... 1 0 0 0 0 0
15696 Competition between disorder and interaction e... investigate lowenergy scaling behavior interac... 0 1 0 0 0 0
15697 Mixing properties and central limit theorem fo... positively resp negatively associated point pr... 0 0 1 1 0 0
15698 Computational landscape of user behavior on so... increasing abundance digital footprints left h... 1 0 0 1 0 0
15699 Simulating optical coherence tomography for ob... present finite difference time domain fdtd mod... 0 1 0 0 0 0
15700 On Achievable Rates of AWGN Energy-Harvesting ... paper investigates achievable rates additive w... 1 0 1 0 0 0
15701 Probabilistic Projection of Subnational Total ... consider problem probabilistic projection tota... 0 0 0 1 0 0
15702 Optimising the topological information of the ... persistent homology typically studies evolutio... 1 0 1 0 0 0
15703 Transmission XMCD-PEEM imaging of an engineere... using focused electronbeaminduced deposition f... 0 1 0 0 0 0
15704 A Deep Neural Network Surrogate for High-Dimen... developing efficient numerical algorithms solu... 1 0 0 1 0 0
15705 Fluid photonic crystal from colloidal quantum ... study optical forces acting upon semiconductor... 0 1 0 0 0 0
15706 Subject Selection on a Riemannian Manifold for... intersubject variability individuals poses cha... 1 0 0 1 0 0
15707 On a Surprising Oversight by John S. Bell in t... bell inequalities usually derived assuming loc... 0 1 0 0 0 0
15708 On the higher derivatives of the inverse tange... paper find explicit formulas higher order deri... 0 0 1 0 0 0
15709 Science with e-ASTROGAM (A space mission for M... eastrogam enhanced astrogam breakthrough obser... 0 1 0 0 0 0
15710 $J_1$-$J_2$ square lattice antiferromagnetism ... report magnetic thermodynamic properties mo ma... 0 1 0 0 0 0
15711 Eventness: Object Detection on Spectrograms fo... paper introduce concept eventness audio event ... 1 0 0 0 0 0
15712 Bayesian Scale Estimation for Monocular SLAM B... work proposes new online algorithm estimating ... 1 0 0 0 0 0
15713 A Linear-time Algorithm for Orthogonal Watchma... given orthogonal polygon p n vertices goal wat... 1 0 0 0 0 0
15714 A note on surjectivity of piecewise affine map... standard theorem nonsmooth analysis states pie... 0 0 1 0 0 0
15715 Intrinsic Gaussian processes on complex constr... propose class intrinsic gaussian processes ing... 0 0 0 1 0 0
15716 Adaptive Interference Removal for Un-coordinat... existing approaches coexisting communicationra... 1 0 0 1 0 0
15717 Learning Credible Models many settings important model capable providin... 1 0 0 1 0 0
15718 The common patterns of abundance: the log seri... language corpus probability word occurs n time... 0 0 0 0 1 0
15719 Modular meta-learning many prediction problems arise context robotic... 1 0 0 1 0 0
15720 Universal experimental test for the role of fr... propose universal experiment measure different... 0 1 0 0 0 0
15721 Gauss-Bonnet for matrix conformally rescaled D... derive explicit formula scalar curvature twoto... 0 0 1 0 0 0
15722 Multi-Pose Face Recognition Using Hybrid Face ... paper presents multipose face recognition appr... 1 0 0 0 0 0
15723 Freed-Moore K-theory twisted equivariant ktheory given freed moore ... 0 0 1 0 0 0
15724 Dirac dispersion and non-trivial Berry's phase... report observations magnetoresistance quantum ... 0 1 0 0 0 0
15725 Fréchet Analysis Of Variance For Random Objects frchet mean variance provide way obtaining mea... 0 0 1 1 0 0
15726 Backward Simulation of Stochastic Process usin... backward simulation stochastic process defined... 0 1 0 1 0 0
15727 Spectral Inference Networks: Unifying Spectral... present spectral inference networks framework ... 0 0 0 1 0 0
15728 Heavy tailed spatial autocorrelation models appropriate models spatially autocorrelated da... 0 0 0 1 0 0
15729 Only Bayes should learn a manifold (on the est... investigate learning differential geometric st... 0 0 0 1 0 0
15730 Predictive modelling of training loads and inj... investigate whether training load monitoring d... 0 0 0 1 0 0
15731 Level structure of deeply bound levels of the ... spectroscopically investigate hyperfine rotati... 0 1 0 0 0 0
15732 The mod 2 cohomology of the infinite families ... describe hopf ring structure direct sum cohomo... 0 0 1 0 0 0
15733 Geometry-Based Optimization of One-Way Quantum... oneway quantum computation wqc model initial h... 1 0 0 0 0 0
15734 Categorical entropy for Fourier-Mukai transfor... note shall compute categorical entropy autoequ... 0 0 1 0 0 0
15735 Machine Learning Approach to RF Transmitter Id... development widespread use wireless devices re... 1 0 0 1 0 0
15736 Analyzing Chaos in Higher Order Disordered Qua... study subdiffusive wavepacket spreading disord... 0 1 0 0 0 0
15737 UV/EUV High-Throughput Spectroscopic Telescope... origin activity solar corona longstanding prob... 0 1 0 0 0 0
15738 Investigating Collaboration Within Online Comm... online creative communities able develop large... 1 0 0 0 0 0
15739 Safe Non-blocking Synchronization in Ada 202x mutualexclusion property locks stands way scal... 1 0 0 0 0 0
15740 Rotational Unit of Memory concepts unitary evolution matrices associativ... 1 0 0 1 0 0
15741 A Bayesian Approach for Inferring Local Causal... gene regulatory networks play crucial role con... 0 0 0 1 1 0
15742 $η$-metric structures paper discuss recent results generalized metri... 0 0 1 0 0 0
15743 Statistical Analysis of Precipitation Events present paper demonstrate results statistical ... 0 0 0 1 0 0
15744 Reinforced Cross-Modal Matching and Self-Super... visionlanguage navigation vln task navigating ... 1 0 0 0 0 0
15745 Proton Beam Intensity Upgrades for the Neutrin... fermilab committed upgrading accelerator compl... 0 1 0 0 0 0
15746 On indecomposable $τ$-rigid modules over clust... given clustertilted algebra tame type proved d... 0 0 1 0 0 0
15747 Tensors Come of Age: Why the AI Revolution wil... article discusses automation tensor algorithms... 1 0 0 0 0 0
15748 Discriminative conditional restricted Boltzman... conventional methods estimating latent behavio... 1 0 0 0 0 0
15749 LLASSO: A linear unified LASSO for multicollin... propose rescaled lasso premultipying lasso mat... 0 0 0 1 0 0
15750 Filamentary fragmentation in a turbulent medium present results smoothed particle hydrodynamic... 0 1 0 0 0 0
15751 Uncovering the role of flow rate in redox-acti... redox flow batteries rfbs potential solutions ... 0 1 0 0 0 0
15752 The magnetocaloric effect from the point of vi... work analyzed magnetocaloric effect mce tsalli... 0 1 0 0 0 0
15753 Reheating, thermalization and non-thermal grav... framework mssm inflation matter gravitino prod... 0 1 0 0 0 0
15754 Emotion Controlled Spectrum Mobility Scheme fo... blind spots one causes road accidents hilly fl... 1 0 0 0 0 0
15755 Rota-Baxter modules toward derived functors paper study rotabaxter modules emphasis role p... 0 0 1 0 0 0
15756 Video Pandemics: Worldwide Viral Spreading of ... viral videos reach global penetration travelin... 1 0 0 0 0 0
15757 Orthogonal foliations on riemannian manifolds work find equation relates ricci curvature rie... 0 0 1 0 0 0
15758 Mapping Objects to Persistent Predicates logic programming prolog widely used supply pe... 1 0 0 0 0 0
15759 Efficient modified Jacobi-Bernstein basis tran... paper show transformations modified jacobi ber... 0 0 1 0 0 0
15760 Cospectral mates for the union of some classes... let ngeq kgeq two integers subset dotsk graph ... 1 0 1 0 0 0
15761 Electromagnetic properties of terbium gallium ... electromagnetic properties single crystal terb... 0 1 0 0 0 0
15762 The abundance of compact quiescent galaxies si... set quantify number density quiescent massive ... 0 1 0 0 0 0
15763 Combining Probabilistic Load Forecasts probabilistic load forecasts provide comprehen... 0 0 0 1 0 0
15764 Stability and instability of the sub-extremal ... show nonlinear stability instability results s... 0 0 1 0 0 0
15765 Using JAGS for Bayesian Cognitive Diagnosis Mo... article jags software program systematically i... 0 0 0 1 0 0
15766 Deep Convolutional Framelet Denosing for Low-D... model based iterative reconstruction mbir algo... 1 0 0 1 0 0
15767 Static Analysis of Deterministic Negotiations negotiation diagrams model concurrent computat... 1 0 0 0 0 0
15768 Wild character varieties, meromorphic Hitchin ... theory hitchin systems something like global t... 0 1 1 0 0 0
15769 A mathematical characterization of confidence ... confidence fundamental concept statistics tend... 0 0 1 1 0 0
15770 Optimal Control Problems with Symmetry Breakin... investigate symmetry reduction optimal control... 1 0 1 0 0 0
15771 Multiplying a Gaussian Matrix by a Gaussian Ve... provide new simple characterization multivaria... 0 0 1 1 0 0
15772 NEON+: Accelerated Gradient Methods for Extrac... accelerated gradient ag methods breakthroughs ... 0 0 0 1 0 0
15773 Optimal Energy Distribution with Energy Packet... use energy packet network paradigms investigat... 1 0 0 0 0 0
15774 A refined version of Grothendieck's anabelian ... paper prove refined version theorem tamagawa m... 0 0 1 0 0 0
15775 A discussion about LNG Experiment: Irreversibl... recent paper lopezsuarez neri l gammaitoni lng... 1 0 0 0 0 0
15776 On $(σ,δ)$-skew McCoy modules let sigmadelta quasi derivation ring r mr righ... 0 0 1 0 0 0
15777 Bivariate Exponentiated Generalized Linear Exp... aim paper define bivariate exponentiated gener... 0 0 1 1 0 0
15778 Soft-proton exchange on Magnesium-oxide-doped ... despite attractive features congruentmelted li... 0 1 0 0 0 0
15779 Optimized Cost per Click in Taobao Display Adv... taobao largest online retail platform world pr... 1 0 0 1 0 0
15780 Recursive constructions and their maximum like... consider recursive decoding techniques rm code... 1 0 0 0 0 0
15781 Development of a 32-channel ASIC for an X-ray ... report design performance mixedsignal applicat... 0 1 0 0 0 0
15782 Impact of Detour-Aware Policies on Maximizing ... paper provides efficient solutions maximize pr... 1 0 1 0 0 0
15783 Optimal lower exponent for the higher gradient... study higher gradient integrability distributi... 0 0 1 0 0 0
15784 On the existence of young embedded clusters at... careful analyses photometric star count data a... 0 1 0 0 0 0
15785 The risk of contagion spreading and its optima... global crisis provoked heightened interest amo... 0 0 0 0 0 1
15786 A Learning-to-Infer Method for Real-Time Power... identifying arbitrary topologies power network... 1 0 0 1 0 0
15787 Convergence analysis of belief propagation for... gaussian belief propagation bp widely used dis... 1 0 0 1 0 0
15788 Banach-Alaoglu theorem for Hilbert $H^*$-module provided analogue banachalaoglu theorem hilber... 0 0 1 0 0 0
15789 An Overflow Free Fixed-point Eigenvalue Decomp... consider problem enabling robust range estimat... 1 0 0 0 0 0
15790 Incentivized Advertising: Treatment Effect and... incentivized advertising new ad format gaining... 0 0 0 1 0 0
15791 Prospects for indirect MeV Dark Matter detecti... selfannihilation dark matter particles mass me... 0 1 0 0 0 0
15792 Special cases of the orbifold version of Zvonk... prove orbifold version zvonkines relsv formula... 0 0 1 0 0 0
15793 From homogeneous metric spaces to Lie groups study connected locally compact metric spaces ... 0 0 1 0 0 0
15794 Growth of Sobolev norms for abstract linear Sc... prove abstract theorem giving langle trangleep... 0 0 1 0 0 0
15795 Trust-Based Collaborative Filtering: Tackling ... userbased collaborative filtering cf one popul... 1 0 0 0 0 0
15796 Experimental parametric study of the self-cohe... direct imaging exoplanets requires detection f... 0 1 0 0 0 0
15797 A Comparison of Parallel Graph Processing Impl... rapidly growing number large network analysis ... 1 0 0 0 0 0
15798 A note on optimization with Morse polynomials paper prove gradient ideal morse polynomial ra... 0 0 1 0 0 0
15799 Compression of Deep Neural Networks for Image ... image instance retrieval problem retrieving im... 1 0 0 0 0 0
15800 Finite temperature disordered bosons in two di... study phase transitions two dimensional weakly... 0 1 0 0 0 0
15801 Morphology and properties evolution upon ring-... work study thermal conductivity insitu ringope... 0 1 0 0 0 0
15802 Financial density forecasts: A comprehensive c... investigate forecasting ability commonly used ... 0 0 0 1 0 1
15803 Deep Room Recognition Using Inaudible Echos recent years seen increasing need location awa... 1 0 0 0 0 0
15804 Linguistic Diversities of Demographic Groups i... massive popularity online social media provide... 1 0 0 0 0 0
15805 And That's A Fact: Distinguishing Factual and ... investigate characteristics factual emotional ... 1 0 0 0 0 0
15806 A conservative sharp-interface method for comp... paper develop conservative sharpinterface meth... 0 1 0 0 0 0
15807 Complexity of products: the effect of data reg... among several developments field economic comp... 0 0 0 0 0 1
15808 A review on applications of two-dimensional ma... twodimensional materials graphene mos attracti... 0 1 0 0 0 0
15809 A variety of elastic anomalies in orbital-acti... perform ultrasound velocity measurements singl... 0 1 0 0 0 0
15810 Anomaly Detection using One-Class Neural Networks propose oneclass neural network ocnn model det... 0 0 0 1 0 0
15811 Low Cost, Open-Source Testbed to Enable Full-S... opensource vehicle testbed enable exploration ... 1 0 0 0 0 0
15812 Sub-sampled Cubic Regularization for Non-conve... consider minimization nonconvex functions typi... 1 0 1 1 0 0
15813 Emergence of Seismic Metamaterials: Current St... following advent electromagnetic metamaterials... 0 1 0 0 0 0
15814 Case studies in network community detection community structure describes organization net... 1 1 0 0 0 0
15815 Multi-particle instability in a spin-imbalance... weak attractive interactions spinimbalanced fe... 0 1 0 0 0 0
15816 Weighted boundedness of maximal functions and ... aim paper study twoweight norm inequalities fr... 0 0 1 0 0 0
15817 A Framework for Algorithm Stability say algorithm stable small changes input resul... 1 0 0 0 0 0
15818 A Survey of Question Answering for Math and Sc... turing test long considered measure artificial... 1 0 0 0 0 0
15819 Thermal and structural properties of iron at h... investigate basic thermal mechanical structura... 0 1 0 0 0 0
15820 Interacting Fields and Flows: Magnetic Hot Jup... present magnetohydrodynamic mhd simulations ma... 0 1 0 0 0 0
15821 From which world is your graph? discovering statistical structure links fundam... 1 0 0 1 0 0
15822 Topological and Hodge L-Classes of Singular Co... signature closed oriented manifolds wellknown ... 0 0 1 0 0 0
15823 Identities for the shifted harmonic numbers an... develop new closed form representations sums n... 0 0 1 0 0 0
15824 Mechanism of light energy transport in the avi... studied intermediate filaments ifs retina pied... 0 1 0 0 0 0
15825 The Molecular Structures of Local Arm and Pers... using purple mountain observatory delingha pmo... 0 1 0 0 0 0
15826 The Theory is Predictive, but is it Complete? ... test theory using data common focus correctnes... 1 0 0 1 0 0
15827 Clustering with Statistical Error Control paper presents clustering approach allows rigo... 0 0 1 1 0 0
15828 DNA Base Pair Mismatches Induce Structural Cha... doublestranded dna may contain mismatched base... 0 0 0 0 1 0
15829 Average sampling and average splines on combin... setting weighted combinatorial finite infinite... 1 0 0 0 0 0
15830 Hilbert isometries and maximal deviation prese... paper characterize surjective linear variation... 0 0 1 0 0 0
15831 Visual Entailment: A Novel Task for Fine-Grain... existing visual reasoning datasets visual ques... 1 0 0 0 0 0
15832 On relations between weak and strong type ineq... article characterize possible cases may occur ... 0 0 1 0 0 0
15833 Random Caching Based Cooperative Transmission ... base station cooperation heterogeneous wireles... 1 0 0 0 0 0
15834 Electronic characteristics of ultrathin SrRuO$... srruo sro films known exhibit insulating behav... 0 1 0 0 0 0
15835 Solution properties of a 3D stochastic Euler f... prove local wellposedness regular spaces beale... 0 1 1 0 0 0
15836 Existence of locally maximally entangled quant... study question natural interpretations quantum... 0 0 1 0 0 0
15837 Convergence of the Expectation-Maximization Al... paper propose dynamical systems perspective ex... 1 0 0 0 0 0
15838 A Non-monotone Alternating Updating Method for... paper consider general matrix factorization mo... 0 0 1 1 0 0
15839 Fast Rates of ERM and Stochastic Approximation... error bound conditions ebc properties characte... 0 0 0 1 0 0
15840 Combining the $k$-CNF and XOR Phase-Transitions runtime performance modern sat solvers random ... 1 0 0 0 0 0
15841 Advertising and Brand Attitudes: Evidence from... little known different types advertising affec... 0 0 0 0 0 1
15842 NMR studies of the topological insulator Bi2Te3 te nmr studies carried bismuth telluride topol... 0 1 0 0 0 0
15843 The Gibbons-Hawking ansatz over a wedge discuss ricciflat model metrics mathbbc cone s... 0 0 1 0 0 0
15844 Beacon-referenced Mutual Pursuit in Three Dime... motivated stationkeeping applications various ... 1 0 0 0 0 0
15845 Increased stability of CuZrAl metallic glasses... carried molecular dynamics simulations md usin... 0 1 0 0 0 0
15846 A geometric realization of the $m$-cluster cat... show subcategory mcluster category type tilded... 0 0 1 0 0 0
15847 The SoLid anti-neutrino detector's readout system solid collaboration developed intelligent read... 0 1 0 0 0 0
15848 Data hiding in Fingerprint Minutiae Template f... paper propose novel scheme data hiding fingerp... 1 0 0 0 0 0
15849 On asymptotic normality of certain linear rank... consider asymptotic normality linear rank stat... 0 0 1 1 0 0
15850 Computations with p-adic numbers document contains notes lecture gave journes n... 1 0 1 0 0 0
15851 A novel procedure for the identification of ch... demonstrate presence chaos stochastic simulati... 0 1 0 0 0 0
15852 DeepStory: Video Story QA by Deep Embedded Mem... questionanswering qa video contents significan... 1 0 0 0 0 0
15853 Optimisation de la QoS dans un r{é}seau de rad... work proposes study quality service qos cognit... 1 0 0 0 0 0
15854 Some remarks on Kuratowski partitions introduce notion kideals associated kuratowski... 0 0 1 0 0 0
15855 Boosted nonparametric hazards with time-depend... given functional data samples survival process... 0 0 0 1 0 0
15856 $J^+$-like invariants of periodic orbits of th... determine three invariants arnolds jinvariant ... 0 0 1 0 0 0
15857 Nonlinear Calderón-Zygmund inequalities for maps motivated problem deducing lpbounds second fun... 0 0 1 0 0 0
15858 Comparing multiple networks using the Co-expre... biomedical sciences increasingly recognising r... 0 0 0 1 1 0
15859 Classical and Quantum Factors of Channels given classical channel stochastic map inputs ... 0 0 0 1 0 0
15860 Learning Intrinsic Sparse Structures within Lo... model compression significant wide adoption re... 1 0 0 0 0 0
15861 Electron Acceleration Mechanisms in Thunderstorms thunderstorms produce strong electric fields r... 0 1 0 0 0 0
15862 Consistent estimation in Cox proportional haza... cox proportional hazards model measurement err... 0 0 1 1 0 0
15863 Comparative Efficiency of Altruism and Egoism ... paper study efficiency egoistic altruistic str... 1 0 0 0 0 0
15864 Learning End-to-end Autonomous Driving using G... learning drive faithfully highly stochastic ur... 1 0 0 1 0 0
15865 Active Anomaly Detection via Ensembles: Insigh... anomaly detection ad task corresponds identify... 1 0 0 1 0 0
15866 Accuracy of parameterized proton range models;... accurate calculation proton ranges phantoms de... 0 1 0 0 0 0
15867 On the connectivity of level sets of automorph... show level sets automorphisms free groups resp... 0 0 1 0 0 0
15868 Learning a Code: Machine Learning for Approxim... machine learning algorithms typically run larg... 0 0 0 1 0 0
15869 Detection via simultaneous trajectory estimati... work consider detection manoeuvring small obje... 1 0 0 1 0 0
15870 Dust Growth and Magnetic Fields: from Cores to... recent rapid progress observations circumstell... 0 1 0 0 0 0
15871 Economic Design of Memory-Type Control Charts:... memorytype control charts ewma cusum powerful ... 1 0 0 1 0 0
15872 Error estimates for Riemann sums of some singu... short note obtain error estimates riemann sums... 0 0 1 0 0 0
15873 The Relation Between Fundamental Constants and... observed constraints variability proton electr... 0 1 0 0 0 0
15874 Real-Time Object Pose Estimation with Pose Int... work introduce pose interpreter networks dof o... 1 0 0 0 0 0
15875 Regularization, sparse recovery, and median-of... regularized risk minimization procedure regres... 0 0 1 1 0 0
15876 A Restaurant Process Mixture Model for Connect... one primary objectives human brain mapping div... 1 0 0 1 0 0
15877 On Unifying Deep Generative Models deep generative models achieved impressive suc... 1 0 0 1 0 0
15878 DeepVisage: Making face recognition simple yet... face recognition fr methods report significant... 1 0 0 0 0 0
15879 The Erdős-Ginzburg-Ziv constant and progressio... ellenberg gijswijt gave recently new exponenti... 0 0 1 0 0 0
15880 The Differing Relationships Between Size, Mass... study role environment evolution central satel... 0 1 0 0 0 0
15881 Configuration Space Singularities of The Delta... investigate configuration space deltamanipulat... 1 0 0 0 0 0
15882 Constrained Optimisation of Rational Functions... earlier decade socalled feast algorithm releas... 1 0 0 0 0 0
15883 Sets of lengths in atomic unit-cancellative fi... element monoid h set lengths mathsf l subset m... 0 0 1 0 0 0
15884 Spin-orbit effective fields in Pt/GdFeCo bilayers increasing interests spinorbit torque sot vari... 0 1 0 0 0 0
15885 Bridging Static and Dynamic Program Analysis u... static program analysis used summarize propert... 1 0 0 0 0 0
15886 The Formation of Heliospheric Arcs of Slow Sol... major challenge solar heliospheric physics und... 0 1 0 0 0 0
15887 A Construction of Infinitely Many Solutions to... paper construct explicit smooth solutions stro... 0 0 1 0 0 0
15888 A clustering algorithm for multivariate data s... common clustering algorithms require multiple ... 0 0 1 1 0 0
15889 Semantic Interpolation in Implicit Models implicit models one often interpolates sampled... 1 0 0 1 0 0
15890 Error analysis for global minima of semilinear... consider optimal control problem subject semil... 0 0 1 0 0 0
15891 Random dynamics of two-dimensional stochastic ... paper consider stochastic model incompressible... 0 0 1 0 0 0
15892 Lago Distributed Network Of Data Repositories describe set tools services strategies latin a... 1 0 0 0 0 0
15893 Hyperfunctions, the Duistermaat-Heckman theore... article investigate duistermaatheckman theorem... 0 0 1 0 0 0
15894 When is selfish routing bad? The price of anar... paper examines behavior price anarchy function... 1 0 1 0 0 0
15895 Roadmap for the international, accelerator-bas... line terms reference icfa neutrino panel devel... 0 1 0 0 0 0
15896 Parallel Implementation of Lossy Data Compress... many scientific data sets contain temporal dim... 1 0 0 0 0 0
15897 What we really want to find by Sentiment Analy... first step model emotional state person build ... 1 0 0 0 0 0
15898 Survey of multifidelity methods in uncertainty... many situations across computational science e... 1 0 0 1 0 0
15899 Nebular spectroscopy: A guide on H II regions ... present tutorial determination physical condit... 0 1 0 0 0 0
15900 Global Model Interpretation via Recursive Part... work propose simple effective method interpret... 0 0 0 1 0 0
15901 Flow-GAN: Combining Maximum Likelihood and Adv... adversarial learning probabilistic models rece... 1 0 0 1 0 0
15902 SafetyNets: Verifiable Execution of Deep Neura... inference using deep neural networks often out... 1 0 0 0 0 0
15903 The Malgrange Form and Fredholm Determinants consider factorization problem matrix symbols ... 0 1 0 0 0 0
15904 Programming from Metaphorisms paper presents study metaphorism pattern relat... 1 0 0 0 0 0
15905 On the Conditional Distribution of a Multivari... show orthogonal projection operator onto range... 0 0 1 1 0 0
15906 Spacings Around An Order Statistic determine joint limiting distribution adjacent... 0 0 1 1 0 0
15907 On Nevanlinna - Cartan theory for holomorphic ... paper prove fundamental theorems holomorphic c... 0 0 1 0 0 0
15908 Theoretical investigation of excitonic magneti... use ldau approach search possible ordered grou... 0 1 0 0 0 0
15909 The Dark Matter Programme of the Cherenkov Tel... last decades vaste amount evidence existence d... 0 1 0 0 0 0
15910 Modeling the Vertical Structure of Nuclear Sta... nuclear starburst discs nsds starforming discs... 0 1 0 0 0 0
15911 Rapid behavioral transitions produce chaotic m... despite vast morphological diversity many inve... 0 0 0 0 1 0
15912 Testing for long memory in panel random-coeffi... wellknown randomcoefficient ar process long me... 0 0 1 1 0 0
15913 Hilsum-Skandalis maps as Frobenius adjunctions... hilsumskandalis maps differential geometry stu... 0 0 1 0 0 0
15914 Pairs of commuting isometries - I present explicit version berger coburn lebows ... 0 0 1 0 0 0
15915 Sampled-Data Boundary Feedback Control of 1-D ... paper provides results application boundary fe... 1 0 1 0 0 0
15916 PEN as self-vetoing structural Material polyethylene naphtalate pen mechanically favor... 0 1 0 0 0 0
15917 Quantum Cohomology under Birational Maps and T... expanded version third authors lecture stringm... 0 0 1 0 0 0
15918 A conjecture on the zeta functions of pairs of... consider prehomogeneous vector space pairs ter... 0 0 1 0 0 0
15919 Abstract Syntax Networks for Code Generation a... tasks like code generation semantic parsing re... 1 0 0 1 0 0
15920 Theoretical derivation of laser-dressed atomic... derivation approximate wave functions electron... 0 1 0 0 0 0
15921 Implications of the interstellar object 1I/'Ou... oumuamua first bonafide interstellar planetesi... 0 1 0 0 0 0
15922 Automatic symbolic computation for discontinuo... implementation discontinuous galerkin finite e... 1 0 0 0 0 0
15923 Methodological Framework for Determining the L... quantity distribution land eligible renewable ... 1 0 0 0 0 0
15924 Day-ahead electricity price forecasting with h... conduct extensive empirical study shortterm el... 0 0 0 1 0 1
15925 On Strong Small Loop Transfer Spaces Relative ... let h subgroup fundamental group pixx extendin... 0 0 1 0 0 0
15926 Headphones on the wire analyze dataset providing complete information... 1 1 0 0 0 0
15927 Li-intercalated Graphene on SiC(0001): an STM ... present systematical study via scanning tunnel... 0 1 0 0 0 0
15928 Generative Adversarial Perturbations paper propose novel generative models creating... 1 0 0 1 0 0
15929 Lifted Polymatroid Inequalities for Mean-Risk ... investigate mixed conic quadratic optimization... 0 0 1 0 0 0
15930 Illusion and Reality in the Atmospheres of Exo... atmospheres exoplanets reveal properties beyon... 0 1 0 0 0 0
15931 Actors without Borders: Amnesty for Imprisoned... concurrent systems form synchronisation typica... 1 0 0 0 0 0
15932 Bayesian Estimation of Gaussian Graphical Mode... gaussian graphical models used determining con... 0 0 0 1 0 0
15933 ActiVis: Visual Exploration of Industry-Scale ... deep learning models achieved stateoftheart ac... 1 0 0 1 0 0
15934 A topological lower bound for the energy of a ... unit vector field closed immersed euclidean hy... 0 0 1 0 0 0
15935 Permutation invariant proper polyhedral cones ... lyapunov rank proper cone k finite dimensional... 0 0 1 0 0 0
15936 On the Relation of External and Internal Featu... detecting feature interactions imperative accu... 1 0 0 0 0 0
15937 Properties of the water to boron nitride inter... molecular adsorption surfaces plays important ... 0 1 0 0 0 0
15938 Theory of Large Intrinsic Spin Hall Effect in ... theoretically investigate mechanism generate l... 0 1 0 0 0 0
15939 A pathway-based kernel boosting method for sam... analysis cancer genomic data long suffered cur... 0 0 0 1 1 0
15940 Analyzing the Approximation Error of the Fast ... graph fourier transform gft general dense requ... 1 0 0 0 0 0
15941 Deriving Enhanced Geographical Representations... neural networks capable learning rich nonlinea... 0 0 0 1 0 0
15942 On the Integrality Gap of the Prize-Collecting... prizecollecting steiner forest pcsf problem gi... 1 0 1 0 0 0
15943 Estimating Average Treatment Effects: Suppleme... large literature semiparametric estimation ave... 0 0 0 1 0 0
15944 Markov cubature rules for polynomial processes study discretizations polynomial processes usi... 0 0 0 0 0 1
15945 Statistical inference for high dimensional reg... paper propose new method estimation constructi... 0 0 1 1 0 0
15946 VALES: I. The molecular gas content in star-fo... present extragalactic survey using observation... 0 1 0 0 0 0
15947 Variational methods for degenerate Kirchhoff e... degenerate autonomous kirchhoff equation set m... 0 0 1 0 0 0
15948 Chang'e 3 lunar mission and upper limit on sto... doppler tracking data change lunar mission use... 0 1 0 0 0 0
15949 On the complexity of range searching among curves modern tracking technology made collection lar... 1 0 0 0 0 0
15950 Topic Compositional Neural Language Model propose topic compositional neural language mo... 1 0 0 0 0 0
15951 Transmission spectra and valley processing of ... numerically investigate electronic transport p... 0 1 0 0 0 0
15952 Parametric Adversarial Divergences are Good Ta... generative modeling high dimensional data like... 1 0 0 1 0 0
15953 Boundedness and homogeneous asymptotics for a ... paper consider ddimensional parabolicelliptic ... 0 0 1 0 0 0
15954 Explicit formulas, symmetry and symmetry break... paper prove explicit formulas willmore surface... 0 0 1 0 0 0
15955 Dynamic Task Allocation for Crowdsourcing Sett... consider problem optimal budget allocation cro... 1 0 0 1 0 0
15956 From optimal transport to generative modeling:... study unsupervised generative modeling terms o... 0 0 0 1 0 0
15957 The Gauss map of a free boundary minimal surface paper study gauss map free boundary minimal su... 0 0 1 0 0 0
15958 Computational Experiments on $a^4+b^4+c^4+d^4=... computational approaches finding nontrivial in... 0 0 1 0 0 0
15959 An information theoretic approach to the autoe... present variation autoencoder ae explicitly ma... 1 0 0 1 0 0
15960 A Certified-Complete Bimanual Manipulation Pla... planning motions two robot arms move object co... 1 0 0 0 0 0
15961 The Short Baseline Neutrino Oscillation Progra... shortbaseline neutrino sbn program shortbaseli... 0 1 0 0 0 0
15962 Best Rank-One Tensor Approximation and Paralle... novel algorithm proposed candecompparafac tens... 1 0 0 0 0 0
15963 Predictive Independence Testing, Predictive Co... testing conditional independence multivariate ... 1 0 1 1 0 0
15964 Sharp Minima Can Generalize For Deep Nets despite overwhelming capacity overfit deep lea... 1 0 0 0 0 0
15965 Coarse-grained model of the J-integral of carb... jintegral recognized fundamental parameter fra... 0 1 0 0 0 0
15966 On Estimating Multi-Attribute Choice Preferenc... revealed preference theory studies possibility... 0 0 0 1 0 0
15967 Analysis of evolutionary origins of genomic lo... view universe genomic regions harboring variou... 0 0 0 0 1 0
15968 Verification of operational solar flare foreca... article discuss verification study operational... 0 1 0 1 0 0
15969 Conformational dynamics of a single protein mo... use plasmon rulers follow conformational dynam... 0 0 0 0 1 0
15970 Dynamics of domain walls in weak ferromagnets shown total set equations determines dynamics ... 0 1 0 0 0 0
15971 Generalized Short Circuit Ratio for Multi Powe... short circuit ratio scr widely applied analyze... 1 0 0 0 0 0
15972 A Correction Method of a Binary Classifier App... work addressed issue applying stochastic class... 1 0 0 1 0 0
15973 Augment your batch: better training with large... largebatch sgd important scaling training deep... 1 0 0 1 0 0
15974 Implicit Regularization in Nonconvex Statistic... recent years seen flurry activities designing ... 1 0 1 1 0 0
15975 The effect of surface tension on steadily tran... new numerical solutions socalled selection pro... 0 1 1 0 0 0
15976 Core or cusps: The central dark matter profile... report sptclj giant system arcs created cluste... 0 1 0 0 0 0
15977 Bayesian Optimization with Automatic Prior Sel... one interesting features bayesian optimization... 1 0 0 1 0 0
15978 Coupled elliptic systems involving the square ... paper prove existence nonnegative ground state... 0 0 1 0 0 0
15979 Gravitational mass and energy gradient in the ... paper aims apply complex octonion explore infl... 0 1 0 0 0 0
15980 Retrofitting Distributional Embeddings to Know... knowledge graphs versatile framework encode ri... 1 0 0 1 0 0
15981 Privacy-Preserving Economic Dispatch in Compet... emerging smart grid techniques cyber attackers... 0 0 1 0 0 0
15982 On the estimation of the current density in sp... thanks multispacecraft mission recently possib... 0 1 0 0 0 0
15983 Homological vanishing for the Steinberg repres... field k prove ith homology groups glnk slnk sp... 0 0 1 0 0 0
15984 A tale of seven narrow spikes and a long troug... highsignal noise observations lyalpha forest t... 0 1 0 0 0 0
15985 Quantum spin fluctuations in the bulk insulati... intermediatevalence compound smb wellknown kon... 0 1 0 0 0 0
15986 Device-Aware Routing and Scheduling in Multi-H... dramatic increase data connectivity demand add... 1 0 0 0 0 0
15987 Lazily Adapted Constant Kinky Inference for No... techniques known nonlinear set membership pred... 1 0 1 1 0 0
15988 Information Pursuit: A Bayesian Framework for ... despite enormous progress object detection cla... 1 0 0 1 0 0
15989 Decentralized Clustering based on Robust Estim... paper considers network sensors without fusion... 0 0 1 1 0 0
15990 Modeling open nanophotonic systems using the F... recently open geometry fourier modal method ba... 0 1 0 0 0 0
15991 Microscopic Conductivity of Lattice Fermions a... apply liebrobinson bounds multicommutators rec... 0 0 1 0 0 0
15992 Revealing the Unseen: How to Expose Cloud Usag... cloud users little visibility performance char... 1 0 0 0 0 0
15993 An hp-adaptive strategy for elliptic problems paper new hpadaptive strategy elliptic problem... 1 0 1 0 0 0
15994 High Radiation Pressure on Interstellar Dust C... recent space missions provided information phy... 0 1 0 0 0 0
15995 Unexpected Robustness of the Band Gaps of TiO2... titanium dioxide tio wide band gap semiconduct... 0 1 0 0 0 0
15996 Geometric GAN generative adversarial nets gans represent imp... 1 1 0 1 0 0
15997 A Searchable Symmetric Encryption Scheme using... present cloud storage used searchable symmetri... 1 0 0 0 0 0
15998 Operando imaging of all-electric spin texture ... control electron spin external means key issue... 0 1 0 0 0 0
15999 Experimental Evidence for Selection Rules in M... report observation phase space modulations cor... 0 1 0 0 0 0
16000 Conformal growth rates and spectral geometry o... unimodular random graph grho consider deformat... 0 0 1 0 0 0
16001 Self-Supervised Vision-Based Detection of the ... paper presents selfsupervised method detecting... 1 0 0 1 0 0
16002 Monocular Imaging-based Autonomous Tracking fo... traquad autonomous tracking quadcopter capable... 1 0 0 0 0 0
16003 Persistence Diagrams with Linear Machine Learn... persistence diagrams widely recognized compact... 1 0 1 0 0 0
16004 Characterizing the number of coloured $m$-ary ... pair recent papers andrews fraenkel sellers pr... 0 0 1 0 0 0
16005 Towards Approximate Mobile Computing mobile computing one main drivers innovation y... 1 0 0 0 0 0
16006 Room-temperature high detectivity mid-infrared... midinfrared mir spectral range pertaining impo... 0 1 0 0 0 0
16007 Topology determines force distributions in one... networks elastic fibers ubiquitous biological ... 0 1 0 0 0 0
16008 On a local invariant of elliptic curves with a... elliptic curve e defined padic field k pisogen... 0 0 1 0 0 0
16009 IIFA: Modular Inter-app Intent Information Flo... android apps cooperate message passing via int... 1 0 0 0 0 0
16010 Glass+Skin: An Empirical Evaluation of the Add... usability small devices smartphones interactiv... 1 0 0 0 0 0
16011 The Morphospace of Consciousness construct complexitybased morphospace study sy... 1 1 0 0 0 0
16012 Transverse Magnetic Susceptibility of a Frustr... use coupled cluster method ccm study frustrate... 0 1 0 0 0 0
16013 Minimum polyhedron with $n$ vertices study polyhedron n vertices fixed volume minim... 0 0 1 0 0 0
16014 Theory of interacting fermions in shaken squar... develop theory weakly interacting fermionic at... 0 1 0 0 0 0
16015 Simple to Complex Cross-modal Learning to Rank heterogeneitygap different modalities brings s... 1 0 0 1 0 0
16016 Iteration-complexity analysis of a generalized... paper analyzes iterationcomplexity generalized... 0 0 1 0 0 0
16017 A Game Theoretic Macroscopic Model of Bypassin... vehicle bypassing known negatively affect dela... 1 0 0 0 0 0
16018 Non-resonant secular dynamics of trans-Neptuni... use secular model describe nonresonant dynamic... 0 1 0 0 0 0
16019 Stability Analysis for Switched Systems with S... note investigates stability linear nonlinear s... 1 0 0 0 0 0
16020 Interpreting and using CPDAGs with background ... develop terminology methods working maximally ... 0 0 1 1 0 0
16021 A cable-driven parallel manipulator with force... paper introduces new surgical endeffector prob... 1 0 0 0 0 0
16022 Overfitting Mechanism and Avoidance in Deep Ne... assisted availability data high performance co... 1 0 0 1 0 0
16023 What deep learning can tell us about higher co... deep learning dl guide understanding computati... 0 0 0 0 1 0
16024 Concentration of quantum states from quantum f... quantum functional inequalities eg logarithmic... 0 0 1 0 0 0
16025 Stochastic Training of Neural Networks via Suc... paper proposes new family algorithms training ... 1 0 0 1 0 0
16026 Best arm identification in multi-armed bandits... propose generalization best arm identification... 0 0 0 1 0 0
16027 General $(α, β)$ metrics with relatively isotr... paper study new class finsler metrics falphaph... 0 0 1 0 0 0
16028 Structured Optimal Transport optimal transport recently gained interest mac... 1 0 0 1 0 0
16029 Very metal-poor stars observed by the RAVE survey present novel analysis metalpoor star sample c... 0 1 0 0 0 0
16030 Estimating causal effects of time-dependent ex... recently intervention calculus dag absent ida ... 0 0 0 1 0 0
16031 A Note on Cyclotomic Integers note present new proof cyclotomic integers con... 0 0 1 0 0 0
16032 Stochastic homogenization for functionals with... study stochastic homogenization cauchy problem... 0 0 1 0 0 0
16033 Automatic Software Repair: a Bibliography article presents survey automatic software rep... 1 0 0 0 0 0
16034 The design and the performance of stratospheri... technical details balloon stratospheric missio... 0 1 0 0 0 0
16035 A Systematic Comparison of Deep Learning Archi... selfdriving technology advancing rapidly albei... 1 0 0 1 0 0
16036 On the Theory of Light Propagation in Crystall... synoptic view longestablished theory light pro... 0 1 0 0 0 0
16037 Microfluidic control of nucleation and growth ... nucleation growth calcite important research s... 0 1 0 0 0 0
16038 Using low-frequency pulsar observations to stu... galactic magnetic field gmf plays role many as... 0 1 0 0 0 0
16039 Simple mechanical cues could explain adipose t... mechanisms organs acquire functional structure... 0 1 0 0 0 0
16040 Comments on the National Toxicology Program Re... national toxicology program issuing final repo... 0 0 0 0 1 0
16041 Estimates for the coefficients of differential... answer following longstanding question kolchin... 0 0 1 0 0 0
16042 Giant perpendicular exchange bias with antifer... investigated outofplane exchange bias system b... 0 1 0 0 0 0
16043 A Fuzzy Community-Based Recommender System Usi... recommendation systems widely used different u... 1 0 0 0 0 0
16044 Foundations of Complex Event Processing complex event processing cep emerged unifying ... 1 0 0 0 0 0
16045 Prior Variances and Depth Un-Biased Estimators... electroencephalography eeg source imaging inve... 0 1 0 0 0 0
16046 Standard Galactic Field RR Lyrae. I. Optical t... present multiwavelength compilation new previo... 0 1 0 0 0 0
16047 An Updated Literature Review of Distance Corre... concept distance covariancecorrelation introdu... 0 0 0 1 0 0
16048 A Novel Method for Extrinsic Calibration of Mu... letter presents novel method estimate relative... 1 0 0 0 0 0
16049 Particular type of gap in the spectrum of mult... show contrast free electron model standard bcs... 0 1 0 0 0 0
16050 Reliable Decision Support using Counterfactual... decisionmakers faced challenge estimating like... 1 0 0 1 0 0
16051 Robust temporal difference learning for critic... present new qfunction operator temporal differ... 1 0 0 1 0 0
16052 Structure of the Entanglement Entropy of (3+1)... study entanglement entropy gapped phases matte... 0 1 0 0 0 0
16053 Dynamics and asymptotic profiles of endemic eq... paper concerned two frequencydependent sis epi... 0 0 1 0 0 0
16054 Stable Clustering Ansatz, Consistency Relation... gravitational clustering nonlinear regime rema... 0 1 0 0 0 0
16055 Heavy-Tailed Analogues of the Covariance Matri... independent component analysis ica problem lea... 0 0 0 1 0 0
16056 Breaking through the bandwidth barrier in dist... round trip time light pulse limits maximum det... 0 1 0 0 0 0
16057 The Continuity of the Gauge Fixing Condition $... continuity gauge fixing condition ncdotpartial... 0 1 0 0 0 0
16058 Estimating functions for jump-diffusions asymptotic theory approximate martingale estim... 0 0 1 1 0 0
16059 Automatic Skin Lesion Analysis using Large-sca... malignant melanoma one rapidly increasing inci... 1 0 0 0 0 0
16060 Quadrature-based features for kernel approxima... consider problem improving kernel approximatio... 0 0 0 1 0 0
16061 The impossibility of "fairness": a generalized... various measures used estimate bias unfairness... 1 0 0 1 0 0
16062 Measuring Quantum Entropy entropy quantum system measure randomness appl... 1 0 0 0 0 0
16063 Elliptic Transverse Circulation Equations for ... studying tropical cyclones using fplane axisym... 0 1 0 0 0 0
16064 The Voice Conversion Challenge 2018: Promoting... present voice conversion challenge designed fo... 0 0 0 1 0 0
16065 Levels of distribution for sieve problems in p... companion paper developed efficient algebraic ... 0 0 1 0 0 0
16066 Imagination-Augmented Agents for Deep Reinforc... introduce imaginationaugmented agents ias nove... 1 0 0 1 0 0
16067 Cluster-glass phase in pyrochlore XY antiferro... study impact quenched disorder random exchange... 0 1 0 0 0 0
16068 Non-line-of-sight tracking of people at long r... remotesensing system determine position hidden... 1 1 0 0 0 0
16069 DeSIGN: Design Inspiration from Generative Net... algorithm create original compelling fashion d... 0 0 0 1 0 0
16070 Challenges of facet analysis and concept place... paper discusses challenges faceted vocabulary ... 1 0 0 0 0 0
16071 Coalescent-based species tree estimation: a st... reconstruction species phylogeny genomic data ... 1 0 1 1 0 0
16072 Variance-Reduced Stochastic Learning by Networ... new amortized variancereduced gradient avrg al... 1 0 0 1 0 0
16073 Blind Community Detection from Low-rank Excita... paper considers novel framework detect communi... 1 0 0 0 0 0
16074 Realistic theory of electronic correlations in... nanostructures open shell transition metal mol... 0 1 0 0 0 0
16075 The Multiplier Problem of the Calculus of Vari... inverse problem calculus variations one asked ... 0 0 1 0 0 0
16076 Representation categories of Mackey Lie algebr... let mathbbk algebraically closed field charact... 0 0 1 0 0 0
16077 Dielectric media considered as vacuum with sou... conventional textbook treatments electromagnet... 0 1 0 0 0 0
16078 Game-Theoretic Design of Secure and Resilient ... large number sensors control units networked s... 1 0 0 1 0 0
16079 Rank conditional coverage and confidence inter... confidence interval procedures used low dimens... 0 0 0 1 0 0
16080 Phase-Encoded Hyperpolarized Nanodiamond for M... surfacefunctionalized nanomaterials act theran... 0 1 0 0 0 0
16081 k-Space Deep Learning for Reference-free EPI G... nyquist ghost artifacts epi images originated ... 0 0 0 1 0 0
16082 Binary Search in Graphs Revisited classical binary search path aim detect unknow... 1 0 0 0 0 0
16083 Dissecting Adam: The Sign, Magnitude and Varia... adam optimizer exceedingly popular deep learni... 1 0 0 1 0 0
16084 Econometric Modeling of Regional Electricity S... wholesale electricity markets increasingly int... 0 0 0 1 0 0
16085 Accurate Effective Medium Theory for the Analy... recently demonstrated textured closed surfaces... 0 1 0 0 0 0
16086 Joint Regression and Ranking for Image Enhance... research automated image enhancement gained mo... 1 0 0 0 0 0
16087 From arteries to boreholes: Transient response... radially outward flow fluid porous medium occu... 0 1 0 0 0 0
16088 Social Clustering in Epidemic Spread on Coevol... even though transitivity central structural fe... 1 0 0 0 0 0
16089 A Mathematical Aspect of Hohenberg-Kohn Theorem hohenbergkohn theorem plays fundamental role d... 0 1 0 0 0 0
16090 Autocomplete 3D Sculpting digital sculpting popular means create models ... 1 0 0 0 0 0
16091 KeyXtract Twitter Model - An Essential Keyword... since tweet limited characters ambiguous diffi... 1 0 0 0 0 0
16092 A Generalized Zero-Forcing Precoder with Succe... paper consider precoder designs multiuser mult... 1 0 0 0 0 0
16093 Generating Connected Random Graphs sampling random graphs essential many applicat... 1 0 0 1 0 0
16094 Machine Learning Predicts Laboratory Earthquakes forecasting fault failure fundamental elusive ... 0 1 0 0 0 0
16095 New results of the search for hidden photons b... new upper limit mixing parameter hidden photon... 0 1 0 0 0 0
16096 Higher dimensional Steinhaus and Slater proble... three gap theorem also known steinhaus conject... 0 0 1 0 0 0
16097 Bayesian Unbiasing of the Gaia Space Mission T... st century astrophysicists confronted herculea... 0 1 0 0 0 0
16098 On the connectivity of the hyperbolicity regio... give elementary proof fact irreducible hyperbo... 0 0 1 0 0 0
16099 Matrix Completion via Factorizing Polynomials predicting unobserved entries partially observ... 1 0 0 1 0 0
16100 A visual search engine for Bangladeshi laws browsing finding relevant information banglade... 1 0 0 1 0 0
16101 Minors of two-connected graphs of large path-w... let p graph vertex v pbackslash v forest let q... 1 0 0 0 0 0
16102 Computable Operations on Compact Subsets of Me... extend theory computation real numbers continu... 1 0 1 0 0 0
16103 Siamese Capsule Networks capsule networks shown encouraging results tex... 0 0 0 1 0 0
16104 Isolated and Ensemble Audio Preprocessing Meth... adversarial attack exploitative process minute... 1 0 0 0 0 0
16105 Revisiting the cavity-method threshold for ran... detailed monte carlostudy satisfiability thres... 0 1 0 0 0 0
16106 An improved Krylov eigenvalue strategy using t... feast eigenvalue algorithm subspace iteration ... 1 0 0 0 0 0
16107 Planar magnetic structures in coronal mass eje... planar magnetic structures pmss periods solar ... 0 1 0 0 0 0
16108 Transportation analysis of denoising autoencod... feature map obtained denoising autoencoder dae... 1 0 0 1 0 0
16109 Weighted Contrastive Divergence learning algorithms energy based boltzmann arc... 0 0 0 1 0 0
16110 Small-Scale Challenges to the $Λ$CDM Paradigm dark energy plus cold dark matter lambdacdm co... 0 1 0 0 0 0
16111 Alternating minimization, scaling algorithms, ... alternating minimization heuristics seek solve... 1 0 0 0 0 0
16112 Positivity of denominator vectors of cluster a... paper prove positivity denominator vectors hol... 0 0 1 0 0 0
16113 Primordial Black Holes and Slow-Roll Violation primordial black holes pbh dark matter singlef... 0 1 0 0 0 0
16114 Using Optimal Ratio Mask as Training Target fo... supervised speech separation uses supervised l... 1 0 0 0 0 0
16115 Volumetric parametrization from a level set bo... challenge isogeometric analysis constructing a... 1 0 0 0 0 0
16116 On the Compressive Power of Deep Rectifier Net... paper provides theoretical justification super... 1 0 0 1 0 0
16117 Absolute spectroscopy near 7.8 μm with a comb-... report first experimental demonstration freque... 0 1 0 0 0 0
16118 Some remarks on upper bounds for Weierstrass p... study upper bounds weierstrass primary factors... 0 0 1 0 0 0
16119 Topology of polyhedral products over simplicia... prove certain conditions multigraded betti num... 0 0 1 0 0 0
16120 Improved Representation Learning for Predictin... recent work learning ontologies hierarchical p... 1 0 0 1 0 0
16121 Mesoporous Silica as a Carrier for Amorphous S... past decade discovery active pharmaceutical su... 0 1 0 0 0 0
16122 A Probability Monad as the Colimit of Finite P... define study probability monad category comple... 1 0 0 0 0 0
16123 Robust Optimal Design of Energy Efficient Seri... design robotic systems safely efficiently oper... 1 0 0 0 0 0
16124 Subwavelength phononic bandgap opening in bubb... aim paper show analytically numerically existe... 0 0 1 0 0 0
16125 Hybrid integration of solid-state quantum emit... scalable quantum photonic systems require effi... 0 1 0 0 0 0
16126 Perceive Your Users in Depth: Learning Univers... tasks search recommendation become increas ing... 0 0 0 1 0 0
16127 Phase-diagram and dynamics of Rydberg-dressed ... investigate groundstate properties collective ... 0 1 0 0 0 0
16128 Ambient noise correlation-based imaging with m... waves used probe image unknown medium passive ... 0 1 0 0 0 0
16129 Anderson localization in the Non-Hermitian Aub... investigate anderson localization nonhermitian... 0 1 0 0 0 0
16130 Towards de Sitter from 10D using lift nonperturbative volume stabilizatio... 0 1 0 0 0 0
16131 Incorporating genuine prior information about ... background pairwise network metaanalyses using... 0 0 0 1 0 0
16132 Wasserstein Distributional Robustness and Regu... central question statistical learning design a... 1 0 0 1 0 0
16133 InfiniteBoost: building infinite ensembles wit... machine learning ensemble methods demonstrated... 1 0 0 1 0 0
16134 On-demand microwave generator of shaped single... demonstrate full functionality circuit generat... 0 1 0 0 0 0
16135 Fast and Stable Pascal Matrix Algorithms paper derive family fast stable algorithms mul... 1 0 0 0 0 0
16136 Variational Continual Learning paper develops variational continual learning ... 1 0 0 1 0 0
16137 Dynamic adaptive procedures that control the f... multiple testing problem independent tests cla... 0 0 1 1 0 0
16138 Compression-Based Regularization with an Appli... paper investigates information theoretic groun... 1 0 0 1 0 0
16139 Isomorphism between Differential and Moment In... invariant one central topics science technolog... 1 0 0 0 0 0
16140 Throughput Analysis for Wavelet OFDM in Broadb... windowed orthogonal frequencydivision multiple... 1 0 0 0 0 0
16141 Simple And Efficient Architecture Search for C... neural networks recently lot success many task... 1 0 0 1 0 0
16142 Quantum estimation of detection efficiency wit... investigate noknowledge measurementbased feedb... 1 0 0 0 0 0
16143 Intermittent Granular Dynamics at a Seismogeni... earthquakes seismogenic plate boundaries respo... 0 1 0 0 0 0
16144 Optimal continuous-time ALM for insurers: a ma... study continuoustime assetallocation problem f... 0 0 0 0 0 1
16145 Combating Fake News: A Survey on Identificatio... proliferation fake news social media opened ne... 1 0 0 1 0 0
16146 A causal approach to analysis of censored medi... recently growing interest development statisti... 0 0 0 1 0 0
16147 Inferring the parameters of a Markov process f... seek infer parameters ergodic markov process s... 0 1 0 1 0 0
16148 What Does a TextCNN Learn? textcnn convolutional neural network text usef... 0 0 0 1 0 0
16149 The Wisdom of Polarized Crowds political polarization united states continues... 1 0 0 1 0 0
16150 Probabilistic Database Summarization for Inter... present probabilistic approach generate small ... 1 0 0 0 0 0
16151 GP-GAN: Towards Realistic High-Resolution Imag... recent advances generative adversarial network... 1 0 0 0 0 0
16152 Relational Autoencoder for Feature Extraction feature extraction becomes increasingly import... 0 0 0 1 0 0
16153 Sentiment and Sarcasm Classification with Mult... sentiment classification sarcasm detection imp... 1 0 0 0 0 0
16154 Context in Neural Machine Translation: A Revie... review paper discusses context used neural mac... 1 0 0 0 0 0
16155 Manipulation of type-I and type-II Dirac point... pair typeii dirac cones pdte recently predicte... 0 1 0 0 0 0
16156 A fast Metropolis-Hastings method for generati... propose novel metropolishastings algorithm sam... 0 0 0 1 0 0
16157 Compact Groups analysis using weak gravitation... present weak lensing analysis sample sdss comp... 0 1 0 0 0 0
16158 An Applied Knowledge Framework to Study Comple... complexity knowledge production complex system... 1 1 0 0 0 0
16159 Classifying subcategories in quotients of exac... classify certain subcategories quotients exact... 0 0 1 0 0 0
16160 Dealing with Rational Second Order Ordinary Di... present new approach search first order invari... 1 0 0 0 0 0
16161 Urban Vibrancy and Safety in Philadelphia statistical analyses urban environments recent... 0 0 0 1 0 0
16162 Exponential quadrature rules without order red... paper technique suggested integrate linear ini... 0 0 1 0 0 0
16163 New Derivatives for the Functions with the Fra... manuscript generalize fcalculus apply fractal ... 0 0 1 0 0 0
16164 Learning Navigation Behaviors End to End longstanding goal behaviorbased robotics solve... 1 0 0 0 0 0
16165 Bounded Information Rate Variational Autoencoders paper introduces new member family variational... 0 0 0 1 0 0
16166 Wasan geometry with the division by 0 results wasan geometry tangents circles still ... 0 0 1 0 0 0
16167 New insights into non-central beta distributions beta family owes privileged status within unit... 0 0 1 1 0 0
16168 Mean Curvature Flows of Closed Hypersurfaces i... investigate mean curvature flows class warped ... 0 0 1 0 0 0
16169 Optimising finite-difference methods for PDEs ... finitedifference methods widely used solving p... 1 0 0 0 0 0
16170 An Ontology to support automated negotiation work propose ontology support automated negoti... 1 0 0 0 0 0
16171 Deep Scattering: Rendering Atmospheric Clouds ... present technique efficiently synthesizing ima... 1 0 0 1 0 0
16172 On the Upward/Downward Closures of Petri Nets study size complexity computing finite state a... 1 0 0 0 0 0
16173 Semantic Similarity from Natural Language and ... artificial intelligence federates numerous sci... 1 0 0 0 0 0
16174 The Hardness of Synthesizing Elementary Net Sy... elementary net systems ens fundamental class p... 1 0 0 0 0 0
16175 Exceptional Lattice Green's Functions three exceptional lattices e e e attracted muc... 0 1 0 0 0 0
16176 Optimal design with EGM approach in conjugate ... analysis conjugate natural convection surface ... 0 1 0 0 0 0
16177 Convex cocompactness in pseudo-Riemannian hype... anosov representations word hyperbolic groups ... 0 0 1 0 0 0
16178 A Closer Look at Memorization in Deep Networks examine role memorization deep learning drawin... 1 0 0 1 0 0
16179 Hierarchical 3D fully convolutional networks f... recent advances fully convolutional networks f... 1 0 0 0 0 0
16180 An evolutionary game model for behavioral gamb... study phase diagram minority game three classe... 0 0 0 0 1 0
16181 The Minimum Euclidean-Norm Point on a Convex P... complexity philip wolfes method minimum euclid... 1 0 1 0 0 0
16182 Constraints on a possible evolution of mass de... work using strong gravitational lensing sgl ob... 0 1 0 0 0 0
16183 The Strong Cell-based Hydrogen Peroxide Genera... hydrogen peroxide ho important signaling molec... 0 1 0 0 0 0
16184 Theory of circadian metabolism many organisms repartition proteome circadian ... 0 0 0 0 1 0
16185 Rare-earth/transition-metal magnetic interacti... present investigation intrinsic magnetic prope... 0 1 0 0 0 0
16186 Optimum weight chamber examples of moduli spac... present explicit construction moduli spaces ra... 0 0 1 0 0 0
16187 Individualized Risk Prognosis for Critical Car... report development validation datadriven realt... 1 0 0 0 0 0
16188 X-View: Graph-Based Semantic Multi-View Locali... global registration multiview robot data chall... 1 0 0 0 0 0
16189 Local Hardy spaces with variable exponents ass... paper introduce variable exponent local hardy ... 0 0 1 0 0 0
16190 Provable Inductive Robust PCA via Iterative Ha... robust pca problem wherein given input data ma... 1 0 0 1 0 0
16191 The Topological Period-Index Problem over 8-Co... study postnikov tower classifying space compac... 0 0 1 0 0 0
16192 The Rise of Jihadist Propaganda on Social Netw... using dataset million messages posted twitter ... 1 1 0 0 0 0
16193 Simulated performance of the production target... muon g experiment plans use fermilab recycler ... 0 1 0 0 0 0
16194 Virtual-to-Real: Learning to Control in Visual... collecting training data physical world usuall... 1 0 0 0 0 0
16195 On Fienup Methods for Regularized Phase Retrieval alternating minimization fienup methods long h... 1 0 1 0 0 0
16196 Coupling the reduced-order model and the gener... work develop importance sampling estimator cou... 1 0 0 1 0 0
16197 Anomalous dynamical phase in quantum spin chai... existence absence nonanalytic cusps loschmidte... 0 1 0 0 0 0
16198 Cold keV dark matter from decays and scatterings explore ways creating cold kevscale dark matte... 0 1 0 0 0 0
16199 Solving high-dimensional partial differential ... developing algorithms solving highdimensional ... 1 0 1 0 0 0
16200 An Ensemble Quadratic Echo State Network for N... spatiotemporal data processes prevalent across... 0 0 0 1 0 0
16201 Profit Maximization for Online Advertising Dem... develop optimization model corresponding algor... 1 0 1 0 0 0
16202 Traces of surfactants can severely limit the d... superhydrophobic surfaces shss potential achie... 0 1 0 0 0 0
16203 Non-Convex Rank/Sparsity Regularization and Lo... paper considers problem recovering either low ... 0 0 1 0 0 0
16204 Supervised Speech Separation Based on Deep Lea... speech separation task separating target speec... 1 0 0 0 0 0
16205 Sample Efficient Feature Selection for Factore... reinforcement learning state real world often ... 1 0 0 1 0 0
16206 Sgoldstino-less inflation and low energy SUSY ... assess range validity sgoldstinoless inflation... 0 1 0 0 0 0
16207 SideEye: A Generative Neural Network Based Sim... foveal vision makes less visual field peripher... 1 0 0 0 0 0
16208 Carbon stars in the X-Shooter Spectral Library... previous paper assembled collection mediumreso... 0 1 0 0 0 0
16209 Four-variable expanders over the prime fields let mathbbfp prime field order p set mathbbfp ... 0 0 1 0 0 0
16210 Limit multiplicities for ${\rm SL}_2(\mathcal{... prove family lattices rm slmathcalof f running... 0 0 1 0 0 0
16211 On comparing clusterings: an element-centric f... clustering one universal approaches understand... 1 0 0 1 0 0
16212 Parametric Oscillatory Instability in a Fabry-... discuss parametric oscillatory instability fab... 0 1 0 0 0 0
16213 Mapping properties of the Hilbert and Fubini--... suppose compact khler manifold x ample line bu... 0 0 1 0 0 0
16214 Space-time Constructivism vs. Modal Provincial... lobachevski entertained possibility multiple r... 0 1 0 0 0 0
16215 On the representation of integers by binary qu... note show given irreducible binary quadratic f... 0 0 1 0 0 0
16216 The First Planetary Microlensing Event with Tw... present analysis microlensing event moablg sho... 0 1 0 0 0 0
16217 A Learning-Based Approach for Lane Departure W... misunderstanding driver correction behaviors d... 1 0 0 0 0 0
16218 Internet of Things: Survey on Security and Pri... internet things iot intended ubiquitous connec... 1 0 0 0 0 0
16219 A Connectedness Constraint for Learning Sparse... graphs naturally sparse objects used study man... 0 0 0 1 0 0
16220 Quotients of finite-dimensional operators by s... finite dimensional operator commutes symmetry ... 0 0 1 0 0 0
16221 A probabilistic framework for the control of s... probabilistic framework proposed optimization ... 1 0 1 0 0 0
16222 Supersonic Flow onto Solid Wedges, Multidimens... upstream steady uniform supersonic flow imping... 0 1 1 0 0 0
16223 A Zero-Shot Learning application in Deep Drawi... one consequences passing mass production mass ... 1 0 0 1 0 0
16224 Fracton topological phases from strongly coupl... provide new perspective fracton topological ph... 0 1 0 0 0 0
16225 The Internet as Quantitative Social Science Pl... largescale penetration internet first time hum... 1 1 0 1 0 0
16226 Deep Embedding Kernel paper propose novel supervised learning method... 0 0 0 1 0 0
16227 A Radio-Inertial Localization and Tracking Sys... paper develop system lowcost indoor localizati... 1 0 0 0 0 0
16228 Simple groups, generation and probabilistic me... well known every finite simple group generated... 0 0 1 0 0 0
16229 Large polaron evolution in anatase TiO2 due to... electronic magneto transport properties reduce... 0 1 0 0 0 0
16230 AMPNet: Asynchronous Model-Parallel Training f... new types machine learning hardware developmen... 1 0 0 1 0 0
16231 Random data wave equations nowadays many methods allowing exploit regular... 0 0 1 0 0 0
16232 The Persistent Homotopy Type Distance introduce persistent homotopy type distance dh... 1 0 1 0 0 0
16233 Optimal algorithms for smooth and strongly con... paper determine optimal convergence rates stro... 0 0 1 1 0 0
16234 Superconductivity in ultra-thin carbon nanotub... superconductivity angstrom singlewalled carbon... 0 1 0 0 0 0
16235 Exponential lower bounds for history-based sim... behavior simplex algorithm widely studied subj... 1 0 0 0 0 0
16236 Machine learning regression on hyperspectral d... paper present regression framework involving s... 0 0 0 0 1 0
16237 Critical factors and enablers of food quality ... recently along emergence food scandals food su... 0 0 0 0 0 1
16238 Asymptotic behavior of semilinear parabolic eq... study topological structure omegalimit sets sk... 0 0 1 0 0 0
16239 Exploring 4D Quantum Hall Physics with a 2D To... discovery topological states matter profoundly... 0 1 0 0 0 0
16240 Non-hermitian operator modelling of basic canc... propose dynamical system tumor cells prolifera... 0 0 0 0 1 0
16241 Giant ripples on comet 67P/Churyumov-Gerasimen... explaining unexpected presence dunelike patter... 0 1 0 0 0 0
16242 A ROS multi-ontology references services: OWL ... challenge sharing communicating information cr... 1 0 0 0 0 0
16243 Efficient Covariance Approximations for Large ... use sparse precision inverse covariance matric... 0 0 0 1 0 0
16244 The Density of Numbers Represented by Diagonal... let geq fixed positive integer adotsas mathbbz... 0 0 1 0 0 0
16245 Meta-Learning for Resampling Recommendation Sy... one possible approach tackle class imbalance c... 1 0 0 1 0 0
16246 Robustness Analysis of Systems' Safety through... paper propose new robustness notion applicable... 1 0 1 0 0 0
16247 Estimating ground-level PM2.5 by fusing satell... fusing satellite observations station measurem... 0 1 0 0 0 0
16248 An Overview of Recent Progress in Laser Wakefi... goal paper examine experimental progress laser... 0 1 0 0 0 0
16249 MindID: Person Identification from Brain Waves... person identification technology recognizes in... 1 0 0 0 0 0
16250 Beyond black-boxes in Bayesian inverse problem... present paper motivated one fundamental challe... 0 0 0 1 0 0
16251 On the Spectral Properties of Symmetric Functions characterize approximate monomial complexity s... 1 0 0 0 0 0
16252 Strong light shifts from near-resonant and pol... present nonperturbative numerical technique ca... 0 1 0 0 0 0
16253 Positive-rank elliptic curves arising pythagor... present paper introduce new families elliptic ... 0 0 1 0 0 0
16254 Modeling Relational Data with Graph Convolutio... knowledge graphs enable wide variety applicati... 1 0 0 1 0 0
16255 Application of shifted-Laplace preconditioners... several geophysical applications full waveform... 0 1 0 0 0 0
16256 Algorithms For Longest Chains In Pseudo- Trans... directed acyclic graph g v e pseudotransitive ... 1 0 1 0 0 0
16257 From time-series to complex networks: Applicat... networkbased approach presented investigate ce... 0 1 0 0 0 0
16258 On the matrix $pth$ root functions and general... study devoted polynomial representation matrix... 0 0 1 0 0 0
16259 Investigation and Automating Extraction of Thu... today digital forensics images normally provid... 1 0 0 0 0 0
16260 Weighted network estimation by the use of topo... topological metrics graphs provide natural way... 1 0 0 0 0 0
16261 Petrophysical property estimation from seismic... reservoir characterization involves estimation... 1 0 0 0 0 0
16262 Deep Learning for Spatio-Temporal Modeling: Dy... deep learning applies hierarchical layers hidd... 0 0 0 1 0 0
16263 Multi-objective Bandits: Optimizing the Genera... study multiarmed bandit mab problem agent rece... 1 0 0 0 0 0
16264 Floquet multi-Weyl points in crossing-nodal-li... weyl points monopole charge pm extensively stu... 0 1 0 0 0 0
16265 Impact Ionization in $β-Ga_2O_3$ theoretical investigation extremely high field... 0 1 0 0 0 0
16266 Entombed: An archaeological examination of an ... act experience programming heart fundamentally... 1 0 0 0 0 0
16267 Particle Filters for Partially-Observed Boolea... partiallyobserved boolean dynamical systems po... 0 0 1 1 0 0
16268 Cross-National Measurement of Polarization in ... political polarization public space seriously ... 1 0 0 0 0 0
16269 Size-Change Termination as a Contract program termination undecidable yet important ... 1 0 0 0 0 0
16270 Disorder Dependent Valley Properties in Monola... investigate effect disorder potential exciton ... 0 1 0 0 0 0
16271 Results on the Hilbert coefficients and reduct... let rfrakm ddimensional cohenmacaulay local ri... 0 0 1 0 0 0
16272 Progress on Experiments towards LWFA-driven Tr... free electron lasers fel commonly regarded pot... 0 1 0 0 0 0
16273 Non-escaping endpoints do not explode family exponential maps faz eza fundamental im... 0 0 1 0 0 0
16274 The Fornax Deep Survey with VST. II. Fornax A:... part fornax deep survey eso vlt survey telesco... 0 1 0 0 0 0
16275 Local decoding and testing of polynomials over... wellknown demilloliptonschwartzzippel lemma sa... 1 0 0 0 0 0
16276 A New Backpressure Algorithm for Joint Rate Co... backpressure algorithm widely used distributed... 1 0 1 0 0 0
16277 Lifshitz transition from valence fluctuations ... kondo lattice systems mixed valence ybal inter... 0 1 0 0 0 0
16278 Diversity from the Topology of Citation Networks study transitivity directed acyclic graphs use... 1 0 0 0 0 0
16279 Superluminal transmission of phase modulation ... method transmitting information interstellar s... 0 1 0 0 0 0
16280 Causal Regularization application domains healthcare want accurate p... 1 0 0 1 0 0
16281 Voice Disorder Detection Using Long Short Term... automated detection voice disorders computatio... 1 0 0 0 0 0
16282 Topology of two-dimensional turbulent flows of... perform direct numerical simulations dns passi... 0 1 0 0 0 0
16283 Trimming the Independent Fat: Sufficient Stati... one fundamental questions one ask pair random ... 1 1 0 1 0 0
16284 Statistical Physics of the Symmetric Group ordered chains chains amino acids ubiquitous b... 0 1 0 0 0 0
16285 A New Phosphorus Allotrope with Direct Band Ga... based ab initio evolutionary crystal structure... 0 1 0 0 0 0
16286 An open shop approach in approximating optimal... past decade optical wdm networks wavelength di... 1 0 0 0 0 0
16287 Optimal prediction in the linearly transformed... consider linearly transformed spiked model obs... 0 0 1 1 0 0
16288 Self-Normalizing Neural Networks deep learning revolutionized vision via convol... 1 0 0 1 0 0
16289 Real-time Fault Localization in Power Grids Wi... diverse fault types fast reclosures complicate... 1 0 0 0 0 0
16290 Effective identifiability criteria for tensors... tensor given tensor space said hidentifiable a... 1 0 1 0 0 0
16291 Functoriality properties of the dual group let g connected reductive group previous paper... 0 0 1 0 0 0
16292 Chaotic dynamics around cometary nuclei apply generalized kepler map theory describe q... 0 1 0 0 0 0
16293 Riemannian curvature measures famous theorem weyl states compact submanifold... 0 0 1 0 0 0
16294 A new lower bound for the on-line coloring of ... online interval coloring variants important co... 1 0 1 0 0 0
16295 Orbits of monomials and factorization into pro... paper devoted factorization multivariate polyn... 1 0 0 0 0 0
16296 Monodromy and Vinberg fusion for the principal... study geometry singularities principal directi... 0 0 1 0 0 0
16297 Sketched Subspace Clustering immense amount daily generated communicated da... 1 0 0 1 0 0
16298 An infinite class of unsaturated rooted trees ... rna secondary structure designable rna sequenc... 1 0 0 0 0 0
16299 Any Baumslag-Solitar action on surfaces with a... consider f h homeomorphims generating faithful... 0 0 1 0 0 0
16300 Fault Localization for Declarative Models in A... fault localization popular research topic many... 1 0 0 0 0 0
16301 Comparing the fractal basins of attraction in ... basins convergence associated roots attractors... 0 1 0 0 0 0
16302 Parameters for Generalized Hecke Algebras in T... irreducible representations full support ratio... 0 0 1 0 0 0
16303 Arbitrage-Free Interpolation in Models of Mark... models postulate lognormal dynamics interest r... 0 0 0 0 0 1
16304 Bayesian Simultaneous Estimation for Means in ... paper concerned simultaneous estimation k popu... 0 0 1 1 0 0
16305 The Camassa--Holm Equation and The String Dens... paper review recent progress indefinite string... 0 0 1 0 0 0
16306 A simple efficient density estimator that enab... paper introduces simple efficient density esti... 1 0 0 1 0 0
16307 Perches, Post-holes and Grids planning early medieval landscape project peml... 0 0 0 1 0 0
16308 Sharp bounds for population recovery population recovery problem basic problem nois... 1 0 1 1 0 0
16309 MultiBUGS: A parallel implementation of the BU... multibugs https url new version generalpurpose... 0 0 0 1 0 0
16310 Road to safe autonomy with data and formal rea... present overview recently developed datadriven... 1 0 0 0 0 0
16311 Social Events in a Time-Varying Mobile Phone G... largescale study human mobility significantly ... 1 1 0 0 0 0
16312 Range Assignment of Base-Stations Maximizing C... study problem assigning nonoverlapping geometr... 1 0 0 0 0 0
16313 A Polylogarithm Solution to the Epsilon--Delta... let f continuous real function defined subset ... 0 0 1 0 0 0
16314 Pricing of debt and equity in a financial netw... paper present formulas valuation debt equity f... 0 0 0 0 0 1
16315 Resolvent expansion for the Schrödinger operat... consider schrdinger operator combinatorial gra... 0 0 1 0 0 0
16316 Space-Filling Fractal Description of Ion-induc... anions molecules zno atomic zn constitute mass... 0 1 0 0 0 0
16317 Integrable modules over affine Lie superalgebr... describe category integrable sln modules posit... 0 0 1 0 0 0
16318 LocDyn: Robust Distributed Localization for Mo... selflocalize large teams underwater nodes usin... 1 0 1 1 0 0
16319 High-speed X-ray imaging spectroscopy system w... developed system combining backilluminated com... 0 1 0 0 0 0
16320 Cooperative Multi-Sender Index Coding paper propose new coding scheme establish new ... 1 0 1 0 0 0
16321 Comment on "Eshelby twist and correlation effe... aim comment show anisotropic effects image fie... 0 1 0 0 0 0
16322 Variational Community Partition with Novel Net... paper proposed novel twostage optimization met... 1 0 0 0 0 0
16323 Possible formation pathways for the low densit... investigate possible pathways formation low de... 0 1 0 0 0 0
16324 Shape Classification using Spectral Graph Wave... spectral shape descriptors used extensively br... 1 0 0 0 0 0
16325 Dynamical inverse problem for Jacobi matrices consider inverse dynamical problem dynamical s... 0 0 1 0 0 0
16326 A short note on the computation of the general... jacobsthals function recently generalised case... 0 0 1 0 0 0
16327 Improved SVD-based Initialization for Nonnegat... due iterative nature nonnegative matrix factor... 1 0 0 1 0 0
16328 Connectivity jamming game for physical layer a... open access nature wireless communications wir... 1 0 0 0 0 0
16329 Global Symmetries, Counterterms, and Duality i... study threedimensional gauge theories based or... 0 1 0 0 0 0
16330 Tail sums of Wishart and GUE eigenvalues beyon... consider classical gaussian unitary ensemble s... 0 0 1 1 0 0
16331 Ultrafast Energy Transfer with Competing Chann... derive equations motion reduced density matrix... 0 1 0 0 0 0
16332 Observation of non-Fermi liquid behavior in ho... weyl semimetallic compound euiro along hole do... 0 1 0 0 0 0
16333 Galactic Outflows, Star Formation Histories, a... winds predicted ubiquitous lowmass actively st... 0 1 0 0 0 0
16334 Compact microwave kinetic inductance nanowire ... present compact current sensor based supercond... 0 1 0 0 0 0
16335 Evolution of dust extinction curves in galaxy ... understand evolution extinction curve calculat... 0 1 0 0 0 0
16336 Witten Deformation And Some Topics Relating To It simple reading report professor weiping zhangs... 0 0 1 0 0 0
16337 Inverse sensitivity of plasmonic nanosensors a... recent work using plasmonic nanosensors clinic... 0 1 0 0 0 0
16338 On approximation of Ginzburg-Landau minimizers... consider twodimensional ginzburglandau problem... 0 0 1 0 0 0
16339 A Theory of Solvability for Lossless Power Flo... twopart paper details theory solvability power... 0 0 1 0 0 0
16340 Coordination game in bidirectional flow introduced evolutionary game dynamics onedimen... 1 1 0 0 0 0
16341 Leaderboard Effects on Player Performance in a... quantum moves citizen science game investigate... 0 1 0 0 0 0
16342 Marchenko-based target replacement, accounting... seismic monitoring one usually interested resp... 0 1 0 0 0 0
16343 Bayesian model checking: A comparison of tests two procedures checking bayesian models compar... 0 1 0 1 0 0
16344 Idempotents in Intersection of the Kernel and ... let k field characteristic zero mathcal kalgeb... 0 0 1 0 0 0
16345 A connection between the good property of an A... following roos say local ring r good finitely ... 0 0 1 0 0 0
16346 Towards Efficient Verification of Population P... population protocols well established model co... 1 0 0 0 0 0
16347 Simplicial Homotopy Theory, Link Homology and ... purpose note point simplicial methods wellknow... 0 0 1 0 0 0
16348 Optimised Maintenance of Datalog Materialisations efficiently answer queries datalog systems oft... 1 0 0 0 0 0
16349 Inversion of some curvature operators near a p... let mg complete noncompact riemannian manifold... 0 0 1 0 0 0
16350 Partisan gerrymandering with geographically co... bizarrely shaped voting districts frequently l... 0 0 1 0 0 0
16351 Random Scalar Fields and Hyperuniformity disordered manyparticle hyperuniform systems e... 0 1 0 0 0 0
16352 Methodological Approach for the Design of a Co... modern industrial automatic machines robotic c... 1 0 0 0 0 0
16353 Deep learning for comprehensive forecasting of... approaches machine learning electronic health ... 0 0 0 1 0 0
16354 Experimental constraints on the rheology, erup... present new viscosity measurements synthetic s... 0 1 0 0 0 0
16355 Empirical Bayes Estimators for High-Dimensiona... problem estimating highdimensional sparse vect... 0 0 1 1 0 0
16356 Self-consistent DFT+U method for real-space ti... implemented various dftu schemes including acb... 0 1 0 0 0 0
16357 The search for neutron-antineutron oscillation... tests bl symmetry breaking models important pr... 0 1 0 0 0 0
16358 Compact Multi-Class Boosted Trees gradient boosted decision trees popular machin... 1 0 0 1 0 0
16359 Road Friction Estimation for Connected Vehicle... paper problem road friction prediction fleet c... 1 0 0 1 0 0
16360 A Decentralized Mobile Computing Network for M... collective animal behaviors paradigmatic examp... 1 0 0 0 0 0
16361 Deep Architectures for Neural Machine Translation shown increasing model depth improves quality ... 1 0 0 0 0 0
16362 Reinforcement Learning of Speech Recognition S... speech recognition systems achieved high recog... 1 0 0 1 0 0
16363 Profile-Based Ad Hoc Social Networking Using W... adhoc social networks become popular support n... 1 0 0 0 0 0
16364 An a posteriori error analysis for a coupled c... paper presents posteriori error analysis coupl... 0 0 1 0 0 0
16365 A Hybrid DOS-Tolerant PKC-Based Key Management... security critical vital task wireless sensor n... 1 0 0 0 0 0
16366 Enceladus's crust as a non-uniform thin shell:... geologic activity enceladuss south pole remain... 0 1 0 0 0 0
16367 Minimax Rates and Efficient Algorithms for Noi... recent surge interest studying permutationbase... 1 0 1 1 0 0
16368 Automated Synthesis of Secure Platform Mappings system development often involves decisions hi... 1 0 0 0 0 0
16369 Timely Feedback in Unstructured Cybersecurity ... cyber defence exercises intensive handson lear... 1 0 0 0 0 0
16370 An $ω$-Algebra for Real-Time Energy Problems develop continuous kleene omegaalgebra realtim... 1 0 0 0 0 0
16371 Trajectory Normalized Gradients for Distribute... recently researchers proposed various lowpreci... 1 0 0 1 0 0
16372 On the convergence of mirror descent beyond st... paper examine convergence mirror descent class... 1 0 1 0 0 0
16373 Can MPTCP Secure Internet Communications from ... multipath communications internet scale myth l... 1 0 0 0 0 0
16374 Network Structure of Two-Dimensional Decaying ... present paper reports effort characterize vort... 0 1 0 0 0 0
16375 Pattern Generation for Walking on Slippery Ter... paper extend state art model predictive contro... 1 0 0 0 0 0
16376 Fisher-Rao Metric, Geometry, and Complexity of... study relationship geometry capacity measures ... 1 0 0 1 0 0
16377 YUI and HANA: Control and Visualization Progra... developed control visualization programs yui h... 0 1 0 0 0 0
16378 A generalization of a theorem of Hurewicz for ... identify four countable topological spaces sd ... 1 0 1 0 0 0
16379 Reconstruction of stochastic 3-D signals with ... cryoelectron microscopy provides projection im... 0 1 0 1 0 0
16380 Gradient estimates for singular quasilinear el... paper prove lqestimates gradients solutions si... 0 0 1 0 0 0
16381 Learning Feature Nonlinearities with Non-Conve... various applications relations dependent indep... 1 0 1 1 0 0
16382 Empirical distributions of the robustified $t$... based median median absolute deviation estimat... 0 0 0 1 0 0
16383 Exponential error rates of SDP for block model... paper consider cluster estimation problem stoc... 1 0 1 1 0 0
16384 Large-Margin Classification in Hyperbolic Space representing data hyperbolic space effectively... 0 0 0 1 0 0
16385 The airglow layer emission altitude cannot be ... investigate nightly mean emission height width... 0 1 0 0 0 0
16386 Microscopic origin of the mobility enhancement... spinelperovskite heterointerface gammaalosrtio... 0 1 0 0 0 0
16387 Ordered Monoids: Languages and Relations give finite axiomatization variety generated r... 0 0 1 0 0 0
16388 On the secrecy gain of $\ell$-modular lattices show every ell counterexample ellmodular secre... 0 0 1 0 0 0
16389 Extremal invariant polynomials not satisfying ... zeta functions linear codes defined iwan duurs... 0 0 1 0 0 0
16390 Fourier analysis of serial dependence measures classical spectral analysis based discrete fou... 0 0 1 1 0 0
16391 HVACKer: Bridging the Air-Gap by Attacking the... modern corporations physically separate sensit... 1 0 0 0 0 0
16392 Koszul binomial edge ideals of pairs of graphs study koszul property standard graded kalgebra... 0 0 1 0 0 0
16393 On Loss Functions for Deep Neural Networks in ... deep neural networks currently among commonly ... 1 0 0 0 0 0
16394 Are theoretical results 'Results'? yes 0 0 0 0 1 0
16395 Self-supervised learning of visual features th... endtoend training scratch current deep archite... 1 0 0 0 0 0
16396 Detector sampling of optical/IR spectra: how m... optical ir spectra acquired using detectors fi... 0 1 0 0 0 0
16397 Accurate Single Stage Detector Using Recurrent... recent successful methods accurate object dete... 1 0 0 0 0 0
16398 On separable higher Gauss maps study mth gauss map sense flzak projective var... 0 0 1 0 0 0
16399 Diffeomorphisms of the closed unit disc conver... mathcalg group composition diffeomorphisms f b... 0 0 1 0 0 0
16400 Spitzer Secondary Eclipses of Qatar-1b previous secondary eclipse observations hot ju... 0 1 0 0 0 0
16401 Dielectric response of Anderson and pseudogapp... using combination analytic numerical methods s... 0 1 0 0 0 0
16402 Epidemiological modeling of the 2005 French ri... largescale instance dramatic collective behavi... 1 1 0 0 0 0
16403 Option Pricing in Illiquid Markets with Jumps classical linear blackscholes model pricing de... 0 0 0 0 0 1
16404 A Knowledge-Based Analysis of the Blockchain P... heart bitcoin blockchain protocol protocol ach... 1 0 0 0 0 0
16405 Convergence Analysis of Optimization Algorithms regret bound optimization algorithms one basic... 1 0 1 1 0 0
16406 On the combinatorics of the 2-class classifica... set points x xb cup xr subseteq mathbbrd linea... 1 0 0 0 0 0
16407 Laboratory evidence of dynamo amplification of... magnetic fields ubiquitous universe extragalac... 0 1 0 0 0 0
16408 Radiating Electron Interaction with Multiple C... multiple colliding laser pulse concept formula... 0 1 0 0 0 0
16409 Towards End-to-end Text Spotting with Convolut... work jointly address problem text detection re... 1 0 0 0 0 0
16410 Evidence for OH or H2O on the surface of 433 E... water hydroxyl thought found primitive airless... 0 1 0 0 0 0
16411 Jump Locations of Jump-Diffusion Processes wit... propose general framework studying jumpdiffusi... 0 1 1 0 0 0
16412 Dust evolution with active galactic nucleus fe... recently suggested dust growth cold gas phase ... 0 1 0 0 0 0
16413 Generative-Discriminative Variational Model fo... paradigm shift shallow classifiers handcrafted... 1 0 0 0 0 0
16414 PCA-Initialized Deep Neural Networks Applied T... paper present novel approach initializing deep... 1 0 0 1 0 0
16415 On a frame theoretic measure of quality of LTI... practical significance define notion measure q... 1 0 1 0 0 0
16416 Fuzzy Clustering Data Given on the Ordinal Sca... task clustering data given ordinal scale condi... 1 0 0 0 0 0
16417 The ALICE O2 common driver for the C-RORC and ... alice large ion collider experiment heavyion d... 1 1 0 0 0 0
16418 Adapting control policies from simulation to r... paper proposes approach domain transfer based ... 1 0 0 0 0 0
16419 Evidence against a supervoid causing the CMB C... report results dfvst atlas cold spot galaxy re... 0 1 0 0 0 0
16420 How to Produce an Arbitrarily Small Tensor to ... construct toy model demonstrates large field s... 0 1 0 0 0 0
16421 Meta Learning Shared Hierarchies develop metalearning approach learning hierarc... 1 0 0 0 0 0
16422 The bright-star masks for the HSC-SSP survey present procedure build validate brightstar ma... 0 1 0 0 0 0
16423 Many Paths to Equilibrium: GANs Do Not Need to... generative adversarial networks gans family ge... 1 0 0 1 0 0
16424 The Tensor Memory Hypothesis discuss memory models based tensor decompositi... 1 0 0 1 0 0
16425 Data-driven Approach to Measuring the Level of... published reporters without borders every year... 1 0 0 0 0 0
16426 Advanced Satellite-based Frequency Transfer at... advanced satellitebased frequency transfers tw... 0 1 0 0 0 0
16427 Are there needles in a moving haystack? Adapti... paper investigate problem detecting dynamicall... 0 0 1 1 0 0
16428 Image-based Localization using Hourglass Networks paper propose encoderdecoder convolutional neu... 1 0 0 0 0 0
16429 Suppression of Decoherence of a Spin-Boson Sys... consider finitedimensional quantum system coup... 0 0 1 0 0 0
16430 Energy saving for building heating via a simpl... modelbased control building heating systems en... 1 0 0 0 0 0
16431 Trace Properties from Separation Logic Specifi... propose formal approach relating abstract sepa... 1 0 0 0 0 0
16432 Estimation of Local Degree Distributions via L... owing capability summarising interactions elem... 0 0 0 1 0 0
16433 The ALMA Phasing System: A Beamforming Capabil... atacama millimetersubmillimeter array alma pha... 0 1 0 0 0 0
16434 Signatures of two-step impurity mediated vorte... simulate rotating bec study melting vortex lat... 0 1 0 0 0 0
16435 Cycle Consistent Adversarial Denoising Network... coronary ct angiography series ct images taken... 0 0 0 1 0 0
16436 The multidimensional truncated Moment Problem:... let mathcala finitedimensional subspace cmathc... 0 0 1 0 0 0
16437 Inspiration, Captivation, and Misdirection: Em... world wide web www fundamentally changed ways ... 1 0 0 0 0 0
16438 Multiphase Aluminum A356 Foam Formation Proces... shanchen model numerical scheme simulate multi... 1 1 0 0 0 0
16439 Deformations of coisotropic submanifolds in Ja... thesis study deformation problem coisotropic s... 0 0 1 0 0 0
16440 Discriminate-and-Rectify Encoders: Learning fr... complexity learning task increased transformat... 1 0 0 1 0 0
16441 Covering compact metric spaces greedily general greedy approach construct coverings co... 0 0 1 0 0 0
16442 Gauge covariances and nonlinear optical responses formalism reduced density matrix pursued lengt... 0 1 0 0 0 0
16443 Quasi-Static Internal Magnetic Field Detected ... report muon spin relaxation musr measurements ... 0 1 0 0 0 0
16444 Auto-Encoding Total Correlation Explanation advances unsupervised learning enable reconstr... 0 0 0 1 0 0
16445 A Characterisation of Open Bisimilarity using ... open bisimilarity original notion bisimilarity... 1 0 0 0 0 0
16446 Using data science as a community advocacy too... cities across united states undergoing great t... 1 0 0 0 0 0
16447 General Bayesian inference schemes in infinite... bayesian statistical models allow us formalise... 0 0 0 1 0 0
16448 Glow: Generative Flow with Invertible 1x1 Conv... flowbased generative models dinh et al concept... 0 0 0 1 0 0
16449 Pohozaev identity for the fractional $p-$Lapla... virtue suitable approximation argument prove p... 0 0 1 0 0 0
16450 A Second Wave of Expanders over Finite Fields expository survey recent sumproduct results fi... 0 0 1 0 0 0
16451 Homology of torus knots using method eliashogancamp combinatorics tori... 0 0 1 0 0 0
16452 2-associahedra rgeq mathbfn mathbbzgeqr setminus mathbf const... 0 0 1 0 0 0
16453 Anisotropic thermophoresis colloidal migration temperature gradient refer... 0 1 0 0 0 0
16454 Ultra-Wideband Aided Fast Localization and Map... paper proposes ultrawideband uwb aided localiz... 1 0 0 0 0 0
16455 Modular Sensor Fusion for Semantic Segmentation sensor fusion fundamental process robotic syst... 1 0 0 0 0 0
16456 Thickness-dependent electronic and magnetic pr... growth electronic magnetic properties gammafen... 0 1 0 0 0 0
16457 Error Characterization, Mitigation, and Recove... nand flash memory ubiquitous everyday life tod... 1 0 0 0 0 0
16458 Unified Backpropagation for Multi-Objective De... common practice deep convolutional neural arch... 1 0 0 1 0 0
16459 Information-Theoretic Representation Learning ... recent advances weakly supervised classificati... 1 0 0 1 0 0
16460 Aspects of Chaitin's Omega halting probability turing machinealso known c... 1 0 1 0 0 0
16461 This Looks Like That: Deep Learning for Interp... faced challenging image classification tasks o... 0 0 0 1 0 0
16462 Deep Learning in the Automotive Industry: Appl... deep learning refers set machine learning tech... 1 0 0 0 0 0
16463 Design, Engineering and Optimization of a Grid... multilevel converters found many applications ... 0 1 0 0 0 0
16464 An infinitely differentiable function with com... english translation old paper definicin estudi... 0 0 1 0 0 0
16465 Analysis of bacterial population growth using ... present work develop delayed logistic growth m... 0 0 0 0 1 0
16466 Reverse Quantum Annealing Approach to Portfoli... investigate hybrid quantumclassical solution m... 0 0 0 0 0 1
16467 GLoMo: Unsupervisedly Learned Relational Graph... modern deep transfer learning approaches mainl... 0 0 0 1 0 0
16468 Learning to cluster in order to transfer acros... paper introduces novel method perform transfer... 1 0 0 0 0 0
16469 Modeling Perceptual Aliasing in SLAM via Discr... perceptual aliasing one main causes failure si... 1 0 0 0 0 0
16470 Sparse distributed representation, hierarchy, ... among important hallmarks human intelligence a... 0 0 0 0 1 0
16471 Efficient implementations of the modified Gram... modified gramschmidt mgs orthogonalization one... 0 0 1 0 0 0
16472 On the isoperimetric constant, covariance ineq... firstly derive dimension one new covariance in... 0 0 1 1 0 0
16473 Faster arbitrary-precision dot product and mat... present algorithms real complex dot product ma... 1 0 0 0 0 0
16474 Improving Distributed Representations of Tweet... unsupervised representation learning tweets im... 1 0 0 0 0 0
16475 Tverberg-type theorems for matroids: A counter... brny kalai meshulam recently obtained topologi... 0 0 1 0 0 0
16476 Near-Perfect Conversion of a Propagating Plane... paper theoretical numerical studies perfectnea... 0 1 0 0 0 0
16477 A National Research Agenda for Intelligent Inf... infrastructure touches daytoday life fellow ci... 1 0 0 0 0 0
16478 Surface Edge Explorer (SEE): Planning Next Bes... surveying scenes common task robotics systems ... 1 0 0 0 0 0
16479 N/O abundance ratios in gamma-ray burst and su... distribution abundance ratios calculated detai... 0 1 0 0 0 0
16480 Baselines and a datasheet for the Cerema AWP d... paper presents recently published cerema awp a... 0 0 0 1 0 0
16481 Characterizing Directed and Undirected Network... estimating distributions node characteristics ... 1 1 0 0 0 0
16482 Tensorial Recurrent Neural Networks for Longit... traditional recurrent neural networks assume v... 1 0 0 1 0 0
16483 End-to-End Learning for the Deep Multivariate ... multivariate probit model mvp popular classic ... 0 0 0 1 0 0
16484 Purity and separation for oriented matroids leclerc zelevinsky motivated study quasicommut... 0 0 1 0 0 0
16485 Random Manifolds have no Totally Geodesic Subm... ngeq show generic closed riemannian nmanifolds... 0 0 1 0 0 0
16486 Kinematically Redundant Octahedral Motion Plat... propose novel design parallel manipulator stew... 1 0 0 0 0 0
16487 Loss Max-Pooling for Semantic Image Segmentation introduce novel loss maxpooling concept handli... 1 0 0 1 0 0
16488 Nonlinear Traveling Internal Waves in Depth-Va... work study nonlinear traveling waves density s... 0 1 0 0 0 0
16489 Instabilities of Internal Gravity Wave Beams internal gravity waves play primary role geoph... 0 1 0 0 0 0
16490 Multiphoton-Excited Fluorescence of Silicon-Va... siliconvacancy color centers nanodiamonds prom... 0 1 0 0 0 0
16491 Exploring Latent Semantic Factors to Find Usef... online reviews provided consumers valuable ass... 1 0 0 1 0 0
16492 Thermodynamically-consistent semi-classical $\... compare results semiclassical sc quantummechan... 0 1 0 0 0 0
16493 A Fourier transform for the quantum Toda lattice introduce algebraic fourier transform quantum ... 0 0 1 0 0 0
16494 Semi-supervised learning semisupervised learning deals problem possible... 0 0 1 1 0 0
16495 The Cosmic-Ray Neutron Rover - Mobile Surveys ... measurements rootzone soil moisture across spa... 0 1 0 0 0 0
16496 Invariance in Constrained Switching study discrete time linear constrained switchi... 1 0 1 0 0 0
16497 On the choice of the low-dimensional domain fo... challenge taking many variables account optimi... 0 0 1 1 0 0
16498 Distributed resource allocation through utilit... fundamental component game theoretic approach ... 1 0 0 0 0 0
16499 Quasiparticle band structure engineering in va... idea combining different twodimensional crysta... 0 1 0 0 0 0
16500 Special Lagrangian submanifolds and cohomogene... construct examples cohomogeneity one special l... 0 0 1 0 0 0
16501 Linear Regression with Sparsely Permuted Data regression analysis multivariate data tacitly ... 0 0 1 1 0 0
16502 Matrix Scaling and Balancing via Box Constrain... paper study matrix scaling balancing fundament... 1 0 0 0 0 0
16503 AP17-OLR Challenge: Data, Plan, and Baseline present data profile evaluation plan second or... 1 0 0 0 0 0
16504 First results from the IllustrisTNG simulation... illustristng project new suite cosmological ma... 0 1 0 0 0 0
16505 A Fast Implementation of Singular Value Thresh... paper present fast implementation singular val... 1 0 0 0 0 0
16506 Surface magnetism of gallium arsenide nanofilms gallium arsenide gaas widest used second gener... 0 1 0 0 0 0
16507 Monte Carlo study of the Coincidence Resolving... paper use detailed monte carlo simulations dem... 0 1 0 0 0 0
16508 Detecting Hierarchical Ties Using Link-Analysi... social networks contain implicit knowledge use... 1 1 0 0 0 0
16509 Optimal stimulation protocol in a bistable syn... consolidation synaptic changes response neural... 0 0 0 0 1 0
16510 Parametric Polynomial Preserving Recovery on M... paper investigates gradient recovery schemes d... 0 0 1 0 0 0
16511 Integral points on the complement of plane qua... let complement plane quartic curve defined num... 0 0 1 0 0 0
16512 Modelling collective motion based on the princ... collective motion intriguing phenomenon especi... 0 0 0 1 0 0
16513 Cosmic Microwave Background constraints for gl... present first cmb power spectra numerical simu... 0 1 0 0 0 0
16514 A parallel implementation of the Synchronised ... community detection networks actual important ... 1 0 0 0 0 0
16515 Index coding with erroneous side information paper new index coding problems studied receiv... 1 0 0 0 0 0
16516 HATS-36b and 24 other transiting/eclipsing sys... report result campaign monitor hatsouth candid... 0 1 0 0 0 0
16517 The Carnegie-Chicago Hubble Program: Discovery... ultrafaint dwarf galaxies ufds faintest known ... 0 1 0 0 0 0
16518 An Exploratory Study on the Implementation and... enterprise resource planning erp systems cover... 1 0 0 0 0 0
16519 Selective inference for the problem of regions... general approach selective inference considere... 0 0 1 1 0 0
16520 Arbitrary Beam Synthesis of Different Hybrid B... future mmwave mobile communication systems use... 1 0 0 0 0 0
16521 The emergence of the concept of filter in topo... approaches convergence concept filter taken pr... 0 0 1 0 0 0
16522 Memory-augmented Neural Machine Translation neural machine translation nmt achieved notabl... 1 0 0 0 0 0
16523 RFID Localisation For Internet Of Things Smart... internet things iot enables numerous business ... 1 0 0 0 0 0
16524 Symplectic capacities from positive S^1-equiva... use positive sequivariant symplectic homology ... 0 0 1 0 0 0
16525 Synthesis versus analysis in patch-based image... global modelspriors example using wavelet fram... 1 0 0 0 0 0
16526 Nearly-tight VC-dimension and pseudodimension ... prove new upper lower bounds vcdimension deep ... 1 0 0 0 0 0
16527 Benchmarking Numerical Methods for Lattice Equ... compare performances wellknown numerical times... 0 1 0 0 0 0
16528 Can Planning Images Reduce Scatter in Follow-U... due wide field view conebeam computed tomograp... 0 1 0 0 0 0
16529 Proactive Defense Against Physical Denial of S... internet things iot promises improve areas ene... 1 0 0 0 0 0
16530 The weakly compact reflection principle need n... weakly compact reflection principle textreflte... 0 0 1 0 0 0
16531 Large scale distributed neural network trainin... techniques ensembling distillation promise mod... 0 0 0 1 0 0
16532 New method to design stellarator coils without... finding easytobuild coils set critical issue s... 0 1 0 0 0 0
16533 An Analytical Framework for Modeling a Spatial... propose new cellular network model captures de... 1 0 1 0 0 0
16534 Glycolaldehyde in Perseus young solar analogs aims paper focus occurrence glycolaldehyde hco... 0 1 0 0 0 0
16535 Comprehension-guided referring expressions consider generation comprehension natural lang... 1 0 0 0 0 0
16536 Modeling the Multiple Sclerosis Brain Disease ... human brain one complex living structures know... 1 1 0 0 0 0
16537 Improved NN-JPDAF for Joint Multiple Target Tr... feature aided tracking often yield improved tr... 1 0 0 1 0 0
16538 KINETyS: Constraining spatial variations of th... heavyweight stellar initial mass function imf ... 0 1 0 0 0 0
16539 Multi-Agent Deep Reinforcement Learning with H... deep learning enabled traditional reinforcemen... 0 0 0 1 0 0
16540 Deep into the Water Fountains: The case of IRA... abridged formation largescale hundreds thousan... 0 1 0 0 0 0
16541 QAOA for Max-Cut requires hundreds of qubits f... computational quantum technologies entering ne... 1 0 0 0 0 0
16542 Mixed-Effect Modeling for Longitudinal Predict... paper mixedeffect modeling scheme proposed con... 0 0 0 1 0 0
16543 Distributed Exact Shortest Paths in Sublinear ... distributed singlesource shortest paths proble... 1 0 0 0 0 0
16544 Fingerprints of angulon instabilities in the s... formation vortices usually considered main mec... 0 1 0 0 0 0
16545 Considering Multiple Uncertainties in Stochast... securityconstrained unit commitment scuc one s... 0 1 1 0 0 0
16546 Gluing Delaunay ends to minimal n-noids using ... construct constant mean curvature surfaces euc... 0 0 1 0 0 0
16547 Some Remarks on the Hyperkähler Reduction consider hyperkhler reduction describe via fra... 0 0 1 0 0 0
16548 Image Labeling Based on Graphical Models Using... introduce novel approach maximum posteriori in... 1 0 0 0 0 0
16549 Operator algebraic approach to inverse and sta... prove inverse theorem gowers unorm maps gtomat... 0 0 1 0 0 0
16550 Collective irregular dynamics in balanced netw... extensively explore networks weakly unbalanced... 0 0 0 0 1 0
16551 Measurement of human activity using velocity G... human movement used indicator human activity m... 1 1 0 0 0 0
16552 Concurrent Segmentation and Localization for T... realtime instrument tracking crucial requireme... 1 0 0 0 0 0
16553 Bobtail: A Proof-of-Work Target that Minimizes... blockchain systems designed produce blocks con... 1 0 0 0 0 0
16554 Mobility Edges in 1D Bichromatic Incommensurat... theoretically study onedimensional mutually in... 0 1 0 0 0 0
16555 Privacy Preserving Identification Using Sparse... paper consider privacy preserving encoding fra... 1 0 0 1 0 0
16556 Manifold Learning Using Kernel Density Estimat... consider problem recovering ddimensional manif... 0 0 0 1 0 0
16557 Unsupervised Learning-based Depth Estimation a... rgbd camera maintains limited range working ha... 1 0 0 0 0 0
16558 On the Properties of the Power Systems Nodal A... letter provides conditions determining rank no... 1 0 1 0 0 0
16559 Isolation and connectivity in random geometric... random geometric graphs consist randomly distr... 0 1 0 0 0 0
16560 Multi-SpaM: a Maximum-Likelihood approach to P... motivation wordbased alignmentfree methods phy... 0 0 0 0 1 0
16561 Zermelo deformation of Finsler metrics by Kill... show geodesics jacobi vector fields flag curva... 0 0 1 0 0 0
16562 Robust estimation of mixing measures in finite... finite mixture models apart underlying mixing ... 0 0 1 1 0 0
16563 Phase Noise and Jitter in Digital Electronics article explains phase noise jitter slower phe... 0 1 0 0 0 0
16564 Advanced Soccer Skills and Team Play of RoboCu... order pursue vision robocup humanoid league be... 1 0 0 0 0 0
16565 Phase partitioning in a novel near equi-atomic... novel low cost near equiatomic alloy comprisin... 0 1 0 0 0 0
16566 Overview of Project 8 and Progress Towards Tri... project tritium endpoint neutrino mass experim... 0 1 0 0 0 0
16567 Proper efficiency and cone efficiency report two general concepts proper efficiency ... 0 0 1 0 0 0
16568 Sequential Skip Prediction with Few-shot in St... paper provides outline algorithms submitted ws... 1 0 0 0 0 0
16569 Genetic interactions from first principles derive general statistical model interactions ... 0 0 0 1 0 0
16570 On the Log Partition Function of Ising Model o... sparse stochastic block model sbm two communit... 0 0 0 1 0 0
16571 Radial transonic shock solutions of Euler-Pois... given constant data density rho velocity ubf e... 0 0 1 0 0 0
16572 X-rays from Green Pea Analogs xray observations two metaldeficient luminous ... 0 1 0 0 0 0
16573 A deeper view of the CoRoT-9 planetary system.... corotb one rare longperiod p days transiting g... 0 1 0 0 0 0
16574 Wave propagation characteristics of Parareal paper derives analyses semidiscrete dispersion... 1 0 1 0 0 0
16575 Benchmark of Deep Learning Models on Large Hea... deep learning models aka deep neural networks ... 1 0 0 1 0 0
16576 Modeling of Persistent Homology topological data analysis tda novel statistica... 0 0 0 1 0 0
16577 Auto-Encoding Sequential Monte Carlo build autoencoding sequential monte carlo aesm... 0 0 0 1 0 0
16578 Einstein's accelerated reference systems and F... show uniformly accelerated reference systems p... 0 1 0 0 0 0
16579 Premise Selection for Theorem Proving by Deep ... propose deep learningbased approach problem pr... 1 0 0 0 0 0
16580 Goldbach Representations in Arithmetic Progres... assuming conjecture distinct zeros dirichlet l... 0 0 1 0 0 0
16581 Estimable group effects for strongly correlate... well known parameters strongly correlated pred... 0 0 1 1 0 0
16582 Online Structure Learning for Sum-Product Netw... sumproduct networks recently emerged attractiv... 1 0 0 1 0 0
16583 Rapid Design of Wide-Area Heterogeneous Electr... propose novel numerical approach optimal desig... 0 1 0 0 0 0
16584 Multimodal Trajectory Predictions for Autonomo... autonomous driving presents one largest proble... 1 0 0 0 0 0
16585 Phase-Resolved Two-Dimensional Spectroscopy of... present novel time phaseresolved backgroundfre... 0 1 0 0 0 0
16586 Optimized Spatial Partitioning via Minimal Swa... optimized spatial partitioning algorithms corn... 1 0 0 1 0 0
16587 Learning Correspondence Structures for Person ... paper addresses problem handling spatial misal... 1 0 0 0 0 0
16588 Inner Product and Set Disjointness: Beyond Log... basic goal complexity theory understand commun... 1 0 0 0 0 0
16589 Topological classification of time-asymmetry i... effective gauge fields allowed emulation matte... 0 1 0 0 0 0
16590 A Light Modality for Recursion investigate interplay modality controlling beh... 1 0 0 0 0 0
16591 Counting the number of metastable states in th... modularity maximization using greedy algorithm... 1 0 0 0 0 0
16592 Infinite rank surface cluster algebras generalise surface cluster algebras case infin... 0 0 1 0 0 0
16593 Machine learning prediction errors better than... investigate impact choosing regressors molecul... 0 1 0 0 0 0
16594 Invariant tori for the Nosé Thermostat near th... let hqp p vq degree freedom mechanical hamilto... 0 0 1 0 0 0
16595 Dyadic Green's function formalism for photo-in... comprehensive theoretical analysis photoinduce... 0 1 0 0 0 0
16596 Semi-supervised Embedding in Attributed Networ... paper propose novel framework called semisuper... 1 0 0 0 0 0
16597 Kernel partial least squares for stationary data consider kernel partial least squares algorith... 0 0 1 1 0 0
16598 Doubled Khovanov Homology define homology theory virtual links built dir... 0 0 1 0 0 0
16599 On the multi-dimensional elephant random walk purpose paper investigate asymptotic behavior ... 0 0 1 1 0 0
16600 Acceleration and Averaging in Stochastic Mirro... formulate study general family continuoustime ... 0 0 1 1 0 0
16601 Electrothermal Feedback in Kinetic Inductance ... kinetic inductance detectors kids similar appl... 0 1 0 0 0 0
16602 Comparison of Modified Kneser-Ney and Witten-B... smoothing one technique overcome data sparsity... 1 0 0 0 0 0
16603 Social evolution of structural discrimination structural discrimination appears persistent p... 0 1 0 0 0 0
16604 Decentralized Control of a Hexapod Robot Using... robots control systems rely upon precise timin... 1 0 0 0 0 0
16605 Domain wall motion by localized temperature gr... magnetic domain wall dw motion induced localiz... 0 1 0 0 0 0
16606 Generation of High Dynamic Range Illumination ... paper presents algorithm enhances undesirably ... 1 0 0 0 0 0
16607 Replace or Retrieve Keywords In Documents at S... paper introduce flashtext algorithm replacing ... 1 0 0 0 0 0
16608 A Multi Objective Reliable Location-Inventory ... logistics network expected opened facilities w... 1 0 0 1 0 0
16609 Formation of Galactic Prominence in Galactic C... carried dimensional resistive mhd simulations ... 0 1 0 0 0 0
16610 Joint Probabilistic Linear Discriminant Analysis standard probabilistic linear discriminant ana... 1 0 0 1 0 0
16611 Adversarial Attack on Graph Structured Data deep learning graph structures shown exciting ... 1 0 0 1 0 0
16612 Uncertainty quantification for kinetic models ... kinetic equations play major rule modeling lar... 0 1 0 0 0 0
16613 How Much Chemistry Does a Deep Neural Network ... meteoric rise deep learning models computer vi... 1 0 0 1 0 0
16614 Accelerated Computing in Magnetic Resonance Im... purpose develop generic optimization strategie... 1 1 0 0 0 0
16615 Exploiting Color Name Space for Salient Object... paper investigate contribution color names sal... 1 0 0 0 0 0
16616 Possibility to realize spin-orbit-induced corr... recent theoretical predictions unprecedented p... 0 1 0 0 0 0
16617 Numerical Investigation of Unsteady Aerodynami... unsteady characteristics flow thick flatback a... 0 1 0 0 0 0
16618 Development of a passive Rehabilitation Robot ... research implemented use arduino uno r microco... 1 1 0 0 0 0
16619 PHOEG Helps Obtaining Extremal Graphs extremal graph theory aims determine bounds gr... 1 0 0 0 0 0
16620 Crime Prediction by Data-Driven Green's Functi... develop algorithm forecasts cascading events e... 1 1 0 1 0 0
16621 DZ Cha: a bona fide photoevaporating disc dz cha weaklined tauri star wtts surrounded br... 0 1 0 0 0 0
16622 A Bayesian Filtering Algorithm for Gaussian Mi... bayesian filtering algorithm developed class s... 1 0 0 1 0 0
16623 Efficient Use of Limited-Memory Accelerators f... propose generic algorithmic building block acc... 1 0 0 1 0 0
16624 Fast Autonomous Flight in Warehouses for Inven... past years shown remarkable growth usecases mi... 1 0 0 0 0 0
16625 Cosmological solutions in generalized hybrid m... construct exact solutions representing friedma... 0 1 0 0 0 0
16626 Ultimate Boundedness for Switched Systems with... paper investigate robustness external disturba... 1 0 0 0 0 0
16627 The two-to-infinity norm and singular subspace... singular value matrix decomposition plays ubiq... 0 0 1 1 0 0
16628 Variational Bayesian Complex Network Reconstru... complex network reconstruction hot topic many ... 1 0 0 0 0 0
16629 Renormalization of the two-dimensional stochas... study twodimensional stochastic nonlinear wave... 0 0 1 0 0 0
16630 Generation of High-Purity Millimeter-Wave Orbi... twisted electromagnetic waves helical phase fr... 0 1 0 0 0 0
16631 CFT: A Cluster-based File Transfer Scheme for ... effective file transfer vehicles fundamental m... 1 0 0 0 0 0
16632 Empirical priors and posterior concentration r... bayesian context prior specification inference... 0 0 1 1 0 0
16633 PeerReview4All: Fair and Accurate Reviewer Ass... consider problem automated assignment papers r... 0 0 0 1 0 0
16634 CT Image Reconstruction in a Low Dimensional M... regularization methods commonly used xray ct i... 1 1 0 0 0 0
16635 Deep Unsupervised Clustering Using Mixture of ... unsupervised clustering one fundamental challe... 1 0 0 1 0 0
16636 Enabling a Pepper Robot to provide Automated a... pepper robot become widely recognised face per... 1 0 0 0 0 0
16637 The Ensemble Kalman Filter: A Signal Processin... ensemble kalman filter enkf monte carlo based ... 1 0 0 1 0 0
16638 Simultaneous Transmit and Receive Operation in... fullduplex fd technology likely adopted variou... 1 0 0 0 0 0
16639 Transfer Learning-Based Crack Detection by Aut... unmanned aerial vehicles uavs recently shown g... 1 0 0 0 0 0
16640 A Separation Between Run-Length SLPs and LZ77 paper give infinite family strings length lemp... 1 0 0 0 0 0
16641 A Model that Predicts the Material Recognition... tactile sensing enable robot infer properties ... 1 0 0 0 0 0
16642 The Value of Inferring the Internal State of T... safe interaction human drivers one primary cha... 1 0 0 0 0 0
16643 Long range scattering for nonlinear Schrödinge... paper consider final state problem nonlinear s... 0 0 1 0 0 0
16644 SegMap: 3D Segment Mapping using Data-Driven D... performing localization mapping working level ... 1 0 0 0 0 0
16645 The Hesse curve of a Lefschtz pencil of plane ... prove generic lefschetz pencil plane curves de... 0 0 1 0 0 0
16646 Markov State Models from short non-Equilibrium... many state art methods thermodynamic kinetic c... 0 1 1 0 0 0
16647 Principal series for general linear groups ove... construct finite commutative ring r family rep... 0 0 1 0 0 0
16648 Constraining Radon Backgrounds in LZ lz dark matter detector like many rareevent se... 0 1 0 0 0 0
16649 Single-particle dispersion in stably stratifie... present models singleparticle dispersion verti... 0 1 0 0 0 0
16650 Pili mediated intercellular forces shape heter... microcolonies aggregates dozen thousand cells ... 0 1 0 0 0 0
16651 Accurate Inference for Adaptive Linear Models estimators computed adaptively collected data ... 1 0 0 1 0 0
16652 Distribution on Warp Maps for Alignment of Ope... alignment curve data integral part statistical... 0 0 1 1 0 0
16653 Unbiased and Consistent Nested Sampling via Se... introduce new class sequential monte carlo met... 0 0 0 1 0 0
16654 Cuntz semigroups of compact-type Hopf C*-algebras classical cuntz semigroup important role study... 0 0 1 0 0 0
16655 City-Scale Intelligent Systems and Platforms earths population resides urban areas steadily... 1 0 0 0 0 0
16656 A simulated comparison between profile and are... direct comparison areal profile roughness meas... 0 1 0 0 0 0
16657 The VLA-COSMOS 3 GHz Large Project: Continuum ... present vlacosmos ghz large project based hour... 0 1 0 0 0 0
16658 DeepSource: Point Source Detection using Deep ... point source detection low signaltonoise chall... 0 0 0 1 0 0
16659 Co-design of aperiodic sampled-data min-jumpin... codesign conditions design jumpingrule sampled... 1 0 1 0 0 0
16660 Coalescence of Two Impurities in a Trapped One... study ground state onedimensional trapped bose... 0 1 0 0 0 0
16661 Rust Distilled: An Expressive Tower of Languages rust represents major advancement production p... 1 0 0 0 0 0
16662 Game Theory for Multi-Access Edge Computing: S... game theory gt used significant success formul... 1 0 0 0 0 0
16663 General description of spin motion in storage ... general theoretical description influence osci... 0 1 0 0 0 0
16664 Simultaneous active parameter estimation and c... robots performing manipulation tasks must oper... 1 0 0 0 0 0
16665 An exploratory factor analysis model for slum ... mexico per cent urban population lives informa... 0 0 0 1 0 0
16666 An Estimate of the First Eigenvalue of a Schrö... based work schoenyau derive estimate first eig... 0 0 1 0 0 0
16667 Ease.ml: Towards Multi-tenant Resource Sharing... present easeml declarative machine learning se... 1 0 0 1 0 0
16668 Computation on Encrypted Data using Data Flow ... encrypting data sending cloud protects hackers... 1 0 0 0 0 0
16669 Analytic and Numerical Analysis of Singular Ca... let icd c qin c irightarrowinfty function give... 0 0 1 0 0 0
16670 Observation of a new field-induced phase trans... demonstrate close connection observed fieldind... 0 1 0 0 0 0
16671 Two-dimensional magneto-optical trap as a sour... report realization transversely loaded twodime... 0 1 0 0 0 0
16672 Loading a linear Paul trap to saturation from ... present experimental measurements steadystate ... 0 1 0 0 0 0
16673 Early warning signals in plant disease outbreaks summary infectious disease outbreaks plants th... 0 0 0 0 1 0
16674 Predicting the Gender of Indonesian Names investigated way predict gender name using cha... 1 0 0 0 0 0
16675 Exploring Students Blended Learning Through So... information technology used widely many aspect... 1 0 0 0 0 0
16676 Thompson Sampling for a Fatigue-aware Online R... paper consider online recommendation setting p... 1 0 0 1 0 0
16677 Finding Large Primes paper present expand upon procedures obtaining... 0 0 1 0 0 0
16678 D-optimal Designs for Multinomial Logistic Models consider optimal designs general multinomial l... 0 0 1 1 0 0
16679 Rover Descent: Learning to optimize by learnin... learning optimize idea learn data algorithms o... 0 0 0 1 0 0
16680 Reordering of the Logistic Map with a Nonlinea... well known logistic map parameter interest wei... 0 1 1 0 0 0
16681 Tensor network factorizations: Relationships b... advanced brain imaging techniques make possibl... 0 0 0 1 0 0
16682 Model-free prediction of noisy chaotic time se... present deep neural network modelfree predicti... 1 1 0 0 0 0
16683 Robust XVA introduce arbitragefree framework robust valua... 0 0 0 0 0 1
16684 Rarefaction Waves for the Toda Equation via No... apply method nonlinear steepest descent comput... 0 1 1 0 0 0
16685 IRA codes derived from Gruenbaum graph paper consider coding short data frames bits i... 1 0 1 0 0 0
16686 Three- and four-electron integrals involving G... report three main ingredients calculate three ... 0 1 0 0 0 0
16687 HARP: Hierarchical Representation Learning for... present harp novel method learning low dimensi... 1 0 0 0 0 0
16688 Mixed penalization in convolutive nonnegative ... signal recorded enclosed room typically gets a... 1 0 0 0 0 0
16689 Using Contour Trees in the Analysis and Visual... current generation radio millimeter telescopes... 1 1 0 0 0 0
16690 The Price of BitCoin: GARCH Evidence from High... first paper estimates price determinants bitco... 0 0 0 0 0 1
16691 Application of a unified Kenmotsu-type formula... kenmotsus formula describes surfaces euclidean... 0 0 1 0 0 0
16692 A Vector Matroid-Theoretic Approach in the Stu... paper structural controllability systems fz st... 1 0 0 0 0 0
16693 From cold Fermi fluids to the hot QGP strongly coupled quantum fluids found differen... 0 1 0 0 0 0
16694 Decomposition method related to saturated hype... paper study problem hyperball hypersphere pack... 0 0 1 0 0 0
16695 Dynamic interdependence and competition in mul... critical infrastructure physiology human brain... 0 1 0 0 0 0
16696 Applications of L systems to group theory l systems generalise contextfree grammars inco... 1 0 1 0 0 0
16697 'Senator, We Sell Ads': Analysis of the 2016 R... one key aspects united states democracy free f... 1 0 0 0 0 0
16698 On the k-Means/Median Cost Function work study kmeans cost function euclidean kmea... 1 0 0 0 0 0
16699 Secure and Reconfigurable Network Design for C... internet things iot revolutionizing management... 1 0 0 0 0 0
16700 Symmetric Variational Autoencoder and Connecti... new form variational autoencoder vae proposed ... 0 0 0 1 0 0
16701 Matrix Product Unitaries: Structure, Symmetrie... matrix product vectors form appropriate framew... 0 1 0 0 0 0
16702 Deep Models Under the GAN: Information Leakage... deep learning recently become hugely popular m... 1 0 0 1 0 0
16703 A. G. W. Cameron 1925-2005, Biographical Memoi... alastair graham walker cameron astrophysicist ... 0 1 0 0 0 0
16704 Realization of "Time Crystal" Lagrangians and ... demonstrate nonconvex time crystal lagrangians... 0 1 0 0 0 0
16705 Gradient Normalization & Depth Based Decay For... paper introduce novel method gradient normaliz... 1 0 0 1 0 0
16706 CARET analysis of multithreaded programs dynamic pushdown networks dpns natural model m... 1 0 0 0 0 0
16707 Sparse modeling approach to analytical continu... new approach solving illconditioned inverse pr... 0 1 0 1 0 0
16708 Distral: Robust Multitask Reinforcement Learning deep reinforcement learning algorithms data in... 1 0 0 1 0 0
16709 Finding the number density of atomic vapor by ... demonstrate technique obtaining density atomic... 0 1 0 0 0 0
16710 Rigidity for von Neumann algebras given by loc... prove first rigidity classification theorems c... 0 0 1 0 0 0
16711 Quantum Singwi-Tosi-Land-Sjoelander approach f... inhomogeneous interacting electronic systems t... 0 1 0 0 0 0
16712 3D Convolutional Neural Networks for Brain Tum... paper analyzes use convolutional neural networ... 0 0 0 1 0 0
16713 Learning Random Fourier Features by Hybrid Con... kernel embedding algorithm important component... 1 0 0 1 0 0
16714 Min-max formulas and other properties of certa... paper first attempt systematically study prope... 0 0 1 0 0 0
16715 The Prescribed Ricci Curvature Problem on Homo... consider compact lie group g closed subgroup h... 0 0 1 0 0 0
16716 Solving Boundary Value Problem for a Nonlinear... algorithm constructing control function transf... 0 0 1 0 0 0
16717 Modelling and prediction of financial trading ... last years growing interest using financial tr... 0 0 0 1 0 0
16718 A comparative study of fairness-enhancing inte... computers increasingly used make decisions sig... 0 0 0 1 0 0
16719 Predicting Opioid Relapse Using Social Media Data opioid addiction severe public health threat u... 1 0 0 0 0 0
16720 Self-Trapping of G-Mode Oscillations in Relati... examine perturbation method selftrapping gmode... 0 1 0 0 0 0
16721 Computable geometric complex analysis and comp... discuss computability computational complexity... 0 0 1 0 0 0
16722 PoseCNN: A Convolutional Neural Network for 6D... estimating pose known objects important robots... 1 0 0 0 0 0
16723 MIP Formulations for the Steiner Forest Problem steiner forest problem among fundamental netwo... 1 0 0 0 0 0
16724 Luminescence in germania-silica fibers in 1-2 ... analyze origins luminescence germaniasilica fi... 0 1 0 0 0 0
16725 Boundedness in languages of infinite words define new class languages omegawords strictly... 1 0 0 0 0 0
16726 Maximum Regularized Likelihood Estimators: A G... maximum regularized likelihood estimators mrle... 0 0 1 1 0 0
16727 Emergent $\mathrm{SU}(4)$ Symmetry in $α$-ZrCl... enhancement spinspace symmetry usual mathrmsu ... 0 1 0 0 0 0
16728 Central elements of the Jennings basis and cer... morita theoretic viewpoint computing morita in... 0 0 1 0 0 0
16729 Linear Disentangled Representation Learning fo... limited annotated data available recognition f... 1 0 0 1 0 0
16730 ChemGAN challenge for drug discovery: can AI r... generating molecules desired chemical properti... 1 0 0 1 0 0
16731 Nodal domains, spectral minimal partitions, an... survey short version chapter written first two... 0 0 1 0 0 0
16732 Optimal control of two qubits via a single cav... optimization fidelity control operations criti... 0 1 0 0 0 0
16733 Modular Representation of Layered Neural Networks layered neural networks greatly improved perfo... 1 0 0 1 0 0
16734 A Guide to General-Purpose Approximate Bayesia... chapter guide generalpurpose abc software appe... 0 0 0 1 0 0
16735 Feature Selection Facilitates Learning Mixture... feature selection facilitate learning mixtures... 1 0 0 1 0 0
16736 3D Human Pose Estimation on a Configurable Bed... robots potential assist people bed healthcare ... 1 0 0 0 0 0
16737 Multilingual Hierarchical Attention Networks f... hierarchical attention networks recently achie... 1 0 0 0 0 0
16738 The complexity of recognizing minimally tough ... let positive real number graph called ttough r... 1 0 0 0 0 0
16739 Homeostatic plasticity and external input shap... vitro vivo spiking activity clearly differ whe... 0 0 0 0 1 0
16740 How Sensitive are Sensitivity-Based Explanations? propose simple objective evaluation measure ex... 1 0 0 1 0 0
16741 Synchronization Strings: Channel Simulations a... present many new results related reliable inte... 1 0 0 0 0 0
16742 Learning to Generate Samples from Noise throug... work investigate novel training procedure lear... 1 0 0 1 0 0
16743 Worst-case vs Average-case Design for Estimati... pairwise comparison data arises many domains i... 1 0 0 1 0 0
16744 Decoupling multivariate polynomials: interconn... decoupling multivariate polynomials useful obt... 0 0 1 0 0 0
16745 Arcades: A deep model for adaptive decision ma... voicecontrolled smarthome controller must resp... 1 0 0 1 0 0
16746 Evolutionary Centrality and Maximal Cliques in... paper introduces evolutionary approach enhance... 1 0 0 0 0 0
16747 Band structure engineered layered metals for l... plasmonics currently faces problem seemingly i... 0 1 0 0 0 0
16748 Acceleration through Optimistic No-Regret Dyna... consider problem minimizing smooth convex func... 0 0 0 1 0 0
16749 A Full Bayesian Model to Handle Structural One... economic evaluations individuallevel data impo... 0 0 0 1 0 0
16750 Misconceptions about Calorimetry past years calorimeters become important detec... 0 1 0 0 0 0
16751 Exothermicity is not a necessary condition for... recent experiments revealed diffusivity exothe... 0 1 0 0 0 0
16752 Automatic Detection of Knee Joints and Quantif... paper introduces new approach automatically qu... 1 0 0 0 0 0
16753 Data-Driven Filtered Reduced Order Modeling Of... propose datadriven filtered reduced order mode... 0 1 0 0 0 0
16754 FEAST Eigensolver for Nonlinear Eigenvalue Pro... linear feast algorithm method solving linear e... 1 0 0 0 0 0
16755 Twin Primes In Quadratic Arithmetic Progressions recent heuristic argument based basic concepts... 0 0 1 0 0 0
16756 Bit Complexity of Computing Solutions for Symm... establish upper bounds bit complexity computin... 1 0 0 0 0 0
16757 Relativistic corrections for the ground electr... recalculate leading relativistic corrections g... 0 1 0 0 0 0
16758 Homogenization in Perforated Domains and Inter... establish interior lipschitz estimates macrosc... 0 0 1 0 0 0
16759 Opinion-Based Centrality in Multiplex Networks... people simultaneously belong several distinct ... 1 1 0 0 0 0
16760 FDTD: solving 1+1D delay PDE in parallel present proof concept solving complexvalued de... 1 1 0 0 0 0
16761 Optimal Installation for Electric Vehicle Wire... range anxiety persistent worry enough battery ... 0 0 1 0 0 0
16762 Improved Fixed-Rank Nyström Approximation via ... nystrm method popular technique computing fixe... 1 0 0 1 0 0
16763 Population splitting of rodlike swimmers in Co... present quantitative analysis response dilute ... 0 1 0 0 0 0
16764 MultiAmdahl: Optimal Resource Allocation in He... future multiprocessor chips integrate many dif... 1 0 0 0 0 0
16765 Coset Vertex Operator Algebras and $\W$-Algebras give explicit description weight three generat... 0 0 1 0 0 0
16766 The Moore and the Myhill Property For Strongly... prove moore myhill property strongly irreducib... 1 0 1 0 0 0
16767 eSource for clinical trials: Implementation an... objective learning health system lhs requires ... 1 0 0 0 0 0
16768 SMILES Enumeration as Data Augmentation for Ne... simplified molecular input line entry system s... 1 0 0 0 0 0
16769 Binary Tomography Reconstructions With Few Pro... approach tomographic problem terms linear syst... 1 0 0 0 0 0
16770 On finite determinacy of complete intersection... give elementary combinatorial proof following ... 0 0 1 0 0 0
16771 Topological phase transformations and intrinsi... composite materials comprised ferroelectric na... 0 1 0 0 0 0
16772 Honors Thesis: On the faithfulness of the Bura... study kernel evaluated burau representation br... 0 0 1 0 0 0
16773 On Interpolation and Symbol Elimination in The... paper study possibilities interpolation symbol... 1 0 0 0 0 0
16774 Stellar Abundances for Galactic Archaeology Da... constructed database stars local group using e... 0 1 0 0 0 0
16775 Relativistic distortions in the large-scale cl... general relativistic effects long predicted su... 0 1 0 0 0 0
16776 Superconductivity at the vacancy disorder boun... role phase separation emergence superconductiv... 0 1 0 0 0 0
16777 Probing Primordial-Black-Hole Dark Matter with... primordial black holes pbhs long suggested can... 0 1 0 0 0 0
16778 Fundamental limits of low-rank matrix estimati... consider highdimensional inference problem sig... 0 0 1 0 0 0
16779 Scalable Gaussian Process Inference with Finit... gaussian processes gps offer flexible class pr... 0 0 0 1 0 0
16780 Integral representations and asymptotic behavi... paper explores various special functions gener... 0 0 1 0 0 0
16781 Efficient Mendler-Style Lambda-Encodings in Ce... common model inductive datatypes least fixed p... 1 0 0 0 0 0
16782 Super Jack-Laurent Polynomials let mathcaldnm algebra quantum integrals defor... 0 0 1 0 0 0
16783 A New Classification of Technologies study suggests classification technologies bas... 1 0 0 0 0 0
16784 Potential functions on Grassmannians of planes... triangulation planar polygon n sides one assoc... 0 0 1 0 0 0
16785 Physical properties of the first spectroscopic... present kband multiobject spectrograph kmos ob... 0 1 0 0 0 0
16786 Gas near a wall: a shortened mean free path, r... gas near solid planar wall propose scaling for... 0 1 0 0 0 0
16787 Greater data science at baccalaureate institut... donohos jcgs press paper spirited call action ... 0 0 0 1 0 0
16788 Direct evidence of hierarchical assembly at lo... demographics dwarf galaxy populations long ten... 0 1 0 0 0 0
16789 Short-term Mortality Prediction for Elderly Pa... risk prediction central clinical medicine publ... 1 0 0 1 0 0
16790 R-C3D: Region Convolutional 3D Network for Tem... address problem activity detection continuous ... 1 0 0 0 0 0
16791 Regularization for Deep Learning: A Taxonomy regularization one crucial ingredients deep le... 1 0 0 1 0 0
16792 Re-Evaluating the Netflix Prize - Human Uncert... paper examine statistical soundness comparativ... 1 0 0 0 0 0
16793 Infinite monochromatic sumsets for colourings ... n hindman leader strauss proved consistent fin... 0 0 1 0 0 0
16794 Mean-Field Games with Differing Beliefs for Al... even confronted data agents often disagree mod... 0 0 0 0 0 1
16795 Energy efficiency of finite difference algorit... addition hardware walltime restrictions common... 1 1 0 0 0 0
16796 A Plane of High Velocity Galaxies Across the L... recently showed several local group lg galaxie... 0 1 0 0 0 0
16797 Scalable Magnetic Field SLAM in 3D Using Gauss... present method scalable fully magnetic field s... 1 0 0 1 0 0
16798 K-means Algorithm over Compressed Binary Data consider network binaryvalued sensors fusion c... 1 0 1 0 0 0
16799 Variational Inference for Gaussian Process Mod... largescale gaussian process inference long fac... 1 0 0 1 0 0
16800 Incorporation of prior knowledge of the signal... diffusion mri measurements using hyperpolarize... 1 1 0 0 0 0
16801 Rabi noise spectroscopy of individual two-leve... understanding nature twolevel tunneling defect... 0 1 0 0 0 0
16802 Learning rate adaptation for federated and dif... propose algorithm adaptation learning rate sto... 0 0 0 1 0 0
16803 Holomorphic Hermite polynomials in two variables generalizations hermite polynomials many varia... 0 0 1 0 0 0
16804 Equilibria, information and frustration in het... interactions people basis structure society ar... 1 1 0 0 0 0
16805 Scalable Generalized Dynamic Topic Models dynamic topic models dtms model evolution prev... 0 0 0 1 0 0
16806 Session Types for Orchestrated Interactions setting picalculus binary sessions aim relaxin... 1 0 0 0 0 0
16807 An Agent-Based Approach for Optimizing Modular... modularity military vehicle designs enables on... 1 0 0 0 0 0
16808 Delta-epsilon functions and uniform continuity... certain general conditions explicit formula co... 0 0 1 0 0 0
16809 Deterministic Dispersion of Mobile Robots in D... work study problem dispersion mobile robots dy... 1 0 0 0 0 0
16810 A brain signature highly predictive of future ... early prognosis alzheimers dementia hard mild ... 0 0 0 1 0 0
16811 Deep scattering transform applied to note onse... automatic music transcription amt one oldest w... 1 0 0 1 0 0
16812 Gaschütz Lemma for Compact Groups prove gaschtz lemma holds metrisable compact g... 0 0 1 0 0 0
16813 Driven flow with exclusion and spin-dependent ... present simplified description spindependent e... 0 1 0 0 0 0
16814 MOG: Mapper on Graphs for Relationship Preserv... interconnected nature graphs often results dif... 0 0 0 1 0 0
16815 Variation Evolving for Optimal Control Computa... compact version variation evolving method vem ... 1 0 0 0 0 0
16816 Transforming Sensor Data to the Image Domain f... convolutional neural networks cnns become stat... 1 0 0 0 0 0
16817 The Price of Differential Privacy For Online L... design differentially private algorithms probl... 1 0 0 1 0 0
16818 Simulation chain and signal classification for... acoustic neutrino detection promising approach... 0 1 0 0 0 0
16819 Parameter Space Noise for Exploration deep reinforcement learning rl methods general... 1 0 0 1 0 0
16820 Deep Illumination: Approximating Dynamic Globa... present deep illumination novel machine learni... 1 0 0 0 0 0
16821 Fraternal Dropout recurrent neural networks rnns important class... 1 0 0 1 0 0
16822 Finite-sample bounds for the multivariate Behr... behrensfisher problem wellknown hypothesis tes... 0 0 1 1 0 0
16823 Evidence for mixed rationalities in preference... understanding mechanisms underlying formation ... 1 1 0 0 0 0
16824 A Variance Maximization Criterion for Active L... active learning aims train classifier fast pos... 1 0 0 1 0 0
16825 Polarization, plasmon, and Debye screening in ... compute polarization function doped threedimen... 0 1 0 0 0 0
16826 Identifying Product Order with Restricted Bolt... unsupervised machine learning via restricted b... 0 1 0 0 0 0
16827 A finite temperature study of ideal quantum ga... study thermodynamics ideal bose gas well trans... 0 1 0 0 0 0
16828 High-Frequency Analysis of Effective Interacti... using highfrequency expansion periodically dri... 0 1 0 0 0 0
16829 Fast binary embeddings, and quantized compress... paper deals two related problems namely distan... 0 0 0 1 0 0
16830 The Many Faces of Link Fraud past work social network link fraud detection ... 1 0 0 0 0 0
16831 Diophantine approximation by special primes show whenever delta eta real constants lambdai... 0 0 1 0 0 0
16832 A Compositional Treatment of Iterated Open Games compositional game theory new recently introdu... 1 0 0 0 0 0
16833 Bayesian inference for spectral projectors of ... let x ldots xn iid sample mathbbrp zero mean c... 0 0 1 1 0 0
16834 Handling Incomplete Heterogeneous Data using VAEs variational autoencoders vaes well generative ... 0 0 0 1 0 0
16835 Geometric mean of probability measures and geo... space probability measures positive density fu... 0 0 1 0 0 0
16836 On automorphism groups of Toeplitz subshifts article study automorphisms toeplitz subshifts... 0 0 1 0 0 0
16837 How to Generate Pseudorandom Permutations Over... recent results alagic russell given evidence e... 1 0 1 0 0 0
16838 Measures of Tractography Convergence present work use information theory understand... 0 0 0 1 1 0
16839 Network Flow Based Post Processing for Sales D... collaborative filtering broad powerful framewo... 1 0 0 0 0 0
16840 Lattice Model for Production of Gas define lattice model rock absorbers gas makes ... 0 1 0 0 0 0
16841 Adaptive Representation Selection in Contextua... consider extension contextual bandit setting m... 0 0 0 1 0 0
16842 Algebraic surfaces with zero-dimensional cohom... using theory cohomology support locus give nec... 0 0 1 0 0 0
16843 Insight into the temperature dependent propert... analyzing temperature dependent photoemission ... 0 1 0 0 0 0
16844 Some Ageing Properties of Dynamic Additive Mea... although proportional hazard rate model popula... 0 0 1 1 0 0
16845 From Monte Carlo to Las Vegas: Improving Restr... propose las vegas transformation markov chain ... 1 0 0 1 0 0
16846 CD meets CAT show noncollapsed cdkn space x nge curvature b... 0 0 1 0 0 0
16847 Cost Models for Selecting Materialized Views i... data warehouse performance usually achieved ph... 1 0 0 0 0 0
16848 Dealing with Integer-valued Variables in Bayes... bayesian optimization bo methods useful optimi... 0 0 0 1 0 0
16849 Second-order constrained variational problems ... aim work study intrinsic geometric point view ... 0 0 1 0 0 0
16850 The Galactic Cosmic Ray Electron Spectrum from... cosmic ray electrons measured voyager mev beyo... 0 1 0 0 0 0
16851 Online Scheduling of Spark Workloads with Meso... following present example illustrative experim... 1 0 0 0 0 0
16852 On the representation dimension and finitistic... monomial special multiserial algebras general ... 0 0 1 0 0 0
16853 Would You Like to Motivate Software Testers? A... context considering importance software testin... 1 0 0 0 0 0
16854 POMDP Structural Results for Controlled Sensing article provides short review structural resul... 1 0 0 0 0 0
16855 Low Rank Matrix Recovery with Simultaneous Pre... study data model data matrix expressed l c l l... 1 0 0 1 0 0
16856 Power-Sum Denominators power sum n n cdots xn interest mathematicians... 0 0 1 0 0 0
16857 A resource-frugal probabilistic dictionary and... indexing massive data sets extremely expensive... 1 0 0 0 0 0
16858 Fast learning rate of deep learning via a kern... develop new theoretical framework analyze gene... 1 0 1 1 0 0
16859 Closed-loop field development optimization wit... closedloop field development clfd optimization... 1 0 0 1 0 0
16860 Reduction and regular $t$-balanced Cayley maps... regular tbalanced cayley map rbcmt short group... 0 0 1 0 0 0
16861 Perovskite Substrates Boost the Thermopower of... transition metal oxides promising candidates t... 0 1 0 0 0 0
16862 Motion of a rod pushed at one point in a weigh... analyze motion rod floating weightless environ... 0 1 0 0 0 0
16863 Dimension theory and components of algebraic s... prove basic results dimension theory algebraic... 0 0 1 0 0 0
16864 When is a polynomial ideal binomial after an a... ideal polynomial ring kx field moved change co... 1 0 1 0 0 0
16865 Annihilators in $\mathbb{N}^k$-graded and $\ma... shown mccoy right ideal polynomial ring severa... 0 0 1 0 0 0
16866 q-Neurons: Neuron Activations based on Stochas... propose new generic type stochastic neurons ca... 0 0 0 1 0 0
16867 Liveness-Driven Random Program Generation randomly generated programs popular testing co... 1 0 0 0 0 0
16868 Modeling and optimal control of HIV/AIDS preve... preexposure prophylaxis prep consists use anti... 0 0 1 0 0 0
16869 STARIMA-based Traffic Prediction with Time-var... based observation correlation observed traffic... 1 0 1 0 0 0
16870 Electric Vehicle Charging Station Placement Me... accommodating electric vehicles evs battle fos... 1 0 0 0 0 0
16871 The Steinberg linkage class for a reductive al... let g reductive algebraic group field positive... 0 0 1 0 0 0
16872 Detection and Resolution of Rumours in Social ... despite increasing use social media platforms ... 1 0 0 0 0 0
16873 On harmonic analysis of spherical convolutions... paper contains nontrivial generalization haris... 0 0 1 0 0 0
16874 Relaxation-based viscosity mapping for magneti... magnetic particle imaging mpi shown provide re... 0 1 0 0 0 0
16875 Detecting Statistically Significant Communities community detection key data analysis problem ... 1 0 0 0 0 0
16876 On the effectivity of spectra representing mot... let k infinite perfect field provide general c... 0 0 1 0 0 0
16877 Aggregated Momentum: Stability Through Passive... momentum simple widely used trick allows gradi... 0 0 0 1 0 0
16878 On the Number of Bins in Equilibria for Signal... investigate equilibrium behavior decentralized... 1 0 0 0 0 0
16879 The Dantzig selector for a linear model of dif... paper linear model diffusion processes unknown... 0 0 1 1 0 0
16880 A Spatio-Temporal Multivariate Shared Componen... among proposals joint disease mapping shared c... 0 0 0 1 0 0
16881 The dynamo effect in decaying helical turbulence show decaying hydromagnetic turbulence initial... 0 1 0 0 0 0
16882 Geometrically finite amalgamations of hyperbol... prove two finite volume hyperbolic manifolds a... 0 0 1 0 0 0
16883 Dining Philosophers, Leader Election and Ring ... provide first quantum exact protocol dining ph... 1 0 0 0 0 0
16884 An Online Secretary Framework for Fog Network ... fog computing seen promising approach perform ... 1 0 0 0 0 0
16885 Computer-assisted proof of heteroclinic connec... present computerassisted proof heteroclinic co... 1 0 1 0 0 0
16886 Dust and Gas in Star Forming Galaxies at z~3 -... present millimetre dust emission measurements ... 0 1 0 0 0 0
16887 Flow speed has little impact on propulsive cha... experiments reported performance pitching heav... 0 1 0 0 0 0
16888 Switching and Data Injection Attacks on Stocha... paper consider problem attackresilient state e... 1 0 1 0 0 0
16889 Generating Sentence Planning Variations for St... recent explosion applications dialogue interac... 1 0 0 0 0 0
16890 Detection of planet candidates around K giants... aims purpose paper detect investigate nature l... 0 1 0 0 0 0
16891 Perfect Half Space Games introduce perfect half space games goal player... 1 0 0 0 0 0
16892 Energy-efficient Analog Sensing for Large-scal... research challenge current wireless sensor net... 1 0 0 0 0 0
16893 Computation of ground-state properties in mole... address computation groundstate properties che... 0 1 0 0 0 0
16894 Demonstration of the Relationship between Sens... inverse uncertainty quantification uq bayesian... 0 0 0 1 0 0
16895 The GENIUS Approach to Robust Mendelian Random... mendelian randomization mr popular instrumenta... 0 0 0 1 0 0
16896 Evaluation of Trace Alignment Quality and its ... trace alignment algorithms used process mining... 1 0 0 0 0 0
16897 Size Constraints on Majorana Beamsplitter Inte... topological insulator surfaces proximity super... 0 1 0 0 0 0
16898 Counting Arithmetical Structures on Paths and ... let g finite simple connected graph arithmetic... 0 0 1 0 0 0
16899 From synaptic interactions to collective dynam... study neuronal interactions currently center s... 0 0 0 0 1 0
16900 Exploring cosmic origins with CORE: mitigation... present analysis main systematic effects could... 0 1 0 0 0 0
16901 A non-ordinary peridynamics implementation for... peridynamics pd represents new approach modell... 1 1 0 0 0 0
16902 Discrete-attractor-like Tracking in Continuous... continuous attractor neural networks generate ... 0 0 0 0 1 0
16903 Framework for an Innovative Perceptive Mobile ... paper develop framework innovative perceptive ... 1 0 0 0 0 0
16904 On the smallest non-abelian quotient of $\math... show smallest nonabelian quotient mathrmautfn ... 0 0 1 0 0 0
16905 Property Testing in High Dimensional Ising models paper explores informationtheoretic limitation... 0 0 1 1 0 0
16906 Stratification and duality for homotopical groups paper show category module spectra cbmathcalgm... 0 0 1 0 0 0
16907 Efficiently and easily integrating differentia... present family python modules numerical integr... 1 1 0 0 0 0
16908 Adaptive Diffusions for Scalable Learning over... diffusionbased classifiers relying personalize... 0 0 0 1 0 0
16909 On the Discrimination Power and Effective Util... active learning al methods proven costsaving p... 1 0 0 0 0 0
16910 Torchbearer: A Model Fitting Library for PyTorch introduce torchbearer model fitting library py... 0 0 0 1 0 0
16911 On estimation of contamination from hydrogen c... lineintensity mapping surveys probe largescale... 0 1 0 0 0 0
16912 Training Well-Generalizing Classifiers for Fai... classifiers trained datadependent constraints ... 0 0 0 1 0 0
16913 Automated Website Fingerprinting through Deep ... several studies shown network traffic generate... 1 0 0 0 0 0
16914 DataCite as a novel bibliometric source: Cover... paper explores characteristics datacite determ... 1 0 0 0 0 0
16915 Parameter Estimation of Complex Fractional Orn... obtain strong consistency asymptotic normality... 0 0 1 1 0 0
16916 E-learning Information Technology Based on an ... article proposed new elearning information tec... 1 0 0 0 0 0
16917 Global regularity for 1D Eulerian dynamics wit... eulerpoissonalignment epa system appears mathe... 0 0 1 0 0 0
16918 A $q$-generalization of the para-Racah polynom... new bispectral orthogonal polynomials obtained... 0 0 1 0 0 0
16919 Data Poisoning Attack against Unsupervised Nod... unsupervised node embedding methods eg deepwal... 1 0 0 0 0 0
16920 Entanglement properties of the two-dimensional... twodimensional spin affleckkennedyliebtasaki a... 0 1 0 0 0 0
16921 Heart Rate Variability during Periods of Low B... efficient management low blood pressure bp pre... 0 0 0 1 0 0
16922 Understanding News Outlets' Audience-Targeting... power press shape informational landscape popu... 1 0 0 0 0 0
16923 Deriving a Representative Vector for Ontology ... selecting representative vector set vectors co... 1 0 0 0 0 0
16924 The ESA Gaia Archive: Data Release 1 esa gaia mission producing accurate source cat... 0 1 0 0 0 0
16925 Efficient algorithm for large spectral partitions present amelioration current known algorithms ... 0 0 1 0 0 0
16926 A Martian Origin for the Mars Trojan Asteroids seven nine known mars trojan asteroids belong ... 0 1 0 0 0 0
16927 Far-infrared metallicity diagnostics: Applicat... abundance metals galaxies key parameter permit... 0 1 0 0 0 0
16928 Quantum communication by means of collapse of ... show quantum communication means collapse wave... 0 1 0 0 0 0
16929 DeepTerramechanics: Terrain Classification and... terramechanics plays critical role areas groun... 1 0 0 0 0 0
16930 Characterizations of multinormality and corres... provide novel characterizations multivariate n... 0 0 1 1 0 0
16931 Grouped Gaussian Processes for Solar Power Pre... consider multitask regression models observati... 0 0 0 1 0 0
16932 Modeling epidemics on d-cliqued graphs since social interactions shown lead symmetric... 1 0 0 0 1 0
16933 On the K-theory stable bases of the Springer r... cohomological ktheoretic stable bases originat... 0 0 1 0 0 0
16934 Recency Bias in the Era of Big Data: The Need ... amount information available mathematics teach... 1 0 1 0 0 0
16935 Convergence Analysis of Deterministic Kernel-B... paper presents convergence analysis kernelbase... 1 0 0 1 0 0
16936 The toric Frobenius morphism and a conjecture ... combine bondaluehara method producing exceptio... 0 0 1 0 0 0
16937 Friendship Maintenance and Prediction in Multi... due proliferation online social networks osns ... 1 1 0 0 0 0
16938 Learning to Generate Music with BachProp deep learning advances algorithms music compos... 1 0 0 0 0 0
16939 How to Quantize $n$ Outputs of a Binary Symmet... suppose yn obtained observing uniform bernoull... 1 0 1 0 0 0
16940 Semi-Supervised Deep Learning for Monocular De... supervised deep learning often suffers lack su... 1 0 0 0 0 0
16941 Approximation Schemes for Clustering with Outl... clustering problems wellstudied variety fields... 1 0 0 0 0 0
16942 Order preserving pattern matching on trees and... order preserving pattern matching oppm problem... 1 0 0 0 0 0
16943 Categorical Probabilistic Theories present simple categorical framework treatment... 0 0 1 0 0 0
16944 Maximal polynomial modulations of singular int... let k standard hlder continuous caldernzygmund... 0 0 1 0 0 0
16945 Effects of Hubbard term correction on the stru... effects including hubbard onsite coulombic cor... 0 1 0 0 0 0
16946 A multi-scale Gaussian beam parametrix for the... present construction multiscale gaussian beam ... 0 0 1 0 0 0
16947 Uncertainty and sensitivity analysis of functi... functional risk curve gives probability undesi... 0 0 1 1 0 0
16948 Global optimization for low-dimensional switch... paper provides global optimization algorithms ... 1 0 0 1 0 0
16949 An Incremental Self-Organizing Architecture fo... visuomotor tasks robots must compensate tempor... 1 0 0 0 0 0
16950 A CutFEM method for two-phase flow problems article present cut finite element method twop... 1 0 0 0 0 0
16951 Learning under selective labels in the presenc... explore problem learning selective labels cont... 0 0 0 1 0 0
16952 Opacity limit for supermassive protostars present model evolution supermassive protostar... 0 1 0 0 0 0
16953 Learning to Imagine Manipulation Goals for Rob... prospection important part humans come new tas... 1 0 0 0 0 0
16954 On the Combinatorial Power of the Weisfeiler-L... classical weisfeilerlehman method wl uses edge... 1 0 0 0 0 0
16955 Learning to Generate Reviews and Discovering S... explore properties bytelevel recurrent languag... 1 0 0 0 0 0
16956 Designing magnetism in Fe-based Heusler alloys... combining material informatics highthroughput ... 0 1 0 0 0 0
16957 On a diffuse interface model for tumour growth... study nonlocal variant diffuse interface model... 0 0 1 0 0 0
16958 Gradient Descent Can Take Exponential Time to ... although gradient descent gd almost always esc... 1 0 1 1 0 0
16959 Spectral parameter power series for arbitrary ... let l nth order linear differential operator l... 0 0 1 0 0 0
16960 Antropologia de la Informatica Social: Teoria ... traditional humanism twentieth century inspire... 1 0 0 0 0 0
16961 A Deterministic Approach to Avoid Saddle Points loss functions large number saddle points one ... 1 0 0 1 0 0
16962 Automatic Generation of Typographic Font from ... paper addresses automatic generation typograph... 1 0 0 0 0 0
16963 The Second Postulate of Euclid and the Hyperbo... article deals connection second postulate eucl... 0 0 1 0 0 0
16964 Transkernel: An Executor for Commodity Kernels... modern mobile embedded platforms see large num... 1 0 0 0 0 0
16965 No iterated identities satisfied by all finite... show iterated identity satisfied finite groups... 0 0 1 0 0 0
16966 Optimization Methods for Supervised Machine Le... goal tutorial introduce key models algorithms ... 1 0 0 1 0 0
16967 A Unified Parallel Algorithm for Regularized G... partial least squares pls methods heavily expl... 0 0 0 1 0 0
16968 Asymptotic behaviour of the fifth Painlevé tra... study asymptotic behaviour solutions fifth pai... 0 1 1 0 0 0
16969 Hidden Treasures - Recycling Large-Scale Inter... internetwide scans common active measurement a... 1 0 0 0 0 0
16970 Image Registration and Predictive Modeling: Le... present method metric optimization large defor... 0 0 0 1 0 0
16971 On a direct algorithm for constructing recursi... suggested algorithm searching recursion operat... 0 1 0 0 0 0
16972 Network Classification and Categorization best knowledge paper presents first largescale... 1 0 0 1 0 0
16973 A Polynomial-Time Algorithm for Solving the Mi... many complex systems biology physics engineeri... 1 0 1 0 0 0
16974 The Description and Scaling Behavior for the I... second derivativebased moment method proposed ... 0 1 0 0 0 0
16975 Completely Sidon sets in $C^*$-algebras (New t... sequence calgebra called completely sidon span... 0 0 1 0 0 0
16976 Conflict-Free Coloring of Planar Graphs conflictfree kcoloring graph assigns one k dif... 1 0 1 0 0 0
16977 Explicit solutions to utility maximization pro... study problem utility maximization terminal we... 0 0 0 0 0 1
16978 Spectroscopic study of the elusive globular cl... globular clusters gcs amongst oldest objects g... 0 1 0 0 0 0
16979 The Fundamental Infinity-Groupoid of a Paramet... given infinitycategory c one naturally constru... 0 0 1 0 0 0
16980 Leveraging Pre-Trained 3D Object Detection Mod... training object detectors autonomous driving l... 0 0 0 1 0 0
16981 Epidemic spreading in multiplex networks influ... study changes opinions vaccination together ev... 0 1 0 0 0 0
16982 CASP Solutions for Planning in Hybrid Domains casp extension asp allows numerical constraint... 1 0 0 0 0 0
16983 Primordial black holes from inflaton and spect... study production primordial black holes pbhs e... 0 1 0 0 0 0
16984 State Space Decomposition and Subgoal Creation... typical reinforcement learning rl agents learn... 1 0 0 1 0 0
16985 Robust Imitation of Diverse Behaviors deep generative models recently shown great pr... 1 0 0 0 0 0
16986 Efficient Measurement of the Vibrational Rogue... paper discuss possible usage compressive sampl... 0 0 1 0 0 0
16987 SceneCut: Joint Geometric and Object Segmentat... paper presents scenecut novel approach jointly... 1 0 0 0 0 0
16988 An Invariant Model of the Significance of Diff... paper show different body parts play equally i... 1 0 0 0 0 0
16989 Forecasting Crime with Deep Learning objective work take advantage deep neural netw... 0 0 0 1 0 0
16990 A family of compact semitoric systems with two... years ago semitoric systems classified pelayo ... 0 0 1 0 0 0
16991 Mixed Threefolds Isogenous to a Product paper study emphthreefolds isogenous product m... 0 0 1 0 0 0
16992 Discriminatory Transfer observe standard transfer learning improve pre... 1 0 0 1 0 0
16993 Ultrafast relaxation of hot phonons in Graphen... fast carrier cooling important high power grap... 0 1 0 0 0 0
16994 Non-linear Associative-Commutative Many-to-One... pattern matching powerful tool part many funct... 1 0 0 0 0 0
16995 Pair Background Envelopes in the SiD Detector beams ilc produce electron positron pairs due ... 0 1 0 0 0 0
16996 Expansion of percolation critical points for H... hamming graph hdn cartesian product complete g... 0 0 1 0 0 0
16997 Efficiently Manifesting Asynchronous Programmi... android mobile app framework enforces singlegu... 1 0 0 0 0 0
16998 AI Challenges in Human-Robot Cognitive Teaming among many anticipated roles robots future hum... 1 0 0 0 0 0
16999 Generalizing the MVW involution, and the contr... certain quasisplit reductive groups g general ... 0 0 1 0 0 0
17000 Miraculous cancellations for quantum $SL_2$ earlier work helen wong author discovered cert... 0 0 1 0 0 0
17001 Energy and time measurements with high-granula... note short summary workshop energy time measur... 0 1 0 0 0 0
17002 Action Tubelet Detector for Spatio-Temporal Ac... current stateoftheart approaches spatiotempora... 1 0 0 0 0 0
17003 Significance of Side Information in the Graph ... percolation based graph matching algorithms re... 1 1 0 0 0 0
17004 Extended Gray-Wyner System with Complementary ... establish rate region extended graywyner syste... 1 0 1 0 0 0
17005 Learning Powers of Poisson Binomial Distributions introduce problem simultaneously learning powe... 1 0 1 1 0 0
17006 Geometry of simplices in Minkowski spaces many problems configurations euclidean geometr... 0 0 1 0 0 0
17007 DLR : Toward a deep learned rhythmic represent... use deep neural networks crucial provide appro... 1 0 0 0 0 0
17008 Phylogeny-based tumor subclone identification ... tumor cells acquire different genetic alterati... 0 0 0 1 1 0
17009 Confidence-based Graph Convolutional Networks ... predicting properties nodes graph important pr... 1 0 0 1 0 0
17010 Long-range fluctuations and multifractality in... paper studies daily connectivity time series w... 0 0 0 1 0 0
17011 The Dynamics of Norm Change in the Cultural Ev... happens new social convention replaces old one... 0 0 0 0 1 0
17012 Bayesian Joint Spike-and-Slab Graphical Lasso article propose new class priors bayesian infe... 0 0 0 1 0 0
17013 Variations on the theme of the uniform boundar... uniform boundary condition normed chain comple... 0 0 1 0 0 0
17014 revisit: a Workflow Tool for Data Science recent years widespread concern scientific com... 1 0 0 1 0 0
17015 Programmatically Interpretable Reinforcement L... present reinforcement learning framework calle... 1 0 0 1 0 0
17016 Kinetic Simulation of Collisional Magnetized P... plasmas varying collisionalities occur many ap... 1 1 0 0 0 0
17017 VC-dimension of short Presburger formulas study vcdimension short formulas presburger ar... 1 0 1 0 0 0
17018 Real-time Traffic Accident Risk Prediction bas... traffic accident data usually noisy contain mi... 1 0 0 1 0 0
17019 Do Developers Update Their Library Dependencie... thirdparty library reuse become common practic... 1 0 0 0 0 0
17020 Is Smaller Better: A Proposal To Consider Bact... bacteria easily characterizable model organism... 1 0 0 0 0 0
17021 A Bayesian Data Augmentation Approach for Lear... data augmentation essential part training proc... 1 0 0 0 0 0
17022 Interpreting Embedding Models of Knowledge Bas... knowledge bases employed variety applications ... 0 0 0 1 0 0
17023 Parameterized complexity of machine scheduling... machine scheduling problems longtime key domai... 1 0 0 0 0 0
17024 Potential Conditional Mutual Information: Esti... conditional mutual information ixyz measures a... 1 0 0 1 0 0
17025 A new approach to divergences in quantum elect... interesting attempt solving infrared divergenc... 0 0 1 0 0 0
17026 Indefinite boundary value problems on graphs consider spectral structure indefinite second ... 0 0 1 0 0 0
17027 Integral curvatures of Finsler manifolds and a... paper study integral curvatures finsler manifo... 0 0 1 0 0 0
17028 L-functions and sharp resonances of infinite i... convex cocompact subgroups slz consider congru... 0 0 1 0 0 0
17029 An Enhanced Lumped Element Electrical Model of... massive parallel approach neuromorphic circuit... 1 1 0 0 0 0
17030 Non-perturbative positive Lyapunov exponent of... first study discrete schrdinger equations anal... 0 0 1 0 0 0
17031 Greedy Algorithms for Cone Constrained Optimiz... greedy optimization methods matching pursuit m... 1 0 0 1 0 0
17032 Probing the accretion disc structure by the tw... analyze relation emission radii twin kilohertz... 0 1 0 0 0 0
17033 Can scientists and their institutions become t... article offers personal perspective current st... 1 0 0 0 0 0
17034 Character sums for elliptic curve densities e elliptic curve mathbbq follows work serre ho... 0 0 1 0 0 0
17035 A monolithic fluid-structure interaction formu... unified fluidstructure interaction fsi formula... 1 1 0 0 0 0
17036 Different Non-extensive Models for heavy-ion c... transverse momentum pt spectra heavyion collis... 0 1 0 0 0 0
17037 Efficient Toxicity Prediction via Simple Featu... toxicity prediction chemical compounds grand c... 1 0 0 1 0 0
17038 Minmax Hierarchies and Minimal Surfaces in Man... introduce general scheme permits generate succ... 0 0 1 0 0 0
17039 Nonseparable Multinomial Choice Models in Cros... multinomial choice models fundamental empirica... 0 0 0 1 0 0
17040 Corona limits of tilings : Periodic case study limit shape successive coronas tiling mo... 0 0 1 0 0 0
17041 The Spatial Range of Conformity properties galaxies like absolute magnitude st... 0 1 0 0 0 0
17042 Non-convex learning via Stochastic Gradient La... stochastic gradient langevin dynamics sgld pop... 1 0 1 1 0 0
17043 Multilevel preconditioner of Polynomial Chaos ... million people suffered heart failure worldwid... 0 1 0 0 0 0
17044 Superradiant Mott Transition combination strong correlation emergent lattic... 0 1 0 0 0 0
17045 Communication via FRET in Nanonetworks of Mobi... practical biologically motivated case protein ... 0 0 0 0 1 0
17046 Multivariate generalized Pareto distributions:... multivariate generalized pareto distributions ... 0 0 1 1 0 0
17047 Invertibility of spectral x-ray data with pile... alvarezmacovski method line integrals xray bas... 0 1 0 0 0 0
17048 Steinberg representations and harmonic cochain... let g adjoint quasisimple group defined split ... 0 0 1 0 0 0
17049 Lorentzian surfaces and the curvature of the S... bboundary mathematical tool used attach topolo... 0 0 1 0 0 0
17050 Mixed Precision Solver Scalable to 16000 MPI P... lattice quantum chromodynamics lattice qcd qua... 0 1 0 0 0 0
17051 A spectral/hp element MHD solver new mhd solver based nektar spectralhp element... 0 1 0 0 0 0
17052 Journalists' information needs, seeking behavi... describe results qualitative study journalists... 1 0 0 0 0 0
17053 Fast Low-Rank Bayesian Matrix Completion with ... problem low rank matrix completion considered ... 1 0 0 1 0 0
17054 Emergence of superconductivity in the canonica... report magnetic calorimetric measurements mk c... 0 1 0 0 0 0
17055 Obtaining a Proportional Allocation by Deletin... consider following control problem fair alloca... 1 0 0 0 0 0
17056 DeepFace: Face Generation using Deep Learning use cnns build system classifies images faces ... 1 0 0 0 0 0
17057 High quality mesh generation using cross and a... paper presents method generate high quality tr... 1 0 0 0 0 0
17058 ELFI: Engine for Likelihood-Free Inference engine likelihoodfree inference elfi python so... 1 0 0 1 0 0
17059 Boosting Adversarial Attacks with Momentum deep neural networks vulnerable adversarial ex... 1 0 0 1 0 0
17060 Information spreading during emergencies and a... critical time information spread aftermath ser... 1 1 0 0 0 0
17061 Large-Scale Plant Classification with Deep Neu... paper discusses potential applying deep learni... 1 0 0 1 0 0
17062 Deep Reinforcement Learning for General Video ... general video game ai gvgai competition associ... 0 0 0 1 0 0
17063 Purely infinite labeled graph $C^*$-algebras paper consider pure infiniteness generalized c... 0 0 1 0 0 0
17064 From safe screening rules to working sets for ... convex sparsitypromoting regularizations ubiqu... 1 0 1 1 0 0
17065 Exoplanet Radius Gap Dependence on Host Star Type exoplanets smaller neptune numerous nature pla... 0 1 0 0 0 0
17066 Mapping the Invocation Structure of Online Pol... surge political information discourse interact... 1 0 0 0 0 0
17067 Collective decision for open set recognition open set recognition osr almost existing metho... 0 0 0 1 0 0
17068 HARPS-N high spectral resolution observations ... projection factor p key quantity used baadewes... 0 1 0 0 0 0
17069 Using Deep Learning and Google Street View to ... united states spends b year initiatives americ... 1 0 0 0 0 0
17070 Gaussian Process Neurons Learn Stochastic Acti... propose stochastic nonparametric activation fu... 1 0 0 1 0 0
17071 The short-term price impact of trades is unive... analyze proprietary dataset trades single asse... 0 1 0 0 0 0
17072 Questions on mod p representations of reductiv... list questions raised joint work arxiv sequels 0 0 1 0 0 0
17073 Filamentary superconductivity in semiconductin... zrse band semiconductor studied long time ago ... 0 1 0 0 0 0
17074 Stochastic Block Model Reveals the Map of Cita... study map largescale structure citation networ... 1 1 0 0 0 0
17075 Limits on the anomalous speed of gravitational... large class modified theories gravity used mod... 0 1 0 0 0 0
17076 Central limit theorems for entropy-regularized... notion entropyregularized optimal transport al... 0 0 1 1 0 0
17077 Inference for Stochastically Contaminated Vari... paper present methodology estimate parameters ... 0 0 0 1 0 0
17078 Variable-Length Resolvability for General Sour... introduce problem variablelength source resolv... 1 0 0 0 0 0
17079 Diattenuation of Brain Tissue and its Impact o... dpolarized light imaging dpli reconstructs ner... 0 1 0 0 0 0
17080 Higgs Modes in the Pair Density Wave Supercond... pair density wave pdw superconducting state pr... 0 1 0 0 0 0
17081 A Serverless Tool for Platform Agnostic Comput... neuroscience carried domain big data high perf... 1 0 0 0 0 0
17082 Traveling-wave parametric amplifier based on t... developed recently proposed josephson travelin... 0 1 0 0 0 0
17083 Measuring LDA Topic Stability from Clusters of... background unstructured textual data increasin... 1 0 0 0 0 0
17084 Continuum Foreground Polarization and Na~I Abs... present study continuum polarization nm range ... 0 1 0 0 0 0
17085 Toward Faultless Content-Based Playlists Gener... study deals contentbased musical playlists gen... 1 0 0 0 0 0
17086 Direct observation of the band gap transition ... res considered promising candidate novel elect... 0 1 0 0 0 0
17087 Lattice embeddings between types of fuzzy sets... paper deal problem extending zadehs operators ... 1 0 0 0 0 0
17088 Coupling of Magneto-Thermal and Mechanical Sup... paper present algorithm coupling magnetotherma... 1 1 0 0 0 0
17089 Converging expansions for Lipschitz self-simil... contrast wellknown methods matching asymptotic... 0 0 1 0 0 0
17090 A Viral Timeline Branching Process to study a ... bioinspired paradigms proving useful analyzing... 1 0 0 0 0 0
17091 Algorithmic Bio-surveillance For Precise Spati... viral zoonoses emerged key drivers recent pand... 0 0 0 1 1 0
17092 Practical Machine Learning for Cloud Intrusion... operationalizing machine learning based securi... 1 0 0 0 0 0
17093 SOI RF Switch for Wireless Sensor Network objective research design ghz rf soi switch um... 1 0 0 0 0 0
17094 The Pentagonal Inequality given positive linear combination five respect... 0 0 1 0 0 0
17095 The Landscape of Deep Learning Algorithms paper studies landscape empirical risk deep ne... 1 0 1 1 0 0
17096 The effect of the environment on the structure... aim understanding effect environment star form... 0 1 0 0 0 0
17097 Recommendations with Negative Feedback via Pai... recommender systems play crucial role mitigati... 0 0 0 1 0 0
17098 Accumulated Gradient Normalization work addresses instability asynchronous data p... 1 0 0 1 0 0
17099 An Optimal Algorithm for Changing from Latitud... work presents algorithm changing latitudinal l... 1 0 0 0 0 0
17100 Ideal Cluster Points in Topological Spaces given ideal mathcali omega show sequence topol... 0 0 1 0 0 0
17101 Spin Hall effect of gravitational waves gravitons possess berry curvature due helicity... 0 1 0 0 0 0
17102 Many-Goals Reinforcement Learning allgoals updating exploits offpolicy nature ql... 0 0 0 1 0 0
17103 Localized Structured Prediction key structured prediction exploiting problem s... 0 0 0 1 0 0
17104 Routing in FRET-based Nanonetworks nanocommunications understood communications n... 0 0 0 0 1 0
17105 FFT Convolutions are Faster than Winograd on M... winogradbased convolution quickly gained tract... 1 0 0 0 0 0
17106 The application of selection principles in the... paper investigate properties function spaces u... 0 0 1 0 0 0
17107 Progressive Neural Architecture Search propose new method learning structure convolut... 1 0 0 1 0 0
17108 Lower Bounds for Maximum Gap in (Inverse) Cycl... maximum gap gf polynomial f maximum difference... 0 0 1 0 0 0
17109 Dynamical Analysis of Cylindrically Symmetric ... paper analyzed stability cylindrically symmetr... 0 1 0 0 0 0
17110 Trace and Kunneth formulas for singularity cat... present elladic trace formula saturated admiss... 0 0 1 0 0 0
17111 A Redshift Survey of the Nearby Galaxy Cluster... present results extensive spectroscopic survey... 0 1 0 0 0 0
17112 A trapped field of 13.4 T in a stack of HTS ta... superconducting bulk rebacuox materials rerare... 0 1 0 0 0 0
17113 Exact Simulation of the Extrema of Stable Proc... exhibit exact simulation algorithm supremum st... 0 0 0 1 0 0
17114 Nonparametric Bayesian estimation of a Hölder ... consider nonparametric bayesian approach estim... 0 0 1 1 0 0
17115 Dirac State in a Centrosymmetric Superconducto... topological superconductor tsc hosting majoran... 0 1 0 0 0 0
17116 Hölder and Lipschitz continuity of functions d... consider henselian rank one valued field k equ... 0 0 1 0 0 0
17117 Bistability of Cavity Magnon Polaritons report first observation magnonpolariton bista... 0 1 0 0 0 0
17118 Errors and secret data in the Italian research... italy adopted performancebased system funding ... 1 0 0 0 0 0
17119 Exploring Features for Predicting Policy Citat... study performed initial investigation evaluati... 1 0 0 0 0 0
17120 Recovery guarantees for compressed sensing wit... numerical analysis perspective assessing robus... 0 0 1 0 0 0
17121 Synthetic Homology in Homotopy Type Theory paper defines homology homotopy type theory pr... 1 0 1 0 0 0
17122 Spatial Models of Vector-Host Epidemics with D... investigate timedependent spatial vectorhost e... 0 0 0 0 1 0
17123 Complex and Quaternionic Principal Component P... recently principal component pursuit received ... 0 0 0 1 0 0
17124 Light axion-like dark matter must be present d... axionlike particles alps might constitute tota... 0 1 0 0 0 0
17125 Boolean function analysis meets stochastic opt... stochastic knapsack problem stochastic variant... 1 0 0 0 0 0
17126 Nonparanormal Information Estimation study problem using iid samples unknown multiv... 1 0 1 1 0 0
17127 Controlling a population introduce new setting population agents modell... 1 0 0 0 0 0
17128 Finite scale local Lyapunov exponents distribu... present work analyzes distribution function fi... 0 1 0 0 0 0
17129 Improved Power Decoding of One-Point Hermitian... propose new partial decoding algorithm onepoin... 1 0 0 0 0 0
17130 Finite numbers of initial ideals in non-Noethe... article generalize wellknown result ideals noe... 0 0 1 0 0 0
17131 The Diederich-Fornaess Index and Good Vector F... consider relationship two sufficient condition... 0 0 1 0 0 0
17132 Complete Minors of Self-Complementary Graphs show selfcomplementary graph n vertices contai... 0 0 1 0 0 0
17133 Statistical estimation of the Oscillating Brow... study asymptotic behavior estimators twovalued... 0 0 1 1 0 0
17134 Competing Ferromagnetic and Anti-Ferromagnetic... paper discusses magnetic state zeta phase iron... 0 1 0 0 0 0
17135 A cautionary tale: limitations of a brightness... determining wavelengthdependent exoplanet radi... 0 1 0 0 0 0
17136 Generating Memorable Mnemonic Encodings of Num... major system mnemonic system used memorize seq... 1 0 0 0 0 0
17137 De-excitation spectroscopy of strongly interac... present experimental results controlled deexci... 0 1 0 0 0 0
17138 Hyperplane Clustering Via Dual Principal Compo... extend theoretical analysis recently proposed ... 1 0 0 1 0 0
17139 Utilizing Domain Knowledge in End-to-End Audio... endtoend neural network based approaches audio... 1 0 0 1 0 0
17140 Testing Microfluidic Fully Programmable Valve ... fully programmable valve array fpva emerged ne... 1 0 0 0 0 0
17141 Fundamental groups, slalom curves and extremal... define extremal length elements fundamental gr... 0 0 1 0 0 0
17142 Topology and stability of the Kondo phase in q... investigate properties ground state light quar... 0 1 0 0 0 0
17143 Second order nonlinear gyrokinetic theory : Fr... gyrokinetic reduction based specific ordering ... 0 1 0 0 0 0
17144 On the Classification and Algorithmic Analysis... paper study properties carmichael numbers fals... 0 0 1 0 0 0
17145 Phase reduction and synchronization of a netwo... general phase reduction method network coupled... 0 1 0 0 0 0
17146 Analysis of the Impact of Negative Sampling on... knowledge graphs large useful incomplete knowl... 1 0 0 0 0 0
17147 Reverse Curriculum Generation for Reinforcemen... many relevant tasks require agent reach certai... 1 0 0 0 0 0
17148 Mutually touching infinite cylinders in the 3D... recently gave arguments two unique topological... 0 0 1 0 0 0
17149 Introduction to Formal Concept Analysis and It... paper tutorial formal concept analysis fca app... 1 0 0 1 0 0
17150 Fully stripped? The dynamics of dark and lumin... present results multiwavelength investigation ... 0 1 0 0 0 0
17151 When intuition fails in assessing conditional ... recently educational initiative teded publishe... 0 1 0 0 0 0
17152 Tuning parameter selection rules for nuclear n... consider tuning parameter selection rules nucl... 0 0 1 1 0 0
17153 Understanding the evolution of multimedia cont... todays internet traffic mostly dominated multi... 1 0 0 0 0 0
17154 The weak rate of convergence for the Euler-Mar... paper consider weak convergence eulermaruyama ... 0 0 1 0 0 0
17155 Study of deteriorating semiopaque turquoise le... nowadays problem historical beadworks conserva... 0 1 0 0 0 0
17156 Stratified surgery and K-theory invariants of ... work higsonroe fundamental role signature homo... 0 0 1 0 0 0
17157 Weighted Tensor Decomposition for Learning Lat... tensor decomposition methods popular tools lea... 0 0 0 1 0 0
17158 Sparse Bounds for Discrete Quadratic Phase Hil... consider discrete quadratic phase hilbert tran... 0 0 1 0 0 0
17159 Fast Distributed Approximation for TAP and 2-E... tree augmentation problem tap fundamental netw... 1 0 0 0 0 0
17160 Generative Adversarial Source Separation generative source separation methods nonnegati... 1 0 0 1 0 0
17161 Bootstrapping Generalization Error Bounds for ... consider problem finding confidence intervals ... 0 0 1 1 0 0
17162 Sign reversal of magnetoresistance and p to n ... report magnetoresistance nonlinear hall effect... 0 1 0 0 0 0
17163 Proceedings of the Third Workshop on Formal In... volume contains proceedings fide third interna... 1 0 0 0 0 0
17164 A Useful Motif for Flexible Task Learning in a... animals especially humans amazing ability lear... 1 0 0 1 0 0
17165 3D Move to See: Multi-perspective visual servo... paper present new approach visual servoing rob... 1 0 0 0 0 0
17166 Modeling influenza-like illnesses through comp... epidemiological models spread pathogens popula... 1 1 0 0 0 0
17167 Notes on the Polish Algorithm study help computer program polish algorithm f... 0 0 1 0 0 0
17168 Penalized Maximum Tangent Likelihood Estimatio... introduce new class mean regression estimators... 0 0 0 1 0 0
17169 A minimally-dissipative low-Mach number solver... large eddy simulation les become defacto compu... 0 1 0 0 0 0
17170 Surface energy of strained amorphous solids surface stress surface energy fundamental quan... 0 1 0 0 0 0
17171 Biaxial magnetic field setup for angular magne... biaxial magneticfield setup angular magnetic m... 0 1 0 0 0 0
17172 Active matter invasion of a viscous fluid: uns... investigate dynamics dilute suspension hydrody... 0 0 0 0 1 0
17173 Interplay of synergy and redundancy in diamond... formalism partial information decomposition pr... 0 1 0 0 0 0
17174 Hardy-Sobolev equations with asymptotically va... study asymptotic behavior sequence positive so... 0 0 1 0 0 0
17175 Some results on Ricatti Equations, Floquet The... paper present two new results classical floque... 0 0 1 0 0 0
17176 Size, Shape, and Phase Control in Ultrathin Cd... ultrathin twodimensional nanosheets raise rapi... 0 1 0 0 0 0
17177 Transfer of magnetic order and anisotropy thro... resonant xray scattering dy ni l absorption ed... 0 1 0 0 0 0
17178 Exotic limit sets of Teichmüller geodesics in ... answer question durham hagen sisto proving tei... 0 0 1 0 0 0
17179 Decoupling "when to update" from "how to update" deep learning requires data useful approach ob... 1 0 0 0 0 0
17180 Advection of potential temperature in the atmo... anomalously large radii strongly irradiated ex... 0 1 0 0 0 0
17181 Band depths based on multiple time instances bands vectorvalued functions ftmapstomathbbrd ... 0 0 1 1 0 0
17182 On Biased Correlation Estimation general underestimation risk something avoided... 0 0 1 1 0 0
17183 Atomic Swaptions: Cryptocurrency Derivatives atomic swap protocol allows exchange cryptocur... 0 0 0 0 0 1
17184 An arbitrary order scheme on generic meshes fo... design analyse implement arbitrary order schem... 1 0 0 0 0 0
17185 Parametricity, automorphisms of the universe, ... known one construct nonparametric functions as... 1 0 1 0 0 0
17186 Convergence Rates for Deterministic and Stocha... extend classic convergence rate theory subgrad... 1 0 0 0 0 0
17187 A quantum dynamics method for excited electron... introduce practical calculation scheme descrip... 0 1 0 0 0 0
17188 Products of topological groups in which all cl... prove h topological group closed subgroups h s... 0 0 1 0 0 0
17189 Low rank solutions to differentiable systems o... differentiable systems paper means systems equ... 0 0 1 0 0 0
17190 A Simple and Realistic Pedestrian Model for Cr... simulation pedestrian crowd reflects reality m... 1 1 0 0 0 0
17191 Local connectivity modulates multi-scale relax... structural description intriguing link fast vi... 0 1 0 0 0 0
17192 SATR-DL: Improving Surgical Skill Assessment a... purpose paper focuses automated analysis surgi... 1 0 0 0 0 0
17193 Equivalence of weak and strong modes of measur... strong mode probability measure normed space x... 0 0 1 1 0 0
17194 Algebras of Quasi-Plücker Coordinates are Koszul motivated theory quasideterminants study nonco... 0 0 1 0 0 0
17195 Doubly-Attentive Decoder for Multi-modal Neura... introduce multimodal neural machine translatio... 1 0 0 0 0 0
17196 prDeep: Robust Phase Retrieval with a Flexible... phase retrieval algorithms become important co... 0 0 0 1 0 0
17197 Novel Exotic Magnetic Spin-order in Co5Ge3 Nan... cobaltgermanium coge fascinating complex alloy... 0 1 0 0 0 0
17198 Toward Multimodal Image-to-Image Translation many imagetoimage translation problems ambiguo... 1 0 0 1 0 0
17199 On the Sample Complexity of the Linear Quadrat... paper addresses optimal control problem known ... 1 0 0 1 0 0
17200 Mitigating Evasion Attacks to Deep Neural Netw... deep neural networks dnns transformed several ... 1 0 0 1 0 0
17201 Partition-free families of sets let mn denote maximum size family subsets cont... 1 0 0 0 0 0
17202 Measuring the Galactic Cosmic Ray Flux with th... test mass charging caused cosmic rays signific... 0 1 0 0 0 0
17203 Thread-Modular Static Analysis for Relaxed Mem... propose memorymodelaware static program analys... 1 0 0 0 0 0
17204 Bidirectional Evaluation with Direct Manipulation present evaluation update simply update algori... 1 0 0 0 0 0
17205 Extreme Event Statistics in a Drifting Markov ... analyse extreme event statistics experimentall... 0 1 0 0 0 0
17206 On a Possibility of Self Acceleration of Elect... selfconsistent nonlinear interaction monoenerg... 0 1 0 0 0 0
17207 An Adaptive Strategy for Active Learning with ... present first adaptive strategy active learnin... 1 0 0 1 0 0
17208 Towards Adversarial Retinal Image Synthesis synthesizing images eye fundus challenging tas... 1 0 0 1 0 0
17209 Tailoring the SiC surface - a morphology study... investigate growth graphene buffer layer invol... 0 1 0 0 0 0
17210 Polarization of the Vaccination Debate on Face... vaccine hesitancy recognized major global heal... 1 0 0 0 0 0
17211 Predicting Demographics, Moral Foundations, an... personal electronic devices including smartpho... 1 0 0 0 0 0
17212 Isotonic regression in general dimensions study least squares regression function estima... 0 0 1 1 0 0
17213 Extraction of Schottky barrier height insensit... thermal stability electronic photoelectronic d... 0 1 0 0 0 0
17214 Emergent Open-Endedness from Contagion of the ... paper study emergent irreducible information p... 1 0 0 0 0 0
17215 Incompressible Limit of isentropic Navier-Stok... paper concerns low mach number limit weak solu... 0 0 1 0 0 0
17216 On Some Exponential Sums Related to the Coulte... paper formulas exponential sums finite field r... 1 0 0 0 0 0
17217 Distribution-Preserving k-Anonymity preserving privacy individuals protecting sens... 1 0 0 1 0 0
17218 Using controlled disorder to probe the interpl... interplay superconductivity charge density wav... 0 1 0 0 0 0
17219 A training process for improving the quality o... background quality software product depends qu... 1 0 0 0 0 0
17220 Gaia Data Release 1. Cross-match with external... although gaia catalogue powerful tool combinat... 0 1 0 0 0 0
17221 Masses of Kepler-46b, c from Transit Timing Va... use quarters textitkepler mission data analyze... 0 1 0 0 0 0
17222 Recovering water wave elevation from pressure ... reconstruction water wave elevation bottom pre... 0 1 0 0 0 0
17223 Tractable and Scalable Schatten Quasi-Norm App... schatten quasinorm introduced bridge gap trace... 0 0 0 1 0 0
17224 Spectral Radii of Truncated Circular Unitary M... consider truncated circular unitary matrix pn ... 0 0 1 1 0 0
17225 Information Assisted Dictionary Learning for f... paper taskrelated fmri problem treated matrix ... 0 0 0 1 0 0
17226 Efficient, Certifiably Optimal Clustering with... motivated task clustering either variables poi... 0 0 0 1 0 0
17227 Two- and three-dimensional wide-field weak len... present widefield deg weak lensing mass maps h... 0 1 0 0 0 0
17228 A Time-spectral Approach to Numerical Weather ... finite difference methods traditionally used m... 0 1 0 0 0 0
17229 Trivial Constraints on Orbital-free Kinetic En... kinetic energy density functionals kedfs centr... 0 1 0 0 0 0
17230 The Multi-layer Information Bottleneck Problem mutilayer information bottleneck ib problem in... 1 0 0 1 0 0
17231 A geometric approach to non-linear correlation... propose new mathematical model nkdimensional n... 0 1 1 1 0 0
17232 Computing simplicial representatives of homoto... central problem algebraic topology understand ... 1 0 1 0 0 0
17233 Multiobjective Optimization of Solar Powered I... optimization becoming crucial element industri... 1 0 0 0 0 0
17234 Convergence Analysis of Gradient EM for Multi-... paper study convergence properties gradient ex... 1 0 1 1 0 0
17235 The Gravitational-Wave Physics direct detection gravitational wave laser inte... 0 1 0 0 0 0
17236 Multivariant Assertion-based Guidance in Abstr... approximations program analysis necessary evil... 1 0 0 0 0 0
17237 An Experimental Comparison of Uncertainty Sets... development efficient algorithms data structur... 1 0 1 0 0 0
17238 An experimental comparison of velocities under... nonlinear wave interactions affect evolution s... 0 1 0 0 0 0
17239 Full Momentum and Energy Resolved Spectral Fun... singleparticle spectral function measures dens... 0 1 0 0 0 0
17240 Complete parallel mean curvature surfaces in t... purpose article determine explicitly complete ... 0 0 1 0 0 0
17241 Parallelized Linear Classification with Volume... work introduce new type linear classifier impl... 0 0 0 0 1 0
17242 Learning Spatial Regularization with Image-lev... multilabel image classification fundamental ch... 1 0 0 0 0 0
17243 The critical binary star separation for a plan... atmospheres one quarter one half observed sing... 0 1 0 0 0 0
17244 A quantum Mirković-Vybornov isomorphism present quantization isomorphism mirkovi vybor... 0 0 1 0 0 0
17245 Portfolio diversification and model uncertaint... paper concerned multiasset meanvariance portfo... 0 0 0 0 0 1
17246 TensorLayer: A Versatile Library for Efficient... deep learning enabled major advances fields co... 1 0 0 1 0 0
17247 Effects of excess carriers on native defects i... undesired unintentional doping doping limits s... 0 1 0 0 0 0
17248 LATTE: Application Oriented Social Network Emb... recent years many research works propose embed... 1 0 0 0 0 0
17249 Giant paramagnetism induced valley polarizatio... applications exploiting valley pseudospin degr... 0 1 0 0 0 0
17250 Highrisk Prediction from Electronic Medical Re... predicting highrisk vascular diseases signific... 1 0 0 1 0 0
17251 Agent based simulation of the evolution of soc... understanding evolution human society complex ... 1 0 0 1 0 0
17252 Can a heart rate variability biomarker identif... autonomic nervous system ans activity altered ... 0 0 0 0 1 0
17253 Semantic Entity Retrieval Toolkit unsupervised learning lowdimensional semantic ... 1 0 0 0 0 0
17254 Nearly Instance Optimal Sample Complexity Boun... bestkarm problem given n stochastic bandit arm... 1 0 0 1 0 0
17255 Dimensions of equilibrium measures on a class ... study equilibrium measures kenmki measures sup... 0 0 1 0 0 0
17256 Hubble PanCET: An isothermal day-side atmosphe... present thermal emission spectrum bloated hot ... 0 1 0 0 0 0
17257 One Model To Learn Them All deep learning yields great results across many... 1 0 0 1 0 0
17258 Porcupine Neural Networks: (Almost) All Local ... neural networks used prominently several machi... 1 0 0 1 0 0
17259 Configuration Path Integral Monte Carlo Approa... precise knowledge static density response func... 0 1 0 0 0 0
17260 Superzone gap formation and low lying crystal ... magnetocrystalline anisotropy exhibited prpdge... 0 1 0 0 0 0
17261 Adaptive Real-Time Software Defined MIMO Visib... paper experimentally demonstrate realtime soft... 1 0 1 0 0 0
17262 Maximum Principle Based Algorithms for Deep Le... continuous dynamical system approach deep lear... 1 0 0 1 0 0
17263 Factorization Machines Leveraging Lightweight ... popularity linked open data lod associated ris... 1 0 0 0 0 0
17264 Wave propagation and homogenization in 2D and ... wave motion two threedimensional periodic latt... 0 1 0 0 0 0
17265 Waring's problem for unipotent algebraic groups paper formulate analogue warings problem algeb... 0 0 1 0 0 0
17266 Spreading of localized attacks in spatial mult... many realworld multilayer systems critical inf... 1 1 0 0 0 0
17267 Greedy Sparse Signal Reconstruction Using Matc... reconstruction sparse signals requires solutio... 1 0 1 0 0 0
17268 Attack-Aware Multi-Sensor Integration Algorith... paper propose fault detection isolation based ... 1 0 0 0 0 0
17269 Turbulence, cascade and singularity in a gener... study numerically constantinlaxmajdade gregori... 0 1 0 0 0 0
17270 Fitting phase--type scale mixtures to heavy--t... consider fitting heavy tailed data distributio... 0 0 1 1 0 0
17271 Deep Incremental Boosting paper introduces deep incremental boosting new... 1 0 0 1 0 0
17272 Empirical Likelihood for Linear Structural Equ... consider linear structural equation models ass... 0 0 0 1 0 0
17273 Grassmannian flows and applications to nonline... show solutions large class partial differentia... 0 1 1 0 0 0
17274 The Reinhardt Conjecture as an Optimal Control... reinhardt conjectured shape centrally symmetri... 0 0 1 0 0 0
17275 Deep submillimeter and radio observations in t... study heating mechanisms lyalpha escape fracti... 0 1 0 0 0 0
17276 Modeling temporal constraints for a system of ... chapter explain briefly fundamentals interacti... 1 0 0 0 0 0
17277 Electronic structure of ThRu2Si2 studied by an... electronic structure thrusi studied angleresol... 0 1 0 0 0 0
17278 Non-zero constant curvature factorable surface... factorable surfaces ie graphs associated produ... 0 0 1 0 0 0
17279 Darboux and Binary Darboux Transformations for... paper presents two results first shown discret... 0 1 0 0 0 0
17280 Nearly second-order asymptotic optimality of s... sequential changepoint detection distribution ... 1 0 1 1 0 0
17281 Algorithms in the classical Néron Desingulariz... give algorithms construct nron desingularizati... 0 0 1 0 0 0
17282 Recent Advances in Neural Program Synthesis recent years deep learning made tremendous pro... 1 0 0 0 0 0
17283 Generator Reversal consider problem training generative models de... 1 0 0 1 0 0
17284 Finite model reasoning over existential rules ontologybased query answering obqa asks whethe... 1 0 0 0 0 0
17285 On the convergence properties of a $K$-step av... despite popularity practical performance async... 1 0 0 1 0 0
17286 Adversarial Neural Machine Translation paper study new learning paradigm neural machi... 1 0 0 1 0 0
17287 Surface group amalgams that (don't) act on 3-m... determine amalgamated products surface groups ... 0 0 1 0 0 0
17288 Shading Annotations in the Wild understanding shading effects images critical ... 1 0 0 0 0 0
17289 Koszul cycles and Golod rings let power series ring polynomial ring field k ... 0 0 1 0 0 0
17290 PacGAN: The power of two samples in generative... generative adversarial networks gans innovativ... 1 0 0 1 0 0
17291 Stein-like Estimators for Causal Mediation Ana... causal mediation analysis aims estimate natura... 0 0 0 1 0 0
17292 Structure-Based Subspace Method for Multi-Chan... work novel subspacebased method blind identifi... 1 0 0 1 0 0
17293 On Certain Analytical Representations of Cellu... extend previously introduced semianalytical re... 0 1 0 0 0 0
17294 Strong consistency and optimality for generali... article study existence strong consistency gee... 0 0 1 1 0 0
17295 Synthesis and electronic properties of Ruddles... report selective fabrication highquality sriro... 0 1 0 0 0 0
17296 A proof on energy gap for Yang-Mills connection note prove lfracnenergy gap result yangmills c... 0 0 1 0 0 0
17297 Realisability of Pomsets via Communicating Aut... pomsets model concurrent computations introduc... 1 0 0 0 0 0
17298 Complex pattern formation driven by the intera... ecological invasion problem weaker exotic spec... 0 0 0 0 1 0
17299 Solitons with rings and vortex rings on solito... nonlocality key feature many physical systems ... 0 1 0 0 0 0
17300 Deep-HiTS: Rotation Invariant Convolutional Ne... introduce deephits rotation invariant convolut... 1 1 0 0 0 0
17301 On Measuring and Quantifying Performance: Erro... various approaches learning notably domain ada... 1 0 0 1 0 0
17302 Do Reichenbachian Common Cause Systems of Arbi... principle common cause asserts positive correl... 1 1 0 1 0 0
17303 Co-evolution of nodes and links: diversity dri... three species compete cyclically wellmixed sto... 0 0 0 0 1 0
17304 Online Learning with an Almost Perfect Expert study multiclass online learning problem forec... 0 0 0 1 0 0
17305 Actively Learning what makes a Discrete Sequen... deep learning techniques hugely successful tra... 1 0 0 1 0 0
17306 Symmetries and conservation laws of Hamiltonia... paper study infinitesimal symmetries newtonoid... 0 0 1 0 0 0
17307 Fractional differential and fractional integra... studying anomalous diffusion pulsed field grad... 0 1 0 0 0 0
17308 Change of the vortex core structure in two-ban... report nontrivial transition core structure vo... 0 1 0 0 0 0
17309 Nearly Optimal Adaptive Procedure with Change ... multiarmed bandit mab class online learning pr... 0 0 0 1 0 0
17310 An initial-boundary value problem of the gener... investigate initialboundary value problem gene... 0 1 1 0 0 0
17311 Deep Learning Microscopy demonstrate deep neural network significantly ... 1 1 0 0 0 0
17312 Effects of pressure impulse and peak pressure ... development needlefree injection systems utili... 0 1 0 0 0 0
17313 Clustering with Noisy Queries paper initiate rigorous theoretical study clus... 1 0 0 1 0 0
17314 Divide-and-Conquer Checkpointing for Arbitrary... classical reversemode automatic differentiatio... 1 0 0 0 0 0
17315 Bow Ties in the Sky II: Searching for Gamma-ra... manydegreescale gammaray halos expected surrou... 0 1 0 0 0 0
17316 Gain-loss-driven travelling waves in PT-symmet... work investigate onedimensional paritytime pts... 0 1 0 0 0 0
17317 CapsuleGAN: Generative Adversarial Capsule Net... present generative adversarial capsule network... 0 0 0 1 0 0
17318 sourceR: Classification and Source Attribution... zoonotic diseases major cause morbidity produc... 0 0 0 1 0 0
17319 Low resistive edge contacts to CVD-grown graph... exploitation excellent intrinsic electronic pr... 0 1 0 0 0 0
17320 Uniqueness of planar vortex patch in incompres... investigate steady planar flow ideal fluid bou... 0 0 1 0 0 0
17321 An Equivalence of Fully Connected Layer and Co... article demonstrates convolutional operation c... 1 0 0 1 0 0
17322 Critical Points of Neural Networks: Analytical... due success deep learning solving variety chal... 1 0 0 1 0 0
17323 When the Annihilator Graph of a Commutative Ri... let r commutative ring identity let zr set zer... 0 0 1 0 0 0
17324 Econometric modelling and forecasting of intra... following paper analyse idprice german intrada... 0 0 0 0 0 1
17325 Matrix-Based Characterization of the Motion an... characterization uncertainty robotic manipulat... 1 0 0 1 0 0
17326 Good Similar Patches for Image Denoising patchbased denoising algorithms like bmd achie... 1 0 0 0 0 0
17327 Ginzburg - Landau expansion in strongly disord... studied disordering effects coefficients ginzb... 0 1 0 0 0 0
17328 Reallocating and Resampling: A Comparison for ... simulationbased inference plays major role mod... 0 0 1 1 0 0
17329 An Efficient Algorithm for Bayesian Nearest Ne... knearest neighbours knn popular classification... 1 0 0 1 0 0
17330 In search of a new economic model determined b... paper extend work ryuzo sato devoted developme... 0 0 1 0 0 0
17331 Limits on light WIMPs with a 1 kg-scale german... report results search light weakly interacting... 0 1 0 0 0 0
17332 A stellar census of the nearby, young 32 Orion... orionis group discovered almost decade ago des... 0 1 0 0 0 0
17333 A High-Level Rule-based Language for Software ... paper proposes xmldefined network policies xdn... 1 0 0 0 0 0
17334 Domain Objects and Microservices for Systems D... paper discusses roadmap investigate domain obj... 1 0 0 0 0 0
17335 Stabilization of prethermal Floquet steady sta... discuss effect dissipation heating occurs peri... 0 1 0 0 0 0
17336 Compressed Sensing using Generative Models goal compressed sensing estimate vector underd... 1 0 0 1 0 0
17337 Two-part models with stochastic processes for ... several researchers described twopart models p... 0 0 0 1 0 0
17338 Progressive Image Deraining Networks: A Better... along deraining performance improvement deep n... 1 0 0 0 0 0
17339 Optimal Nonparametric Inference under Quantiza... statistical inference based lossy incomplete s... 1 0 1 1 0 0
17340 Nearest neighbor imputation for general parame... nearest neighbor imputation popular handling i... 0 0 0 1 0 0
17341 Time-delay signature suppression in a chaotic ... demonstrate semiconductor laser perturbed dist... 0 1 0 0 0 0
17342 SAFS: A Deep Feature Selection Approach for Pr... paper propose new deep feature selection metho... 1 0 0 1 0 0
17343 Deep Reasoning with Multi-scale Context for Sa... detect segment salient objects accurately exis... 1 0 0 0 0 0
17344 On Estimation of $L_{r}$-Norms in Gaussian Whi... provide complete picture asymptotically minima... 1 0 1 1 0 0
17345 Secure communications with cooperative jamming... paper studies secrecy rate maximization proble... 1 0 1 0 0 0
17346 Stochastic Calculus with respect to Gaussian P... stochastic integration textitwrt gaussian proc... 0 0 1 0 0 0
17347 Path-like integrals of lenght on surfaces of c... naturally associate measurable space paths cou... 0 0 1 0 0 0
17348 Automated Synthesis of Divide and Conquer Para... paper focuses automated synthesis divideandcon... 1 0 0 0 0 0
17349 Nikol'ski\uı, Jackson and Ul'yanov type inequa... present work prove nikolski inequality trigono... 0 0 1 0 0 0
17350 CosmoGAN: creating high-fidelity weak lensing ... inferring model parameters experimental data g... 1 1 0 0 0 0
17351 Gaussian approximation of maxima of Wiener fun... paper establishes upper bound kolmogorov dista... 0 0 1 1 0 0
17352 A Kronecker-type identity and the representati... considering limiting case kroneckertype identi... 0 0 1 0 0 0
17353 DeepTrend: A Deep Hierarchical Neural Network ... paper consider temporal pattern traffic flow t... 1 0 0 0 0 0
17354 A new approach to Kaluza-Klein Theory propose paper new approach kaluzaklein idea fi... 0 0 1 0 0 0
17355 Density of orbits of dominant regular self-map... prove conjecture medvedev scanlon case regular... 0 0 1 0 0 0
17356 Asymptotic coverage probabilities of bootstrap... asymptotic behaviour commonly used bootstrap p... 0 0 1 1 0 0
17357 Correlations and enlarged superconducting phas... compute physical properties across phase diagr... 0 1 0 0 0 0
17358 MinimalRNN: Toward More Interpretable and Trai... introduce minimalrnn new recurrent neural netw... 1 0 0 1 0 0
17359 Boolean quadric polytopes are faces of linear ... let bqpn boolean quadric polytope lopm linear ... 1 0 0 0 0 0
17360 Sparse Matrix Code Dependence Analysis Simplif... analyzing arraybased computations determine da... 1 0 0 0 0 0
17361 ICA based on the data asymmetry independent component analysis ica one basic t... 0 0 1 1 0 0
17362 Solid hulls of weighted Banach spaces of analy... study weighted hinfty spaces analytic function... 0 0 1 0 0 0
17363 Line bundles defined by the Schwarz function cauchy exponential transforms characterized co... 0 0 1 0 0 0
17364 Collisional excitation of NH3 by atomic and mo... report extensive theoretical calculations rota... 0 1 0 0 0 0
17365 Deterministic and Probabilistic Conditions for... consider multiview data completion problem ie ... 1 0 1 0 0 0
17366 Grid-forming Control for Power Converters base... consider problem gridforming control power con... 0 0 1 0 0 0
17367 Characterizing Dust Attenuation in Local Star-... characterize nearinfrared nir dust attenuation... 0 1 0 0 0 0
17368 Sequential Checking: Reallocation-Free Data-Di... using tape optical devices scaleout storage on... 1 0 0 0 0 0
17369 Learning with Confident Examples: Rank Pruning... noisy pn learning problem binary classificatio... 1 0 0 1 0 0
17370 code2vec: Learning Distributed Representations... present neural model representing snippets cod... 1 0 0 1 0 0
17371 Learning a Local Feature Descriptor for 3D LiD... robust data association necessary virtually ev... 1 0 0 0 0 0
17372 Dynamical tides in exoplanetary systems contai... study effect dynamical tides associated excita... 0 1 0 0 0 0
17373 Metastability versus collapse following a quen... consider boseeinstein condensate bec attractiv... 0 1 0 0 0 0
17374 A similarity criterion for sequential programs... execution sequential programs allows represent... 1 0 0 0 0 0
17375 Subsampling large graphs and invariance in net... specify randomized algorithm given large graph... 0 0 1 1 0 0
17376 Taylor coefficients of non-holomorphic Jacobi ... paper prove modularity results taylor coeffici... 0 0 1 0 0 0
17377 Beamspace SU-MIMO for Future Millimeter Wave W... future networks ie fifth generation g wireless... 1 0 0 0 0 0
17378 Learning Robust Visual-Semantic Embeddings many existing methods learning joint embedding... 1 0 0 0 0 0
17379 Quantitative estimates of the surface habitabi... keplerb currently best example earthsize plane... 0 1 0 0 0 0
17380 Design and implementation of dynamic logic gat... report propagation square wave signal quasiper... 0 1 0 0 0 0
17381 Sequential Attend, Infer, Repeat: Generative M... present sequential attend infer repeat sqair i... 0 0 0 1 0 0
17382 Learning Local Shape Descriptors from Part Cor... present new local descriptor shapes directly a... 1 0 0 0 0 0
17383 Alternating minimization for dictionary learni... present theoretical guarantees alternating min... 1 0 0 1 0 0
17384 Optimal Transmission Line Switching under Geom... recent years increasing concerns geomagnetic d... 1 0 0 0 0 0
17385 Image Forgery Localization Based on Multi-Scal... paper propose utilize convolutional neural net... 1 0 0 0 0 0
17386 The QKP limit of the quantum Euler-Poisson equ... paper consider derivation kadomtsevpetviashvil... 0 0 1 0 0 0
17387 Variational Implicit Processes paper introduces variational implicit processe... 0 0 0 1 0 0
17388 Silicon Micromachined High-contrast Artificial... transformation optics methods gradient index e... 0 1 0 0 0 0
17389 Pseudogap and Fermi surface in the presence of... lanthanum family hightemperature cuprate super... 0 1 0 0 0 0
17390 Revealing the cluster of slow transients behin... capable reaching similar magnitudes large mega... 0 1 0 0 0 0
17391 General $N$-solitons and their dynamics in sev... general nsolitons three recentlyproposed nonlo... 0 1 0 0 0 0
17392 Revisiting wireless network jamming by SIR-bas... revisit mathematical models wireless network j... 1 0 1 0 0 0
17393 New models for symbolic data analysis symbolic data analysis sda emerging area stati... 0 0 0 1 0 0
17394 Soft Methodology for Cost-and-error Sensitive ... many realworld data mining applications need v... 1 0 0 0 0 0
17395 Raman LIDARs and atmospheric calibration for t... cherenkov telescope array cta next generation ... 0 1 0 0 0 0
17396 Generalized notions of sparsity and restricted... restricted isometry property rip universal too... 0 0 0 1 0 0
17397 Mellin-Meijer-kernel density estimation on $\m... nonparametric kernel density estimation natura... 0 0 1 1 0 0
17398 Gene Ontology (GO) Prediction using Machine Le... applied machine learning predict whether gene ... 1 0 0 1 0 0
17399 Dimension Spectra of Lines paper investigates algorithmic dimension spect... 1 0 0 0 0 0
17400 Fast Amortized Inference and Learning in Log-l... inference loglinear models scales linearly siz... 1 0 0 1 0 0
17401 Temperature Dependence of Magnetic Excitations... ordered spin system given dimensionality under... 0 1 0 0 0 0
17402 On stable solitons and interactions of the gen... report bright solitons generalized grosspitaev... 0 1 1 0 0 0
17403 Mechanical properties of borophene films: A re... recent experimental advances could provide way... 0 1 0 0 0 0
17404 Stronger selection can slow down evolution dri... stronger selection implies faster evolutiontha... 0 1 0 0 0 0
17405 Differences Among Noninformative Stopping Rule... lj savage hoped show superficially incompatibl... 0 0 1 1 0 0
17406 CNNs are Globally Optimal Given Multi-Layer Su... stochastic gradient descent sgd central workho... 1 0 0 0 0 0
17407 The Kontsevich integral for bottom tangles in ... kontsevich integral powerful link invariant ta... 0 0 1 0 0 0
17408 Commutativity theorems for groups and semigroups note prove selection commutativity theorems va... 0 0 1 0 0 0
17409 Content-based Approach for Vietnamese Spam SMS... short message service sms spam serious problem... 1 0 0 0 0 0
17410 Measuring Software Performance on Linux measuring analyzing performance software reach... 1 0 0 0 0 0
17411 A general method for calculating lattice Green... present method calculating complex green funct... 0 1 0 0 0 0
17412 Towards A Novel Unified Framework for Developi... literature modeling simulation complex adaptiv... 1 1 0 0 0 0
17413 Recover Fine-Grained Spatial Data from Coarse ... paper study new type spatial sparse recovery p... 1 0 0 0 0 0
17414 The Power Allocation Game on Dynamic Networks:... game theory literature appears little research... 1 0 0 0 0 0
17415 MIMO Graph Filters for Convolutional Neural Ne... superior performance ease implementation foste... 0 0 0 1 0 0
17416 An Edge Driven Wavelet Frame Model for Image R... wavelet frame systems known effective capturin... 1 0 1 0 0 0
17417 An exact algorithm exhibiting RS-RSB/easy-hard... recently proposed exact algorithm maximum inde... 1 1 0 0 0 0
17418 Flexible Support for Fast Parallel Commutative... privatizing data useful strategy increasing pa... 1 0 0 0 0 0
17419 Deep learning based supervised semantic segmen... cellular electron cryotomography cect powerful... 0 0 0 1 1 0
17420 CNN-MERP: An FPGA-Based Memory-Efficient Recon... largescale deep convolutional neural networks ... 1 0 0 0 0 0
17421 Enstrophy Cascade in Decaying Two-Dimensional ... report evidence enstrophy cascade largescale p... 0 1 0 0 0 0
17422 Contextual Multi-armed Bandits under Feature U... study contextual multiarmed bandit problems li... 1 0 0 1 0 0
17423 Asymmetric Variational Autoencoders variational inference latent variable models p... 1 0 0 1 0 0
17424 Dynamics of homogeneous shear turbulence: A ke... understand selfsustenance subcritical turbulen... 0 1 0 0 0 0
17425 A taxonomy of learning dynamics in 2 x 2 games learning would convincing method achieve coord... 0 1 0 0 0 0
17426 Dynamic attitude planning for trajectory track... paper addresses trajectory tracking control pr... 1 0 0 0 0 0
17427 The JCMT Transient Survey: Data Reduction and ... though significant amount work investigating e... 0 1 0 0 0 0
17428 Synchronization Strings: Explicit Construction... paper gives new results synchronization string... 1 0 0 0 0 0
17429 Independent Component Analysis via Energy-base... apply distancebased jin matteson kernelbased p... 0 0 0 1 0 0
17430 The local geometry of testing in ellipses: Tig... study local geometry testing mean vector withi... 0 0 1 1 0 0
17431 A Unified Optimization View on Generalized Mat... two fundamental prototypes greedy optimization... 1 0 0 1 0 0
17432 Subsampled Rényi Differential Privacy and Anal... study problem subsampling differential privacy... 0 0 0 1 0 0
17433 Concurrency and Probability: Removing Confusio... assigning satisfactory truly concurrent semant... 1 0 0 0 0 0
17434 Vision-Based Multi-Task Manipulation for Inexp... propose technique multitask learning demonstra... 1 0 0 0 0 0
17435 Dynamic Word Embeddings present probabilistic language model timestamp... 0 0 0 1 0 0
17436 Multiple scattering effect on angular distribu... multiple scattering ultra relativistic electro... 0 1 0 0 0 0
17437 Branched coverings of $CP^2$ and other basic 4... give necessary sufficient conditions manifold ... 0 0 1 0 0 0
17438 Instantaneous effects of photons on electrons ... photoelectric effect established einstein well... 0 1 0 0 0 0
17439 Mitigating the Impact of Speech Recognition Er... apply sequencetosequence model mitigate impact... 1 0 0 0 0 0
17440 Simultaneous 183 GHz H2O Maser and SiO Observa... investigate use ghz ho masers characterization... 0 1 0 0 0 0
17441 What does the free energy principle tell us ab... free energy principle proposed unifying theory... 0 0 0 0 1 0
17442 Learning with Changing Features paper study setting features added change inte... 1 0 0 1 0 0
17443 Estimation Considerations in Contextual Bandits contextual bandit algorithms sensitive estimat... 1 0 0 1 0 0
17444 Using solar and load predictions in battery sc... smart solar inverters used store monitor manag... 1 0 0 0 0 0
17445 Towards Large-Pose Face Frontalization in the ... despite recent advances face recognition using... 1 0 0 0 0 0
17446 Managing the Public to Manage Data: Citizen Sc... citizen science projects recruit members publi... 1 1 0 0 0 0
17447 Modular representations in type A with a two-r... study category representations mathfrakslmn po... 0 0 1 0 0 0
17448 Knowledge Acquisition: A Complex Networks Appr... complex networks found provide good representa... 1 1 0 0 0 0
17449 Frequent flaring in the TRAPPIST-1 system - un... analyze short cadence k light curve trappist s... 0 1 0 0 0 0
17450 Playing Pairs with Pepper robots become increasingly prevalent almost ar... 1 0 0 0 0 0
17451 Wild theories with o-minimal open core let consistent ominimal theory extending theor... 0 0 1 0 0 0
17452 Objective Bayesian inference with proper scori... standard bayesian analyses difficult perform f... 0 0 1 1 0 0
17453 Large Area X-ray Proportional Counter (LAXPC) ... large area xray proportional counter laxpc one... 0 1 0 0 0 0
17454 A Counterexample to the Vector Generalization ... give counterexample vector generalization cost... 1 0 0 0 0 0
17455 Models for Predicting Community-Specific Inter... work ask two questions predict type community ... 0 0 0 1 0 0
17456 On subfiniteness of graded linear series hilberts th problem studies finite generation ... 0 0 1 0 0 0
17457 Natasha 2: Faster Non-Convex Optimization Than... design stochastic algorithm train smooth neura... 1 0 0 1 0 0
17458 Evidence for a Dayside Thermal Inversion and H... find evidence strong thermal inversion dayside... 0 1 0 0 0 0
17459 $α$-$β$ and $β$-$γ$ phase boundaries of solid ... magneticfieldtemperature phase diagram solid o... 0 1 0 0 0 0
17460 Localization Algorithm with Circular Represent... extended kalman filter ekf guarantee consisten... 1 0 0 0 1 0
17461 Lusin-type approximation of Sobolev by Lipschi... establish new approximation results sense lusi... 0 0 1 0 0 0
17462 Distributed Coordination for a Class of Nonlin... paper multiagent coordination problem steadyst... 1 0 1 0 0 0
17463 Intermodulation distortion of actuated MEMS ca... first time intermodulation distortion microele... 0 1 0 0 0 0
17464 Parasitic Bipolar Leakage in III-V FETs: Impac... ingaasbased gateallaround gaa fets moderate hi... 0 1 0 0 0 0
17465 Properties of Ultra Gamma Function paper study integral type deltaagammarhobx gam... 0 0 1 0 0 0
17466 Further remarks on liftings of crossed modules paper define notion pullback lifting lifting c... 0 0 1 0 0 0
17467 Submodular Maximization through the Lens of Li... simplex algorithm linear programming based fac... 1 0 0 0 0 0
17468 Channel Estimation for Diffusive MIMO Molecula... diffusionbased communication molecular systems... 1 0 0 1 0 0
17469 Multi-stage splitting integrators for sampling... modified hamiltonian monte carlo mhmc methods ... 1 0 0 0 0 0
17470 Proposal for a High Precision Tensor Processin... whitepaper proposes design adoption new genera... 1 0 0 0 0 0
17471 DICOD: Distributed Convolutional Sparse Coding paper introduce dicod convolutional sparse cod... 1 0 0 1 0 0
17472 On uniqueness results for Dirichlet problems o... study uniqueness dirichlet problems second ord... 0 0 1 0 0 0
17473 (LaTiO$_3$)$_n$/(LaVO$_3$)$_n$ as a model syst... interfaces oxide materials lattice electronic ... 0 1 0 0 0 0
17474 Modeling sorption of emerging contaminants in ... mathematical model emerging contaminants sorpt... 0 1 0 0 0 0
17475 Stabilizing Training of Generative Adversarial... deep generative models based generative advers... 1 0 0 1 0 0
17476 Spurious Vanishing Problem in Approximate Vani... approximate vanishing ideal new concept comput... 1 0 0 1 0 0
17477 Opportunities for Two-color Experiments at the... xray free electron lasers xfels proven generat... 0 1 0 0 0 0
17478 Braiding errors in interacting Majorana quantu... avenues majorana bound states mbss become one ... 0 1 0 0 0 0
17479 Machine Learning for Structured Clinical Data research tertiary priority ehr priorities pati... 1 0 0 0 0 0
17480 Hidden order and symmetry protected topologica... show whereas spin onedimensional u quantumlink... 0 1 0 0 0 0
17481 The effect of prudence on the optimal allocati... paper two portfolio choice models studied pure... 0 0 0 0 0 1
17482 On universal operators and universal pairs study basic properties class universal operato... 0 0 1 0 0 0
17483 Interleaving Lattice for the APS Linac realize test advanced accelerator concepts har... 0 1 0 0 0 0
17484 \textit{Ab Initio} Study of the Magnetic Behav... investigated magnetic behavior metal hydrides ... 0 1 0 0 0 0
17485 Secret Sharing for Cloud Data Security cloud computing helps reduce costs increase bu... 1 0 0 0 0 0
17486 Design and Analysis of a Secure Three Factor U... password security longer provide enough securi... 1 0 0 0 0 0
17487 Real-World Modeling of a Pathfinding Robot Usi... paper presents practical approach towards impl... 1 0 0 0 0 0
17488 Understanding Convolution for Semantic Segment... recent advances deep learning especially deep ... 1 0 0 0 0 0
17489 Mechanical Failure in Amorphous Solids: Scale ... mechanical failure amorphous media ubiquitous ... 0 1 0 0 0 0
17490 Moment conditions in strong laws of large numb... validity strong law large numbers multiple sum... 0 0 1 0 0 0
17491 Connecting Clump Sizes in Turbulent Disk Galax... letter study mean sizes halpha clumps turbulen... 0 1 0 0 0 0
17492 Anomalous slowing down of individual human act... motivated host empirical evidences revealing b... 0 1 0 0 0 0
17493 The spectrum, radiation conditions and the Fre... consider spectral dirichlet problem laplace op... 0 0 1 0 0 0
17494 On the Semantics and Complexity of Probabilist... examine meaning complexity probabilistic logic... 1 0 0 0 0 0
17495 Fitting Probabilistic Index Models on Large Da... recently thas et al introduced new statistical... 0 0 0 1 0 0
17496 BICEP2 / Keck Array IX: New Bounds on Anisotro... present strongest constraints date anisotropie... 0 1 0 0 0 0
17497 Unsupervised Object Discovery and Segmentation... paper introduce system unsupervised object dis... 1 0 0 0 0 0
17498 Enabling large-scale viscoelastic calculations... one significant challenges involved efforts un... 0 1 0 0 0 0
17499 Speaker identification from the sound of the h... paper examines speaker identification potentia... 1 0 0 1 0 0
17500 Vector valued maximal Carleson type operators ... paper using idea linearizing maximal operators... 0 0 1 0 0 0
17501 Rigidity of square-tiled interval exchange tra... look interval exchange transformations defined... 0 0 1 0 0 0
17502 Global Marcinkiewicz estimates for nonlinear p... consider parabolic equation measure data begin... 0 0 1 0 0 0
17503 Can Who-Edits-What Predict Edit Survival? number contributors online peerproduction syst... 1 0 0 1 0 0
17504 Introduction to intelligent computing unit 1 brief note highlights basic concepts required ... 1 0 0 1 0 0
17505 Spatial heterogeneities shape collective behav... present novel experimental results pattern for... 0 0 0 0 1 0
17506 Yamabe Solitons on three-dimensional normal al... purpose paper study yamabe solitons threedimen... 0 0 1 0 0 0
17507 Clustering and Hitting Times of Threshold Exce... investigate exceedances process sufficiently h... 0 0 1 1 0 0
17508 Classification of Local Field Potentials using... problem classification local field potentials ... 0 0 0 1 0 0
17509 A few explicit examples of complex dynamics of... give explicit examples answer open minded ques... 0 0 1 0 0 0
17510 Ancestral inference from haplotypes and mutations consider inference history sample dna sequence... 0 0 1 1 0 0
17511 Ellipsoid Method for Linear Programming made s... paper ellipsoid method linear programming deri... 1 0 0 0 0 0
17512 Collective strong coupling of cold atoms to an... experimentally demonstrate ring geometry allfi... 0 1 0 0 0 0
17513 Robust Model-Based Clustering of Voting Records explore possibility discovering extreme voting... 0 0 0 1 0 0
17514 The Quest for Solvable Multistate Landau-Zener... recently integrability conditions ics mutistat... 0 1 1 0 0 0
17515 Bayesian Inference of the Multi-Period Optimal... consider estimation multiperiod optimal portfo... 0 0 1 1 0 0
17516 Reconstructing the gravitational field of the ... tests gravity galaxy scale infancy first step ... 0 1 0 0 0 0
17517 Hierarchical organization of H. Eugene Stanley... mapping advanced elements contemporary social ... 1 1 0 0 0 0
17518 Rational links and DT invariants of quivers prove generating functions colored homflypt po... 0 0 1 0 0 0
17519 G2-structures for N=1 supersymmetric AdS4 solu... study n supersymmetric solutions supergravity ... 0 0 1 0 0 0
17520 A Neural Stochastic Volatility Model paper show recent integration statistical mode... 1 0 0 1 0 0
17521 A Minimalist Approach to Type-Agnostic Detecti... paper proposes segmentationfree automatic effi... 1 0 0 0 0 0
17522 Mass-to-Light versus Color Relations for Dwarf... determined new relations ubv colors masstoligh... 0 1 0 0 0 0
17523 Insight into High-order Harmonic Generation fr... study numerically bloch electron wavepacket dy... 0 1 0 0 0 0
17524 Using deterministic approximations to accelera... sequential monte carlo become standard tool ba... 0 0 0 1 0 0
17525 Evaluating (and improving) the correspondence ... decades psychological research aimed modeling ... 1 0 0 0 0 0
17526 An approach to nonsolvable base change and des... present collection conjectural trace identitie... 0 0 1 0 0 0
17527 Towards Attack-Tolerant Networks: Concurrent M... targeted attacks network infrastructure notori... 1 0 0 0 0 0
17528 PEORL: Integrating Symbolic Planning and Hiera... reinforcement learning symbolic planning used ... 0 0 0 1 0 0
17529 Structure of Native Two-dimensional Oxides on ... pristine material surfaces exposed air highly ... 0 1 0 0 0 0
17530 Hydrodynamic charge and heat transport on inho... develop theory hydrodynamic charge heat transp... 0 1 0 0 0 0
17531 Simulation assisted machine learning predicting proposed cancer treatment affect gi... 0 0 0 1 1 0
17532 Rechargeable redox flow batteries: Maximum cur... rechargeable redox flow batteries serpentine f... 0 1 0 0 0 0
17533 Open problems in mathematical physics present list open questions mathematical physi... 0 1 1 0 0 0
17534 Stochastic Bandit Models for Delayed Conversions online advertising product recommendation impo... 1 0 0 0 0 0
17535 Fitting Analysis using Differential Evolution ... goal population spectral synthesis pss deciphe... 0 1 0 0 0 0
17536 A Combinatoric Shortcut to Evaluate CHY-forms citechenfgi proposed differential operator eva... 0 0 1 0 0 0
17537 ART: adaptive residual--time restarting for Kr... paper new restarting method krylov subspace ma... 1 0 0 0 0 0
17538 Nil extensions of simple regular ordered semig... paper nil extensions special type ordered semi... 0 0 1 0 0 0
17539 The Unreasonable Effectiveness of Structured R... examine class embeddings based structured rand... 0 0 0 1 0 0
17540 The Bayesian optimist's guide to adaptive immu... probabilistic modeling fundamental statistical... 0 0 0 0 1 0
17541 Predictive Indexing considerable research automated index tuning d... 1 0 0 0 0 0
17542 Making Deep Q-learning methods robust to time ... despite remarkable successes deep reinforcemen... 1 0 0 1 0 0
17543 Anomalous current in diffusive ferromagnetic J... demonstrate diffusive superconductorferromagne... 0 1 0 0 0 0
17544 Rate Optimal Estimation and Confidence Interva... although majority theoretical literature highd... 0 0 0 1 0 0
17545 Applications of an algorithm for solving Fredh... paper use iterative algorithm solving fredholm... 0 0 1 1 0 0
17546 Fully symmetric kernel quadrature kernel quadratures kernelbased approximation m... 1 0 1 1 0 0
17547 Conditional Accelerated Lazy Stochastic Gradie... work introduce conditional accelerated lazy st... 1 0 0 1 0 0
17548 MMD GAN: Towards Deeper Understanding of Momen... generative moment matching network gmmn deep g... 1 0 0 1 0 0
17549 Multipartite entanglement after a quantum quench study multipartite entanglement quantum manybo... 0 1 0 0 0 0
17550 Thermal properties of graphene from path-integ... thermal properties graphene monolayers studied... 0 1 0 0 0 0
17551 Measuring Affectiveness and Effectiveness in S... summary presented paper highlights results obt... 1 0 0 0 0 0
17552 Intertangled stochastic motifs in networks of ... stochastic model excitatory inhibitory interac... 0 1 0 0 0 0
17553 Accurate Computation of the Distribution of Su... present new monte carlo methodology accurate e... 0 0 0 1 0 0
17554 The complete unitary dual of non-compact Lie s... study unitary representations noncompact real ... 0 0 1 0 0 0
17555 DeepPainter: Painter Classification Using Deep... paper describe problem painter classification ... 1 0 0 1 0 0
17556 Sharp gradient estimate for heat kernels on $R... paper establish elliptic local liyau gradient ... 0 0 1 0 0 0
17557 Thermodynamic properties of diatomic molecules... due one representative contributions energy di... 0 1 0 0 0 0
17558 Effects of ultrasound waves intensity on the r... environmental pollutants colors textile indust... 0 1 0 0 0 0
17559 Enumeration of Tree-like Maps with Arbitrary N... paper provides generating series embedding tre... 0 0 1 0 0 0
17560 Depth resolved chemical speciation of a superl... report results simultaneous xray reflectivity ... 0 1 0 0 0 0
17561 Optospintronics in graphene via proximity coup... observation micron size spin relaxation makes ... 0 1 0 0 0 0
17562 Control strategy to limit duty cycle impact of... advanced gravitationalwave detectors laser int... 0 1 0 0 0 0
17563 Multi-rendezvous Spacecraft Trajectory Optimiz... design spacecraft trajectories missions visiti... 1 1 0 0 0 0
17564 Types and unitary representations of reductive... prove every bushnellkutzko type satisfies cert... 0 0 1 0 0 0
17565 Average values of L-functions in even characte... let k mathbbfqt rational function field finite... 0 0 1 0 0 0
17566 Decoupled molecules with binding polynomials o... present result number decoupled molecules syst... 1 1 0 0 0 0
17567 Learning to update Auto-associative Memory in ... learning remember long sequences remains chall... 1 0 0 1 0 0
17568 McDiarmid Drift Detection Methods for Evolving... increasingly internet things iot domains senso... 1 0 0 1 0 0
17569 Yield in Amorphous Solids: The Ant in the Ener... recently shown yield amorphous solids oscillat... 0 1 0 0 0 0
17570 Statistical methods in astronomy present review data types statistical methods ... 0 1 0 1 0 0
17571 A note on some algebraic trapdoors for block c... provide sufficient conditions guarantee transl... 1 0 1 0 0 0
17572 Bi-Demographic Changes and Current Account usi... paper new contribution aims explore impacts bi... 0 0 0 0 0 1
17573 Supervised Machine Learning for Signals Having... classification performances supervised machine... 1 0 0 0 0 0
17574 End-to-End Optimized Transmission over Dispers... propose autoencoding sequencebased transceiver... 1 0 0 1 0 0
17575 Effective difference elimination and Nullstell... prove effective nullstellensatz elimination th... 0 0 1 0 0 0
17576 A note on primitive $1-$normal elements over f... let q prime power prime p n positive integer m... 0 0 1 0 0 0
17577 Sparse Coding Predicts Optic Flow Specificitie... zebrafish pretectal neurons exhibit specificit... 0 0 0 0 1 0
17578 Revisiting the problem of audio-based hit song... able predict whether song hit impor tant appli... 1 0 0 1 0 0
17579 Natural Language Multitasking: Analyzing and I... train multitask autoencoders linguistic tasks ... 0 0 0 1 0 0
17580 Temporal Logistic Neural Bag-of-Features for F... time series forecasting crucial component many... 1 0 0 1 0 1
17581 Extended Bose Hubbard model for two leg ladder... investigate ground state properties ultracold ... 0 1 0 0 0 0
17582 Insensitivity of The Distance Ladder Hubble Co... recent determination hubble constant via cephe... 0 1 0 0 0 0
17583 Phrase-based Image Captioning with Hierarchica... automatic generation caption describe content ... 1 0 0 0 0 0
17584 The three-dimensional structure of swirl-switc... swirlswitching lowfrequency oscillatory phenom... 0 1 0 0 0 0
17585 InfoVAE: Information Maximizing Variational Au... key advance learning generative models use amo... 1 0 0 1 0 0
17586 Between-class Learning for Image Classification paper propose novel learning method image clas... 1 0 0 1 0 0
17587 Girsanov reweighting for path ensembles and Ma... sensitivity molecular dynamics changes potenti... 0 1 0 0 0 0
17588 Coordination of multi-agent systems via asynch... work study multiagent coordination problem age... 1 0 1 0 0 0
17589 PatternListener: Cracking Android Pattern Lock... pattern lock widely used authentication protec... 1 0 0 0 0 0
17590 Marginal Release Under Local Differential Privacy many analysis machine learning tasks require a... 1 0 0 0 0 0
17591 A possible flyby anomaly for Juno at Jupiter last decades increasing interest improving acc... 0 1 0 0 0 0
17592 Crossover between various initial conditions i... conjecture universal probability distribution ... 0 1 1 0 0 0
17593 Multimodel Response Assessment for Monthly Rai... carry study statistical distribution rainfall ... 0 1 0 1 0 0
17594 Small Boxes Big Data: A Deep Learning Approach... bin packing problems widely studied broad appl... 1 0 0 1 0 0
17595 Surges of collective human activity emerge fro... human populations exhibit complex behaviorscha... 1 0 0 0 0 0
17596 Semantically Enhanced Dynamic Bayesian Network... although timely sepsis diagnosis prompt interv... 0 0 0 1 0 0
17597 Hölder regularity of viscosity solutions of so... paper prove hlder regularity bounded uniformly... 0 0 1 0 0 0
17598 Normal form for transverse instability of the ... exists critical speed propagation line soliton... 0 1 1 0 0 0
17599 The CLaC Discourse Parser at CoNLL-2016 paper describes submission clac conll shared t... 1 0 0 0 0 0
17600 Ordinary differential equations in algebras of... local existence uniqueness theorem odes specia... 0 0 1 0 0 0
17601 Interesting Paths in the Mapper mapper produces compact summary high dimension... 1 0 1 0 0 0
17602 On a three dimensional vision based collision ... paper presents three dimensional collision avo... 0 0 1 0 0 0
17603 Algorithms for Covering Multiple Barriers paper consider problems covering multiple inte... 1 0 0 0 0 0
17604 Shattering the glass ceiling? How the institut... examine institutional context affects relation... 0 0 0 0 0 1
17605 An Automated Text Categorization Framework bas... great variety text tasks topic spam identifica... 1 0 0 1 0 0
17606 Abdominal aortic aneurysms and endovascular se... endovascular sealing new technique repair abdo... 0 1 0 0 0 0
17607 Affinity Scheduling and the Applications on Da... mapreduce framework de facto standard hadoop c... 1 0 0 0 0 0
17608 Multivariate Regression with Gross Errors on M... consider topic multivariate regression manifol... 1 0 1 1 0 0
17609 Computing an Approximately Optimal Agreeable S... study problem finding small subset items empha... 1 0 0 0 0 0
17610 3D Sketching using Multi-View Deep Volumetric ... sketchbased modeling strives bring ease immedi... 1 0 0 0 0 0
17611 Inductive Pairwise Ranking: Going Beyond the n... study problem ranking set items nonactively ch... 1 0 0 1 0 0
17612 SAGA and Restricted Strong Convexity saga fast incremental gradient method finite s... 0 0 0 1 0 0
17613 Characterization of Traps at Nitrided SiO$_2$/... effects nitridation density traps siosic inter... 0 1 0 0 0 0
17614 Response theory of the ergodic many-body deloc... derive finite temperature keldysh response the... 0 1 0 0 0 0
17615 Classification via Tensor Decompositions of Ec... work introduces tensorbased method perform sup... 1 0 0 1 0 0
17616 Inference on Breakdown Frontiers given set baseline assumptions breakdown front... 0 0 0 1 0 0
17617 Sequential Detection of Three-Dimensional Sign... study detection methods multivariable signals ... 0 0 1 1 0 0
17618 T-Branes at the Limits of Geometry singular limits ftheory compactifications ofte... 0 0 1 0 0 0
17619 Space-time crystal and space-time group crystal structures bloch theorem play fundamen... 0 1 0 0 0 0
17620 On the Performance of Zero-Forcing Processing ... consider multiway massive multipleinput multip... 1 0 1 0 0 0
17621 Motivic rational homotopy type paper introduce study motives rational homotop... 0 0 1 0 0 0
17622 Preconditioner-free Wiener filtering with a de... work extends elsner wandelt iterative method e... 0 1 0 0 0 0
17623 Order-unity argument for structure-generated "... selfconsistent treatment cosmological structur... 0 1 0 0 0 0
17624 The least unramified prime which does not spli... let kf finite extension number fields degree n... 0 0 1 0 0 0
17625 Crosscorrelation of Rudin-Shapiro-Like Polynom... consider class rudinshapirolike polynomials wh... 1 0 1 0 0 0
17626 An Application of Rubi: Series Expansion of th... highlight rulebased integration rubi enhanced ... 1 0 0 0 0 0
17627 On the Performance of Wireless Powered Communi... paper analyze performance timeslotted multiant... 1 0 0 0 0 0
17628 Realizing polarization conversion and unidirec... show polarization states electromagnetic waves... 0 1 0 0 0 0
17629 When Should You Adjust Standard Errors for Clu... empirical work economics common report standar... 0 0 1 1 0 0
17630 Approximate homomorphisms on lattices prove two results concerning ulamtype stabilit... 0 0 1 0 0 0
17631 Learning Latent Events from Network Message Lo... communication describe novel technique event m... 0 0 0 1 0 0
17632 Generating retinal flow maps from structural o... despite significant advances artificial intell... 0 0 0 1 0 0
17633 Varieties with Ample Tangent Sheaves paper generalises moris famous theorem project... 0 0 1 0 0 0
17634 Water sub-diffusion in membranes for fuel cells investigate dynamics water confined soft ionic... 0 1 0 0 0 0
17635 Global Strong Solution of a 2D coupled Parabol... main objective paper study global strong solut... 0 0 1 0 0 0
17636 Subcritical thermal convection of liquid metal... planetary cores consist liquid metals low pran... 0 1 0 0 0 0
17637 Decision-making processes underlying pedestria... followership generally defined strategy evolve... 0 0 0 0 1 0
17638 Driven by Excess? Climatic Implications of New... present improved mars odyssey neutron spectrom... 0 1 0 0 0 0
17639 On distribution of points with conjugate algeb... let varphimathbbrrightarrow mathbbr continuous... 0 0 1 0 0 0
17640 A Critical Investigation of Deep Reinforcement... navigation problem classically approached two ... 1 0 0 0 0 0
17641 Performance Evaluation of 3D Correspondence Gr... paper presents thorough evaluation several wid... 1 0 0 0 0 0
17642 DeepPicar: A Low-cost Deep Neural Network-base... present deeppicar lowcost deep neural network ... 1 0 0 0 0 0
17643 Statistics of turbulence in the energy-contain... considering structure functions streamwise vel... 0 1 0 0 0 0
17644 Physics-Based Modeling of TID Induced Global S... compact modeling interdevice radiationinduced ... 0 1 0 0 0 0
17645 A multiplier inclusion theorem on product domains note shown class multipliers dparameter hardy ... 0 0 1 0 0 0
17646 Using Battery Storage for Peak Shaving and Fre... consider using battery storage system simultan... 1 0 1 0 0 0
17647 Information Bottleneck in Control Tasks with R... nervous system encodes continuous information ... 1 0 0 0 0 0
17648 Physical Properties of Sub-galactic Clumps at ... present investigation clumpy galaxies hubble u... 0 1 0 0 0 0
17649 Incomplete Dot Products for Dynamic Computatio... propose use incomplete dot products idp dynami... 1 0 0 1 0 0
17650 Graded components of Local cohomology modules II let commutative noetherian ring containing fie... 0 0 1 0 0 0
17651 Four-Dimensional Painlevé-Type Equations Assoc... last part series three papers entitled fourdim... 0 0 1 0 0 0
17652 You Must Have Clicked on this Ad by Mistake! D... cost per click cpc pricing model advertiser pa... 0 0 0 1 0 0
17653 Building Models for Biopathway Dynamics Using ... important task many scientific domains efficie... 0 0 0 1 1 0
17654 Equilibrium points and basins of convergence i... planar linear restricted fourbody problem used... 0 1 0 0 0 0
17655 Nonmonotonic dependence of polymer glass mecha... investigate mechanical properties amorphous po... 0 1 0 0 0 0
17656 Convolutional Neural Network Committees for Me... skin cancer major public health problem common... 1 0 0 0 0 0
17657 Arbitrage and Geometry article introduces notion arbitrage situation ... 0 0 1 1 0 0
17658 ADE surfaces and their moduli define class surfaces surface pairs correspond... 0 0 1 0 0 0
17659 An Efficient Descriptor Model for Designing Ma... efficient descriptor model fast screening pote... 0 1 0 0 0 0
17660 Multiplication of a Schubert polynomial by a S... prove combinatorially product schubert polynom... 0 0 1 0 0 0
17661 Topological nodal line states and a potential ... topological nodal line dnl semimetals formed c... 0 1 0 0 0 0
17662 Boosting Variational Inference: an Optimizatio... variational inference popular technique approx... 1 0 0 1 0 0
17663 Nature of carrier injection in metal/2D semico... monolayers transition metal dichalcogenides tm... 0 1 0 0 0 0
17664 Characteristics of stratified flows of Newtoni... exact solutions laminar stratified flows newto... 0 1 0 0 0 0
17665 Stochastic Chebyshev Gradient Descent for Spec... large class machine learning techniques requir... 0 0 0 1 0 0
17666 Poisson Bracket and Symplectic Structure of Co... covariant canonical formalism covariant extens... 0 0 1 0 0 0
17667 Cascading Failures in Interdependent Systems: ... study cascading failures system comprising int... 1 1 0 1 0 0
17668 Critical exponent for geodesic currents geodesic current associated quasimetric space ... 0 0 1 0 0 0
17669 Human and Machine Speaker Recognition Based on... trivial events ubiquitous human human conversa... 1 0 0 0 0 0
17670 AdiosStMan: Parallelizing Casacore Table Data ... paper investigate casacore table data system c... 1 1 0 0 0 0
17671 Direct Experimental Observation of the Gas Fil... report experimental observation filamentation ... 0 1 0 0 0 0
17672 Coherence measurements of scattered incoherent... absence lens form image incoherent partially c... 0 1 0 0 0 0
17673 MVP2P: Layer-Dependency-Aware Live MVC Video S... multiview video supports observing scene diffe... 1 0 0 0 0 0
17674 High order finite element simulations for flui... objective present work construct sound mathema... 0 1 1 0 0 0
17675 Twin Networks: Matching the Future for Sequenc... propose simple technique encouraging generativ... 1 0 0 1 0 0
17676 Structure and Randomness of Continuous-Time Di... loosely speaking shannon entropy rate used gau... 0 1 1 1 0 0
17677 In situ high resolution real-time quantum effi... aspects preparation process performance degrad... 0 1 0 0 0 0
17678 Competitive division of a mixed manna mixed manna contains goods everyone likes bads... 1 0 1 0 0 0
17679 Understanding Black-box Predictions via Influe... explain predictions blackbox model paper use i... 1 0 0 1 0 0
17680 Linear and nonlinear photonic Jackiw-Rebbi sta... study analytically numerically optical analogu... 0 1 0 0 0 0
17681 A Century of Science: Globalization of Scienti... progress science advanced development human so... 1 1 0 0 0 0
17682 Interval-type theorems concerning means family mathcalm means natural partial order po... 0 0 1 0 0 0
17683 Diff-DAC: Distributed Actor-Critic for Average... propose fully distributed actorcritic algorith... 1 0 0 1 0 0
17684 On locally compact semitopological $0$-bisimpl... describe structure hausdorff locally compact s... 0 0 1 0 0 0
17685 Theory of Disorder-Induced Half-Integer Therma... electrons confined single landau level two dim... 0 1 0 0 0 0
17686 On Security Research Towards Future Mobile Net... last decades numerous security privacy issues ... 1 0 0 0 0 0
17687 Channel Simulation in Quantum Metrology review discuss channel simulation used simplif... 0 1 0 0 0 0
17688 Ranking Causal Influence of Financial Markets ... nonparametric method ranking stock indices acc... 0 0 0 0 0 1
17689 Shear banding in metallic glasses described by... plastic deformation metallic glasses performed... 0 1 0 0 0 0
17690 Detection of low dimensionality and data denoi... work closely related theories set estimation m... 0 0 1 1 0 0
17691 Deep Networks with Shape Priors for Nucleus De... detection cell nuclei microscopic images chall... 0 0 0 1 0 0
17692 A sheaf-theoretic model for SL(2,C) Floer homo... given heegaard splitting threemanifold conside... 0 0 1 0 0 0
17693 Discriminative models for multi-instance probl... modeling network traffic gaining importance or... 1 0 0 0 0 0
17694 Functional advantages offered by many-body coh... quantum coherence phenomena driven electronicv... 0 1 0 0 0 0
17695 Privacy Mining from IoT-based Smart Homes recently wide range smart devices deployed var... 0 0 0 1 0 0
17696 Idempotent ordered semigroup element e ordered semigroup scdotleq called or... 0 0 1 0 0 0
17697 Hybrid bounds for twists of $GL(3)$ $L$-functions let pi heckemaass cusp form slmathbbz chichich... 0 0 1 0 0 0
17698 Modeling stochastic skew of FX options using S... known implied volatility skew fx options demon... 0 0 1 0 0 0
17699 Computational Study of Amplitude-to-Phase Conv... calculate amplitudetophase amtopm noise conver... 0 1 0 0 0 0
17700 Direct frequency-comb spectroscopy of $6S_{1/2... direct frequencycomb spectroscopy used probe a... 0 1 0 0 0 0
17701 Aggregation and Disaggregation of Energetic Fl... variety energy resources identified flexible e... 1 0 0 0 0 0
17702 Mapping Walls of Indoor Environment using RGB-... inferring walls configuration indoor environme... 1 0 0 0 0 0
17703 The Effects of Memory Replay in Reinforcement ... experience replay key technique behind many re... 1 0 0 1 0 0
17704 Portfolio Optimization for Cointelated Pairs: ... investigate problem dynamic portfolio optimiza... 0 0 0 0 0 1
17705 High-mass Starless Clumps in the inner Galacti... report sample highmass starless clump hmsc can... 0 1 0 0 0 0
17706 Biologically Plausible Online Principal Compon... artificial neural networks learn perform princ... 0 0 0 1 1 0
17707 Exploring to learn visual saliency: The RL-IAC... problem object localization recognition autono... 1 0 0 0 0 0
17708 Fast and Robust Shortest Paths on Manifolds Le... propose fast simple robust algorithm computing... 1 0 0 1 0 0
17709 Typed Graph Networks recently deep learning community given growing... 1 0 0 1 0 0
17710 The effect of different in-chain impurities on... heisenberg spin chain compound srcuo doped dif... 0 1 0 0 0 0
17711 L-groups and the Langlands program for coverin... joint introduction asterisque volume give shor... 0 0 1 0 0 0
17712 Uncertainty Reduction for Stochastic Processes... many realworld systems characterized stochasti... 1 1 0 0 0 0
17713 Light propagation in Extreme Conditions - The ... field biomedical imaging undergone rapid growt... 0 1 0 0 0 0
17714 Design discussion on the ISDA Common Domain Model new initiative international swaps derivatives... 1 0 0 0 0 0
17715 Preserving Intermediate Objectives: One Simple... hierarchical models utilized wide variety prob... 1 0 0 0 0 0
17716 Atomistic simulations of dislocation/precipita... atomistic simulations carried analyze interact... 0 1 0 0 0 0
17717 Recovering Dense Tissue Multispectral Signal f... hyperspectralmultispectral imaging hsimsi cont... 1 0 0 0 0 0
17718 Atomically thin gallium layers from solid-melt... among large number promising twodimensional at... 0 1 0 0 0 0
17719 Novel Universality Classes in Ferroelectric Li... starting langevin formulation thermally pertur... 0 1 0 0 0 0
17720 Feature functional theory - binding predictor ... present feature functional theory binding pred... 1 1 0 0 0 0
17721 Combining and Steganography of 3D Face Textures one serious issues communication people hiding... 1 0 0 0 0 0
17722 Degree of sequentiality of weighted automata weighted automata wa important formalism descr... 1 0 0 0 0 0
17723 On the orders of the non-Frattini elements of ... let g finite group let pdotspn distinct primes... 0 0 1 0 0 0
17724 Varieties of general type with small volumes generalize kobayashis example noether inequali... 0 0 1 0 0 0
17725 Translations in the exponential Orlicz space w... study continuity space translations nonparamet... 0 0 1 1 0 0
17726 Shrinkage Estimation Strategies in Generalized... study propose shrinkage methods based generali... 0 0 1 1 0 0
17727 A path integral approach to Bayesian inference... formulate bayesian updates markov processes me... 0 0 1 1 0 0
17728 Strong-coupling charge density wave in a one-d... scanning tunnelling microscopy low energy elec... 0 1 0 0 0 0
17729 $\mathfrak A$-principal Hopf hypersurfaces in ... real hypersurface complex quadric qmsomsomso s... 0 0 1 0 0 0
17730 On the stochastic phase stability of Ti2AlC-Cr... quest towards expansion max design space accel... 0 1 0 0 0 0
17731 Note on Attacking Object Detectors with Advers... deep learning proven powerful tool computer vi... 1 0 0 0 0 0
17732 All or Nothing Caching Games with Bounded Queries determine value search games goal find hidden ... 1 0 1 0 0 0
17733 HATS-43b, HATS-44b, HATS-45b, and HATS-46b: Fo... report discovery four short period extrasolar ... 0 1 0 0 0 0
17734 Well-balanced mesh-based and meshless schemes ... formulate general criterion exact preservation... 0 1 1 0 0 0
17735 An Enhanced Initial Margin Methodology to Mana... use cva cover credit risk widely spread limita... 0 0 0 0 0 1
17736 Ensemble Pruning based on Objection Maximizati... ensemble pruning selecting subset individual l... 0 0 0 1 0 0
17737 Psychophysical laws as reflection of mental sp... paper devoted relationship psychophysics physi... 0 0 0 0 1 0
17738 Shimura curves in the Prym locus study shimura curves pel type mathsfag generic... 0 0 1 0 0 0
17739 Latent Laplacian Maximum Entropy Discriminatio... datadriven anomaly detection methods suffer dr... 1 0 0 1 0 0
17740 View-Invariant Recognition of Action Style Sel... selfsimilarity recently introduced measure int... 1 0 0 0 0 0
17741 Conducting Highly Principled Data Science: A S... highly principled data science insists methodo... 0 0 0 1 0 0
17742 Regularizing nonlinear Schroedinger equations ... study class focusing nonlinear schroedingertyp... 0 0 1 0 0 0
17743 On h-Lexicalized Restarting Automata following previous studies restarting automata... 1 0 0 0 0 0
17744 Bayesian Nonparametric Inference for M/G/1 Que... work nonparametric statistical inference provi... 0 0 1 1 0 0
17745 Symbol Invariant of Partition and the Construc... symbol used describe springer correspondence c... 0 0 1 0 0 0
17746 Fairness in representation: quantifying stereo... harms allocation increasingly studied part sub... 1 0 0 1 0 0
17747 Probing the possibility of hotspots on the cen... xray spectra neutron stars located centers sup... 0 1 0 0 0 0
17748 Some Elementary Partition Inequalities and The... prove various inequalities number partitions b... 0 0 1 0 0 0
17749 The terrestrial late veneer from core disrupti... overabundances highly siderophile elements hse... 0 1 0 0 0 0
17750 A Bayesian model for lithology/fluid class pre... consider bayesian model inversion observed amp... 0 0 0 1 0 0
17751 Correct Brillouin zone and electronic structur... promising route realization majorana fermions ... 0 1 0 0 0 0
17752 Even faster sorting of (not only) integers paper introduce raduls fastest parallel sorter... 1 0 0 0 0 0
17753 Evidential Deep Learning to Quantify Classific... deterministic neural nets shown learn effectiv... 0 0 0 1 0 0
17754 Neutron interference in the Earth's gravitatio... work relates famous experiments performed wern... 0 1 0 0 0 0
17755 Solve For Shortest Paths Problem Within Logari... shortest paths problem spp longer unresolved l... 1 0 0 0 0 0
17756 A short proof of the error term in Simpson's rule paper present short elementary proof error sim... 0 0 1 0 0 0
17757 Neutrino mass and dark energy constraints from... cosmology near future promises measurement sum... 0 1 0 0 0 0
17758 Dielectrophoretic assembly of liquid-phase-exf... liquidphaseexfoliation technique capable produ... 0 1 0 0 0 0
17759 Motion optimization and parameter identificati... designing exoskeleton reduce risk lowback inju... 1 0 0 0 0 0
17760 A dataset for Computer-Aided Detection of Pulm... todays researchers field pulmonary embolism pe... 1 0 0 0 0 0
17761 Comment on Ben-Amotz and Honig, "Average entro... point classical thermodynamics results paper k... 0 1 0 0 0 0
17762 High-transmissivity Silicon Visible-wavelength... hightransmissivity alldielectric metasurfaces ... 0 1 0 0 0 0
17763 Probabilistic Multigraph Modeling for Improvin... proposed probabilistic approach joint modeling... 1 0 0 1 0 0
17764 Quantum key distribution protocol with pseudor... quantum key distribution qkd offers way establ... 1 0 0 0 0 0
17765 Deep clustering of longitudinal data deep neural networks family computational mode... 0 0 0 1 0 0
17766 Economic Implications of Blockchain Platforms economy asymmetric information smart contract ... 0 0 0 0 0 1
17767 Proof Theory and Ordered Groups ordering theorems characterizing partial order... 0 0 1 0 0 0
17768 DF-SLAM: A Deep-Learning Enhanced Visual SLAM ... foundation driverless vehicle intelligent robo... 1 0 0 0 0 0
17769 A-NICE-MC: Adversarial Training for MCMC existing markov chain monte carlo mcmc methods... 1 0 0 1 0 0
17770 Starobinsky-like Inflation, Supercosmology and... embed flipped rm su times rm u gut model nosca... 0 1 0 0 0 0
17771 'Viral' Turing Machines, Computation from Nois... interactive computation paradigm reviewed part... 1 1 0 0 0 0
17772 Estimating model evidence using ensemble-based... iin recent years growing interest applying dat... 0 0 0 1 0 0
17773 An efficient spectral-Galerkin approximation a... propose analyze efficient spectralgalerkin app... 0 0 1 0 0 0
17774 Mendelian randomization with fine-mapped genet... mendelian randomization uses genetic variants ... 0 0 0 1 0 0
17775 Building competitive direct acoustics-to-word ... direct acousticstoword aw models endtoend para... 1 0 0 1 0 0
17776 Convolutional Dictionary Learning: Acceleratio... convolutional dictionary learning cdl sparsify... 1 0 1 0 0 0
17777 The late-time light curve of the type Ia super... present latetime optical rband imaging data pa... 0 1 0 0 0 0
17778 Convergence analysis of the block Gibbs sample... article consider markov chain monte carlomcmc ... 0 0 1 1 0 0
17779 The complexity of the Multiple Pattern Matchin... generalise multiple string pattern matching al... 1 0 0 0 0 0
17780 Functoriality and uniformity in Hrushovski's g... correspondence definable connected groupoids t... 0 0 1 0 0 0
17781 Simple Conditions for Metastability of Continu... family qbetabeta geq markov chains said exhibi... 0 0 0 1 0 0
17782 Deterministic preparation of highly non-classi... present scheme deterministically prepare noncl... 0 1 0 0 0 0
17783 On Local Optimizers of Acquisition Functions i... bayesian optimization sampleefficient method f... 1 0 0 1 0 0
17784 One Password: An Encryption Scheme for Hiding ... recent years attack leverages register informa... 1 0 0 0 0 0
17785 The RoPES project with HARPS and HARPS-N. I. A... report discovery system two superearths orbiti... 0 1 0 0 0 0
17786 On the possibility of developing quasi-cw high... new electron beamoptical procedure proposed qu... 0 1 0 0 0 0
17787 An Adaptive Characteristic-wise Reconstruction... due excellent shockcapturing capability high r... 0 1 0 0 0 0
17788 A level set-based structural optimization code... paper presents educational code written using ... 0 0 1 0 0 0
17789 Transaction Support over Redis: An Overview document outlines approach supporting crossnod... 1 0 0 0 0 0
17790 Subgraphs and motifs in a dynamic airline network smallscale topological structure airline netwo... 1 0 0 0 0 0
17791 On the Glitch Phenomenon principle glitch states device makes discrete ... 1 0 1 0 0 0
17792 Asymptotic properties and approximation of Bay... article perform asymptotic analysis bayesian p... 0 0 1 1 0 0
17793 Tunable Weyl and Dirac states in the nonsymmor... recent interest topological semimetals lead pr... 0 1 0 0 0 0
17794 Personalised Query Suggestion for Intranet Sea... recent research shown usefulness using collect... 1 0 0 0 0 0
17795 Navigability of Random Geometric Graphs in the... random geometric graphs hyperbolic spaces expl... 1 1 0 0 0 0
17796 Learning Geometric Concepts with Nasty Noise study efficient learnability geometric concept... 1 0 0 0 0 0
17797 The relationship between the number of editori... editorial board members considered gatekeepers... 1 0 0 1 0 0
17798 A Non-standard Standard Model paper examines standard model strongelectrowea... 0 1 0 0 0 0
17799 Robust functional regression model for margina... introduce flexible robust functional regressio... 0 0 0 1 0 0
17800 Linear theory for single and double flap wavem... paper concerned deterministic wave generation ... 0 1 0 0 0 0
17801 Image-domain multi-material decomposition for ... dual energy ct dect enhances tissue characteri... 0 1 0 0 0 0
17802 A tutorial on the synthesis and validation of ... wind farms wake interaction leads losses power... 1 0 0 0 0 0
17803 UCB Exploration via Q-Ensembles show ensemble qfunctions leveraged effective e... 1 0 0 1 0 0
17804 Towards a Deep Improviser: a prototype deep le... two modestsized symbolic corpora posttonal pos... 1 0 0 0 0 0
17805 Depicting urban boundaries from a mobility net... existing urban boundaries usually defined gove... 1 1 0 0 0 0
17806 Avoiding a Tragedy of the Commons in the Peer ... peer review foundation scientific publication ... 1 0 0 0 0 0
17807 Partially Recursive Acceptance Rejection generating random variates highdimensional dis... 1 0 1 0 0 0
17808 Reifenberg Flatness and Oscillation of the Uni... show mild topological assumptions small oscill... 0 0 1 0 0 0
17809 Stability and optimality of distributed second... present systematic method designing distribute... 1 0 1 0 0 0
17810 A Conjoint Application of Data Mining Techniqu... terrorism become one tedious problems deal pro... 1 0 0 1 0 0
17811 OVI 6830Å Imaging Polarimetry of Symbiotic Stars present first results ongoing pilot project te... 0 1 0 0 0 0
17812 MMGAN: Manifold Matching Generative Adversaria... wellknown gans difficult train several differe... 1 0 0 0 0 0
17813 Domain Adaptation for Infection Prediction fro... acute respiratory infections epidemic pandemic... 0 0 0 1 1 0
17814 Constrained empirical Bayes priors on regressi... model uncertainty empirical bayes eb procedure... 0 0 1 1 0 0
17815 A finite field analogue for Appell series F_3 paper introduce finite field analogue appell s... 0 0 1 0 0 0
17816 Two-way Two-tape Automata article consider twoway twotape alternating au... 1 0 0 0 0 0
17817 Making 360$^{\circ}$ Video Watchable in 2D: Le... circ video requires human viewers actively con... 1 0 0 0 0 0
17818 Zero-Shot Learning by Generating Pseudo Featur... zeroshot learning zsl challenging task aiming ... 1 0 0 0 0 0
17819 Hierarchical RNN with Static Sentence-Level At... speaker change detection scd important task di... 1 0 0 0 0 0
17820 Bivariate Discrete Generalized Exponential Dis... paper develop bivariate discrete generalized e... 0 0 0 1 0 0
17821 Optimization of Ensemble Supervised Learning A... new people united states diagnosed colorectal ... 1 0 0 1 0 0
17822 More or Less? Predict the Social Influence of ... users online social networks osns interact eve... 1 0 0 0 0 0
17823 Path-Following through Control Funnel Functions present approach path following using socalled... 1 0 0 0 0 0
17824 Tunable Anomalous Andreev Reflection and Tripl... theoretically study scattering process superco... 0 1 0 0 0 0
17825 Conditional Model Selection in Mixed-Effects M... model selection mixed models based conditional... 0 0 0 1 0 0
17826 Inequalities for the lowest magnetic Neumann e... study ground state energy neumann magnetic lap... 0 0 1 0 0 0
17827 Automated optimization of large quantum circui... develop implement automated methods optimizing... 1 0 0 0 0 0
17828 Testing the simplifying assumption in high-dim... testing simplifying assumption highdimensional... 0 0 0 1 0 0
17829 TSP With Locational Uncertainty: The Adversari... paper study natural special case traveling sal... 1 0 0 0 0 0
17830 Exact solutions to three-dimensional generaliz... shown using similarity transformations set thr... 0 1 1 0 0 0
17831 A Study of Reinforcement Learning for Neural M... recent studies shown reinforcement learning rl... 0 0 0 1 0 0
17832 Weighted Data Normalization Based on Eigenvalu... artificial neural network ann useful tool solv... 1 0 0 1 0 0
17833 Maximum likelihood estimation of determinantal... determinantal point processes dpps wideranging... 0 0 1 1 0 0
17834 Orthogonal Machine Learning: Power and Limitat... double machine learning provides sqrtnconsiste... 1 0 1 1 0 0
17835 Numerical investigation of supersonic shock-wa... perform direct numerical simulations shockwave... 0 1 0 0 0 0
17836 Privacy and Fairness in Recommender Systems vi... latent factor models recommender systems repre... 0 0 0 1 0 0
17837 Asymptotics for high-dimensional covariance ma... establish large sample approximations arbitray... 0 0 1 1 0 0
17838 Bayesian Paragraph Vectors wordvec mikolov et al proven successful natura... 1 0 0 1 0 0
17839 Subset Synchronization in Monotonic Automata study extremal algorithmic questions subset ca... 1 0 0 0 0 0
17840 Architecture of Text Mining Application in Ana... selection west java governor one event seizes ... 1 0 0 0 0 0
17841 Ray: A Distributed Framework for Emerging AI A... next generation ai applications continuously i... 1 0 0 1 0 0
17842 A blockchain-based Decentralized System for pr... temporary work employment situation useful sui... 1 0 0 0 0 0
17843 Valley polarized relaxation and upconversion l... transition metal dichalcogenides represent ide... 0 1 0 0 0 0
17844 Machine learning based localization and classi... demonstrate identification position material o... 0 1 0 0 0 0
17845 On the difficulty of finding spines prove set symplectic lattices siegel space mat... 0 0 1 0 0 0
17846 Distributed Decoding of Convolutional Network ... viterbilike decoding algorithm proposed paper ... 1 0 0 0 0 0
17847 Temperature induced phase transition from cycl... multiferroic bifeo cycloidal antiferromagnetic... 0 1 0 0 0 0
17848 POSEYDON - Converting the DAFNE Collider into ... project proposes reuse dafne accelerator compl... 0 1 0 0 0 0
17849 Phase diagram of hydrogen and a hydrogen-heliu... understanding planetary interiors directly lin... 0 1 0 0 0 0
17850 Identifying exogenous and endogenous activity ... occurrence new events system typically driven ... 1 0 0 0 0 0
17851 Water flow in Carbon and Silicon Carbide nanot... work conduction ionwater solution two discrete... 0 1 0 0 0 0
17852 Multidimensional extremal dependence coefficients extreme values modeling attracting attention r... 0 0 1 1 0 0
17853 A general framework for data-driven uncertaint... systems subject uncertain inputs produce uncer... 0 0 0 1 0 0
17854 Pachinko Prediction: A Bayesian method for eve... combination large open data sources machine le... 1 0 0 0 0 0
17855 A Digital Hardware Fast Algorithm and FPGA-bas... discrete cosine transform dct key step many im... 1 0 0 1 0 0
17856 Resurrecting the sigmoid in deep learning thro... well known initialization weights deep neural ... 1 0 0 1 0 0
17857 Singular perturbation for abstract elliptic eq... boundary value problem complete second order e... 0 0 1 0 0 0
17858 Pruning and Nonparametric Multiple Change Poin... change point analysis statistical tool identif... 0 0 0 1 0 0
17859 Context encoding enables machine learning-base... realtime monitoring functional tissue paramete... 1 1 0 0 0 0
17860 Simulating the interaction between a falling s... interaction occurs light solid object horizont... 0 1 0 0 0 0
17861 Power Flow Analysis Using Graph based Combinat... compared relational database rdb graph databas... 1 0 0 0 0 0
17862 A GAMP Based Low Complexity Sparse Bayesian Le... paper present algorithm sparse signal recovery... 1 0 0 1 0 0
17863 Sub-Nanometer Channels Embedded in Two-Dimensi... twodimensional materials among promising candi... 0 1 0 0 0 0
17864 Emotion in Reinforcement Learning Agents and R... article provides first survey computational mo... 1 0 0 1 0 0
17865 Tensor Networks in a Nutshell tensor network methods taking central role mod... 0 1 0 0 0 0
17866 Cheryl's Birthday present four logic puzzles solutions joseph ye... 1 0 0 0 0 0
17867 Never Forget: Balancing Exploration and Exploi... exploration bonus derived novelty states envir... 1 0 0 0 0 0
17868 Lenient Multi-Agent Deep Reinforcement Learning much success single agent deep reinforcement l... 1 0 0 0 0 0
17869 A New Framework for Synthetic Aperture Sonar M... synthetic aperture imaging systems achieve con... 1 0 0 0 0 0
17870 Emotionalism within People-Oriented Software D... designing software applications much effort pl... 1 0 0 0 0 0
17871 Quantifying the Estimation Error of Principal ... principal component analysis important pattern... 0 0 1 1 0 0
17872 On Convex Programming Relaxations for the Perm... recent years several convex programming relaxa... 1 0 1 0 0 0
17873 Many cubic surfaces contain rational points building recent work bhargavaelkiesschnidman k... 0 0 1 0 0 0
17874 Representation learning of drug and disease te... drug repositioning dr refers identification no... 1 0 0 0 0 0
17875 Analysis of a remarkable singularity in a nonl... work investigate dynamics nonlinear dde delayd... 0 1 1 0 0 0
17876 Characterization of Lipschitz functions in ter... aim characterize lipschitz functions variable ... 0 0 1 0 0 0
17877 Superconductivity Induced by Interfacial Coupl... consider thin normal metal sandwiched two ferr... 0 1 0 0 0 0
17878 Privacy Assessment of De-identified Opal Data:... consider privacy implications public release d... 1 0 0 0 0 0
17879 On the Importance of Correlations in Rational ... nash equilibrium paradigm rational choice theo... 1 0 0 0 0 0
17880 Reliable estimation of prediction uncertainty ... predictions parameteric property models uncert... 0 1 0 0 0 0
17881 Rethinking Split Manufacturing: An Information... split manufacturing promising technique defend... 1 0 0 0 0 0
17882 Unsupervised robotic sorting: Towards autonomo... autonomous sorting crucial task industrial rob... 1 0 0 0 0 0
17883 Beyond Whittle: Nonparametric correction of a ... whittle likelihood widely used bayesian nonpar... 0 0 0 1 0 0
17884 A consistent approach to unstructured mesh gen... geophysical model domains typically contain ir... 1 1 0 0 0 0
17885 Metric Map Merging using RFID Tags & Topologic... map merging component crucial proper functiona... 1 0 0 0 0 0
17886 Learning Local Feature Aggregation Functions w... paper introduces family local feature aggregat... 1 0 0 1 0 0
17887 Sub-harmonic Injection Locking in Metronomes paper demonstrate subharmonic injection lockin... 0 1 0 0 0 0
17888 Spin Seebeck effect in a polar antiferromagnet... studied longitudinal spin seebeck effect polar... 0 1 0 0 0 0
17889 Mackey algebras which are Gorenstein complete picture available literature showing ... 0 0 1 0 0 0
17890 Efficient acquisition rules for model-based ap... approximate bayesian computation abc method ba... 0 0 0 1 0 0
17891 Active Learning for Regression Using Greedy Sa... regression problems pervasive realworld applic... 0 0 0 1 0 0
17892 Centroid estimation based on symmetric KL dive... define new method estimate centroid text class... 0 0 0 1 0 0
17893 Rapid Near-Neighbor Interaction of High-dimens... calculation nearneighbor interactions among hi... 1 0 0 0 0 0
17894 Evolution and Recent Developments of the Gaseo... evolution present status gaseous photon detect... 0 1 0 0 0 0
17895 Superconducting Qubit-Resonator-Atom Hybrid Sy... propose hybrid quantum system lc resonator ind... 0 1 0 0 0 0
17896 Heroes and Zeroes: Predicting the Impact of Ne... video games playing thereof fixture american c... 1 0 0 0 0 0
17897 Variational Autoencoders for Learning Latent R... learning latent representation data unsupervis... 1 0 0 1 0 0
17898 Insense: Incoherent Sensor Selection for Spars... sensor selection refers problem intelligently ... 1 0 0 0 0 0
17899 Discrete Distribution for a Wiener Process Ran... introduce discrete distribution wiener process... 0 0 1 1 0 0
17900 Coherent control of flexural vibrations in dua... coherent control resonant response spatially e... 0 1 0 0 0 0
17901 Static and Dynamic Magnetic Properties of FeMn... recently demonstrated presence spinorbit toque... 0 1 0 0 0 0
17902 Ultraproducts of crossed product von Neumann a... study relationship ultraproduct crossed produc... 0 0 1 0 0 0
17903 Concept Drift Detection and Adaptation with Hi... fundamental issue statistical classification m... 1 0 0 1 0 0
17904 Interval-based Prediction Uncertainty Bound Co... problem machine learning missing values common... 0 0 0 1 0 0
17905 Methods for Interpreting and Understanding Dee... paper provides entry point problem interpretin... 1 0 0 1 0 0
17906 Passive Classification of Source Printer using... digital era one thing still holds convention p... 1 0 0 0 0 0
17907 The duration of load effect in lumber as stoch... paper proposes gamma process modelling damage ... 0 0 0 1 0 0
17908 Partial Bridging of Vaccine Efficacy to New Po... suppose one data one completed vaccine efficac... 0 0 0 1 0 0
17909 An induced map between rationalized classifyin... let b autx doldlashof classifying space orient... 0 0 1 0 0 0
17910 The Statistical Recurrent Unit sophisticated gated recurrent neural network a... 1 0 0 1 0 0
17911 Many-body localization in the droplet spectrum... study manybody localization properties disorde... 0 0 1 0 0 0
17912 FastDeepIoT: Towards Understanding and Optimiz... deep neural networks show great potential solu... 1 0 0 0 0 0
17913 Robust MPC for tracking of nonholonomic robots... paper two robust model predictive control mpc ... 1 0 0 0 0 0
17914 Investigation on the use of Hidden-Markov Mode... hidden markov models hmms ubiquitous tool mode... 1 0 0 1 0 0
17915 Network archaeology: phase transition in the r... network growth processes understood generative... 0 0 0 1 0 0
17916 Big Data, Data Science, and Civil Rights advances data analytics bring civil rights imp... 1 0 0 0 0 0
17917 Global well-posedness for 2-D Boussinesq syste... present paper dedicated global wellposedness i... 0 0 1 0 0 0
17918 CO~($J = 1-0$) Observations of a Filamentary M... present largefield times deg mapping observati... 0 1 0 0 0 0
17919 Leveraging Deep Neural Network Activation Entr... unseen data conditions inflict serious perform... 1 0 0 1 0 0
17920 Asymmetric Preheating study generation matterantimatter asymmetry bo... 0 1 0 0 0 0
17921 A multi-device dataset for urban acoustic scen... paper introduces acoustic scene classification... 1 0 0 0 0 0
17922 Asymptotically preserving particle-in-cell met... propose class particleincell pic methods vlaso... 0 0 1 0 0 0
17923 Cluster Failure Revisited: Impact of First Lev... methodological research rarely generates broad... 0 0 0 1 0 0
17924 An Integrated Simulator and Dataset that Combi... deep learning established framework learning h... 1 0 0 1 0 0
17925 A Recursive Bayesian Approach To Describe Reti... demographic studies suggest changes retinal va... 1 0 0 0 0 0
17926 Quantum Harmonic Analysis of the Density Matri... review study rigorously notion mixed states de... 0 0 1 0 0 0
17927 The bromodomain-containing protein Ibd1 links ... background chromatin remodelers swisnf family ... 0 0 0 0 1 0
17928 A Bayesian Perspective on Generalization and S... consider two questions heart machine learning ... 1 0 0 1 0 0
17929 Higher Derivative Field Theories: Degeneracy C... provide full analysis ghost free higher deriva... 0 1 0 0 0 0
17930 3D Morphology Prediction of Progressive Spinal... introduce novel approach predicting progressio... 1 0 0 1 0 0
17931 The Galaxy's Veil of Excited Hydrogen many baryons galaxy probably lie outside well ... 0 1 0 0 0 0
17932 Photonic-chip supercontinuum with tailored spe... supercontinuum generation using chipintegrated... 0 1 0 0 0 0
17933 Endogenizing Epistemic Actions series examples illustrate important drawbacks... 1 0 0 0 0 0
17934 The Meaning of Memory Safety give rigorous characterization means programmi... 1 0 0 0 0 0
17935 The Flexible Group Spatial Keyword Query present new class service location based socia... 1 0 0 0 0 0
17936 Undersampled windowed exponentials and their a... characterize completeness framebasis property ... 0 0 1 0 0 0
17937 Globally Optimal Gradient Descent for a ConvNe... deep learning models often successfully traine... 0 0 1 1 0 0
17938 Detection of irregular QRS complexes using Her... computer based recognition detection abnormali... 1 0 0 0 0 0
17939 On the Lipschitz equivalence of self-affine sets let expanding dtimes matrix integer entries ma... 0 0 1 0 0 0
17940 The Gross-Pitaevskii equations of a static and... paper consider dvali gmez assumption end state... 0 1 0 0 0 0
17941 Stability and instability in saddle point dyna... consider problem convergence saddle point conc... 1 0 1 0 0 0
17942 Continual Prediction of Notification Attendanc... investigate extent mobile use patterns predict... 1 0 0 0 0 0
17943 Extensions of Operators, Liftings of Monads an... previous study algebraic formulation first fun... 0 0 1 0 0 0
17944 Cascaded Incremental Nonlinear Dynamic Inversi... micro aerial vehicles mavs limited operation o... 1 0 0 0 0 0
17945 Numerical Evaluation of Elliptic Functions, El... describe algorithms compute elliptic functions... 1 0 0 0 0 0
17946 In situ Electric Field Skyrmion Creation in Ma... magnetic skyrmions localized nanometric spin t... 0 1 0 0 0 0
17947 An online sequence-to-sequence model for noisy... generative models long dominant approach speec... 1 0 0 1 0 0
17948 Existence of infinite Viterbi path for pairwis... hidden markov models one popular estimates hid... 0 0 1 1 0 0
17949 Coding for Segmented Edit Channels paper considers insertion deletion channels ad... 1 0 0 0 0 0
17950 Charge compensation at the interface between t... periodic supercell models electric double laye... 0 1 0 0 0 0
17951 CrowdTone: Crowd-powered tone feedback and imp... paper present crowdtone system designed help p... 1 0 0 0 0 0
17952 A Deterministic and Generalized Framework for ... restricted boltzmann machines rbms energybased... 1 1 0 1 0 0
17953 Integrability conditions for Compound Random M... compound random measures corms flexible tracta... 0 0 1 1 0 0
17954 Tunable low energy Ps beam for the anti-hydrog... test gravitational force antimatter field matt... 0 1 0 0 0 0
17955 An analysis of incorporating an external langu... attentionbased sequencetosequence models autom... 1 0 0 0 0 0
17956 Multi-Generator Generative Adversarial Nets propose new approach train generative adversar... 1 0 0 1 0 0
17957 Neural Style Transfer: A Review seminal work gatys et al demonstrated power co... 1 0 0 1 0 0
17958 Distribution of water in the G327.3-0.6 massiv... aim characterizing largescale distribution ho ... 0 1 0 0 0 0
17959 Straightening rule for an $m'$-truncated polyn... consider certain quotient polynomial ring cate... 0 0 1 0 0 0
17960 Effective Blog Pages Extractor for Better UGC ... blog becoming increasingly popular media infor... 1 0 0 0 0 0
17961 The Principle of Similitude in Biology: From A... meaningful laws nature must independent units ... 0 1 0 0 0 0
17962 New insight into the dynamics of rhodopsin pho... characterization primary events involved cistr... 0 1 0 0 0 0
17963 High-order schemes for the Euler equations in ... consider implementations highorder finite diff... 0 1 1 0 0 0
17964 Suppressing correlations in massively parallel... lattice monte carlo simulations parallelizatio... 0 1 0 0 0 0
17965 New bounds on the strength of some restriction... prove upper lower bounds effective content log... 0 0 1 0 0 0
17966 3D Face Morphable Models "In-the-Wild" morphable models dmms powerful statistical mod... 1 0 0 0 0 0
17967 Image Segmentation to Distinguish Between Over... medicine visualizing chromosomes important med... 1 0 0 1 0 0
17968 Implementing Large-Scale Agile Frameworks: Cha... based agile transformation cases years article... 1 0 0 0 0 0
17969 On The Limiting Distributions of the Total Hei... symboliccomputational algorithm fully implemen... 0 0 1 0 0 0
17970 HESS J1826$-$130: A Very Hard $γ$-Ray Spectrum... hess j unidentified hard spectrum source disco... 0 1 0 0 0 0
17971 Laser opacity in underdense preplasma of solid... investigate nextgeneration laser pulses pw pw ... 0 1 0 0 0 0
17972 Consequentialist conditional cooperation in so... social dilemmas mutual cooperation lead high p... 1 0 0 0 0 0
17973 Casimir free energy of dielectric films: Class... casimir free energy dielectric films freestand... 0 1 0 0 0 0
17974 Discriminant chronicles mining: Application to... pharmacoepidemiology pe study uses effects dru... 1 0 0 0 0 0
17975 Adversarial Symmetric Variational Autoencoder new form variational autoencoder vae developed... 1 0 0 0 0 0
17976 The singular locus of hypersurface sections co... prove exist hypersurfaces contain given closed... 0 0 1 0 0 0
17977 A Statistical Perspective on Inverse and Inver... inverse problems broad sense task learn noisy ... 0 0 1 1 0 0
17978 Model reduction for transport-dominated proble... work presents model reduction approach problem... 1 0 0 0 0 0
17979 Weighted parallel SGD for distributed unbalanc... stochastic gradient descent sgd popular stocha... 1 0 0 1 0 0
17980 Neural Lander: Stable Drone Landing Control us... precise trajectory control near ground difficu... 1 0 0 0 0 0
17981 Finite-Time Stabilization of Longitudinal Cont... communication presents longitudinal modelfree ... 1 0 1 0 0 0
17982 Review of Geraint F. Lewis and Luke A. Barnes,... new book cosmologists geraint f lewis luke bar... 0 1 0 0 0 0
17983 Introducing SPAIN (SParse Audion INpainter) novel sparsitybased algorithm audio inpainting... 1 0 0 0 0 0
17984 Palindromic Decompositions with Gaps and Errors identifying palindromes sequences interesting ... 1 0 0 0 0 0
17985 End-of-Use Core Triage in Extreme Scenarios Ba... remanufacturing significant factor securing su... 0 0 0 1 0 0
17986 A temperature-dependent implicit-solvent model... temperature tdependent coarsegrained cg hamilt... 0 1 0 0 0 0
17987 Directional Statistics and Filtering Using lib... paper present libdirectional matlab library di... 1 0 0 1 0 0
17988 A solution of the dark energy and its coincide... novel idea proposed natural solution dark ener... 0 1 0 0 0 0
17989 Active Bias: Training More Accurate Neural Net... selfpaced learning hard example mining reweigh... 0 0 0 1 0 0
17990 Optical signature of Weyl electronic structure... investigate electronic structure weyl semimeta... 0 1 0 0 0 0
17991 A study of cyber security in hospitality indus... purpose study analyze cyber security security ... 1 0 0 0 0 0
17992 Weak Fraisse categories develop theory weak fraisse categories crucial... 0 0 1 0 0 0
17993 Multiple Stakeholders in Music Recommender Sys... music recommendation services collectively spi... 1 0 0 0 0 0
17994 Large time behavior of solution to nonlinear D... paper studies large time behavior solution cla... 0 0 1 0 0 0
17995 Compositions of Functions and Permutations Spe... paper studies mathematical properties reaction... 1 0 0 0 0 0
17996 The center problem for the Lotka reactions wit... chemical reaction networks generalized massact... 0 0 1 0 0 0
17997 Recovery of Missing Samples Using Sparse Appro... paper study missing sample recovery problem us... 1 0 0 1 0 0
17998 Skin cancer reorganization and classification ... one kind skin cancer melanoma dangerous dermos... 1 0 0 0 0 0
17999 Rescaled extrapolation for vector-valued funct... extend rubio de francias extrapolation theorem... 0 0 1 0 0 0
18000 Separation of the charge density wave and supe... layered transition metal dichalcogenides ltmdc... 0 1 0 0 0 0
18001 Zero distribution for Angelesco Hermite--Padé ... consider problem zero distribution first kind ... 0 0 1 0 0 0
18002 Atomic-scale identification of novel planar de... discovered two novel types planar defects appe... 0 1 0 0 0 0
18003 Self-consistent assessment of Englert-Schwinge... manuscript investigates selfconsistent solutio... 0 1 0 0 0 0
18004 Target volatility option pricing in lognormal ... examine article pricing target volatility opti... 0 0 0 0 0 1
18005 Robust Blind Deconvolution via Mirror Descent revisit blind deconvolution problem focus unde... 1 0 0 1 0 0
18006 One-Dimensional Symmetry Protected Topological... present unified perspective symmetry protected... 0 1 0 0 0 0
18007 Proceedings Eighth International Symposium on ... volume contains proceedings eighth internation... 1 0 0 0 0 0
18008 Valence Bonds in Random Quantum Magnets: Theor... analyze effect quenched disorder spin quantum ... 0 1 0 0 0 0
18009 TuckER: Tensor Factorization for Knowledge Gra... knowledge graphs structured representations re... 1 0 0 1 0 0
18010 Taming Non-stationary Bandits: A Bayesian Appr... consider multi armed bandit problem nonstation... 1 0 0 1 0 0
18011 Smooth Primal-Dual Coordinate Descent Algorith... propose new randomized coordinate descent meth... 0 0 0 1 0 0
18012 Guarantees for Greedy Maximization of Non-subm... investigate performance standard greedy algori... 1 0 1 0 0 0
18013 Affine Metrics and Associated Algebroid Struct... paper algebroid bundle associated affine metri... 0 0 1 0 0 0
18014 Controllability of temporal networks: An analy... control complex networks significant challenge... 1 1 0 0 0 0
18015 Mapping momentum-dependent electron-phonon cou... despite fundamental role determining material ... 0 1 0 0 0 0
18016 Meridional Circulation Dynamics in a Cyclic Co... surface observations indicate speed solar meri... 0 1 0 0 0 0
18017 Bayesian analysis of 210Pb dating many studies environmental change past centuri... 0 0 0 1 0 0
18018 Analytic continuation with Padé decomposition illposed analytic continuation problem greens ... 0 1 0 0 0 0
18019 Imperative Functional Programs that Explain th... program slicing provides explanations illustra... 1 0 0 0 0 0
18020 Synthetic dimensions in ultracold molecules: q... synthetic dimensions alter one fundamental pro... 0 1 0 0 0 0
18021 Self-Organization and The Origins of Life: The... managedmetabolism hypothesis suggests cooperat... 0 1 0 0 0 0
18022 Pile-up Reduction, Bayesian Decomposition and ... silicon drift detectors sdds revolutionized sp... 0 1 0 0 0 0
18023 Online Learning to Rank in Stochastic Click Mo... online learning rank core problem information ... 1 0 0 1 0 0
18024 Transforming Coroutining Logic Programs into E... extend technique called compiling control tech... 1 0 0 0 0 0
18025 Gap and rings carved by vortices in protoplane... largescale vortices protoplanetary disks thoug... 0 1 0 0 0 0
18026 Wasserstein Dictionary Learning: Optimal Trans... paper introduces new nonlinear dictionary lear... 1 0 0 1 0 0
18027 A Generalization of Smillie's Theorem on Stron... smillie proved interesting result stability no... 1 0 0 0 0 0
18028 Geospatial Semantics geospatial semantics broad field involves vari... 1 0 0 0 0 0
18029 Stability of the sum of two solitary waves for... paper continue study citemiaotxdnlsstab use pe... 0 0 1 0 0 0
18030 A BERT Baseline for the Natural Questions technical note describes new baseline natural ... 1 0 0 0 0 0
18031 Knowledge Evolution in Physics Research: An An... even advance frontiers physics knowledge under... 1 1 0 0 0 0
18032 On a lower bound for the energy functional on ... study energy functional set lagrangian tori ma... 0 0 1 0 0 0
18033 Dynamic Mortality Risk Predictions in Pediatri... viewing trajectory patient dynamical system re... 1 0 1 1 0 0
18034 Global Strichartz estimates for the Schrödinge... consider schrdinger equation half space dimens... 0 0 1 0 0 0
18035 Structure of $^{20}$Ne states in the resonance... background nuclear structure cluster bands ne ... 0 1 0 0 0 0
18036 Terminal-Pairability in Complete Bipartite Graphs investigate terminalpairibility problem case b... 0 0 1 0 0 0
18037 Rate-optimal Meta Learning of Classification E... meta learning optimal classifier error rates a... 0 0 0 1 0 0
18038 Fast, Robust, and Versatile Event Detection th... event detection critical feature datadriven sy... 1 0 0 0 0 0
18039 Geometric features of Vessiot--Guldberg Lie al... paper locally classifies finitedimensional lie... 0 1 0 0 0 0
18040 Fermion inter-particle potentials in 5D and a ... work sets compute discuss effects spin velocit... 0 1 0 0 0 0
18041 Characterizations of idempotent discrete uninorms paper provide axiomatic characterization idemp... 1 0 1 0 0 0
18042 Constraints on the sum of neutrino masses usin... investigate constraints sum neutrino masses si... 0 1 0 0 0 0
18043 The effect of the choice of neural network dep... show number unique function mappings neural ne... 0 0 0 1 0 0
18044 Fairwashing: the risk of rationalization blackbox explanation problem explaining machin... 1 0 0 1 0 0
18045 Volume Dependence of N-Body Bound States derive finitevolume correction binding energy ... 0 1 1 0 0 0
18046 Tree-Structured Boosting: Connections Between ... additive models produced gradient boosting ful... 1 0 0 1 0 0
18047 Magnetic field influenced electron-impurity sc... formulate quasiclassical theory omegactau less... 0 1 0 0 0 0
18048 Evidence for depletion of heavy silicon isotop... context rosetta orbiter spectrometer ion neutr... 0 1 0 0 0 0
18049 Design, Simulation, and Testing of a Flexible ... walking quadruped robots face challenges posit... 1 0 0 0 0 0
18050 The landscape of NeuroImage-ing research field neuroimaging grows difficult scientists ... 1 0 0 1 0 0
18051 To tune or not to tune the number of trees in ... number trees random forest rf algorithm superv... 1 0 0 1 0 0
18052 SPH Modeling of Short-crested Waves study investigates shortcrested wave breaking ... 0 1 0 0 0 0
18053 Tunneling Field-Effect Junctions with WS$_2$ b... transition metal dichalcogenides tmdcs twodime... 0 1 0 0 0 0
18054 Topological Larkin-Ovchinnikov phase and Major... theoretically study bilayer superconducting to... 0 1 0 0 0 0
18055 Optimization and Analysis of Wireless Powered ... paper consider threenode cooperative wireless ... 1 0 0 0 0 0
18056 Asai cube L-functions and the local Langlands ... let f nonarchimedean locally compact field stu... 0 0 1 0 0 0
18057 What's in a game? A theory of game models game semantics rich successful class denotatio... 1 0 0 0 0 0
18058 Proposal for the Detection of Magnetic Monopol... present proposal applying nanoscale magnetomet... 0 1 0 0 0 0
18059 Rule-Based Spanish Morphological Analyzer Buil... preprocessing tools automated text analysis be... 1 0 0 0 0 0
18060 Learning Edge Representations via Low-Rank Asy... propose new method embedding graphs preserving... 1 0 0 1 0 0
18061 Inference, Prediction, and Control of Networke... develop feedback control method networked epid... 0 0 1 0 0 0
18062 The Weisfeiler-Leman algorithm and the diamete... prove number iterations taken weisfeilerleman ... 0 0 1 0 0 0
18063 Correlations between primes in short intervals... prove analogue hardylittlewood conjecture asym... 0 0 1 0 0 0
18064 Extracting and Exploiting Inherent Sparsity fo... besides enabling enhanced mobile broadband nex... 1 0 0 0 0 0
18065 Existence and convexity of local solutions to ... work prove existence local convex solution deg... 0 0 1 0 0 0
18066 Superexponential estimates and weighted lower ... prove following superexponential distribution ... 0 0 1 0 0 0
18067 Reframing the S\&P500 Network of Stocks along ... since beginning new millennium stock markets w... 0 0 0 0 0 1
18068 Point-contact spectroscopy of superconducting ... superconducting energy gap rm dynibc investiga... 0 1 0 0 0 0
18069 Parameterized Complexity of Safe Set paper study problem finding small safe set gra... 1 0 0 0 0 0
18070 A Matrix Variate Skew-t Distribution although ample work literature dealing skewnes... 0 0 1 1 0 0
18071 Status Updates Through Multicast Networks using age information freshness metric examine... 1 0 0 0 0 0
18072 Extension of Convolutional Neural Network with... applied predefined kernels also known filters ... 1 0 0 1 0 0
18073 Sound event detection using weakly labeled dat... paper proposes neural network architecture tra... 1 0 0 0 0 0
18074 Categoricity and Universal Classes let mathcalk subseteq universal class lsmathca... 0 0 1 0 0 0
18075 Water, High-Altitude Condensates, and Possible... superneptune exoplanet waspb exciting target a... 0 1 0 0 0 0
18076 Partial Order on the set of Boolean Regulatory... logical models successfully used describe regu... 1 0 0 0 1 0
18077 Scalable solvers for complex electromagnetics ... work present scalable balancing domain decompo... 1 0 0 0 0 0
18078 A flux-splitting method for hyperbolic-equatio... fluxsplitting method proposed hyperbolicequati... 0 1 0 0 0 0
18079 TransFlow: Unsupervised Motion Flow by Joint G... address unsupervised optical flow estimation e... 1 0 0 0 0 0
18080 A General Pipeline for 3D Detection of Vehicles autonomous driving requires perception vehicle... 0 0 0 1 0 0
18081 Search for CII Emission on Cosmological Scales... present search cii emission cosmological scale... 0 1 0 0 0 0
18082 Ricci flow and diffeomorphism groups of 3-mani... complete proof generalized smale conjecture ap... 0 0 1 0 0 0
18083 RLlib: Abstractions for Distributed Reinforcem... reinforcement learning rl algorithms involve d... 1 0 0 0 0 0
18084 A Multiscale-Analysis of Stochastic Bistable R... multiscale analysis stochastic bistable reacti... 0 0 1 0 0 0
18085 MARGIN: Uncovering Deep Neural Networks using ... interpretability emerged crucial aspect machin... 1 0 0 1 0 0
18086 SVCCA: Singular Vector Canonical Correlation A... propose new technique singular vector canonica... 1 0 0 1 0 0
18087 Discrete Choice and Rational Inattention: a Ge... paper establishes general equivalence discrete... 0 0 0 1 0 0
18088 A Hardy inequality for ultraspherical expansio... prove hardy inequality ultraspherical expansio... 0 0 1 0 0 0
18089 Structured Variational Learning of Bayesian Ne... bayesian neural networks bnns recently receive... 0 0 0 1 0 0
18090 Efficient Reinforcement Learning via Initial P... several realistic situations interactive learn... 1 0 0 1 0 0
18091 Stochastic Evolution of Augmented Born--Infeld... paper compares results applying recently devel... 0 1 1 0 0 0
18092 T-matrix evaluation of acoustic radiation forc... acoustical radiation force arf induced single ... 0 1 0 0 0 0
18093 On the commutative center of Moufang loops construct two infinite series moufang loops ex... 0 0 1 0 0 0
18094 The Kontsevich tetrahedral flow in 2D: a toy m... paper formality conjecture kontsevich designed... 0 0 1 0 0 0
18095 Twin Learning for Similarity and Clustering: A... many similaritybased clustering methods work t... 1 0 0 1 0 0
18096 Big Data Analysis Using Shrinkage Strategies paper apply shrinkage strategies estimate regr... 0 0 0 1 0 0
18097 Interpreter fr topologists let transitive model set theory canonical inte... 0 0 1 0 0 0
18098 Parallel-Data-Free Voice Conversion Using Cycl... propose paralleldatafree voiceconversion vc me... 1 0 0 1 0 0
18099 Cross-validation in high-dimensional spaces: a... leastsquares models linear regression linear d... 0 0 0 1 0 0
18100 A new, large-scale map of interstellar reddeni... present new map interstellar reddening coverin... 0 1 0 0 0 0
18101 Seasonal modulation of seismicity: the competi... seasonal patterns associated stress modulation... 0 1 0 0 0 0
18102 Existence and nonexistence of positive solutio... paper consider existence nonexistence solution... 0 0 1 0 0 0
18103 Shiba Bound States across the mobility edge in... present study andreev quantum dots qdots fabri... 0 1 0 0 0 0
18104 The Helsinki Neural Machine Translation System introduce helsinki neural machine translation ... 1 0 0 0 0 0
18105 Spatial distribution of nuclei in progressive ... phase transformations ruled nonsimultaneous nu... 0 1 0 0 0 0
18106 Finite-time Guarantees for Byzantine-Resilient... work considers resilient cooperative state est... 1 0 0 0 0 0
18107 Constraining Polarized Foregrounds for EOR Exp... critical challenge observation redshifted cm l... 0 1 0 0 0 0
18108 Collision Selective Visual Neural Network Insp... autonomous robots dynamic environments mixed h... 1 0 0 0 1 0
18109 Multifractal invariant measures in expanding p... analyze invariant measures two coupled piecewi... 0 1 0 0 0 0
18110 Virtually free finite-normal-subgroup-free gro... virtually free group h containing nontrivial f... 0 0 1 0 0 0
18111 Stochastic Geometry-based Comparison of Secrec... letter presents performance comparison two pop... 1 0 1 0 0 0
18112 Linear convergence of SDCA in statistical esti... paper consider stochastic dual coordinate sdca... 1 0 0 1 0 0
18113 Plug-and-Play Unplugged: Optimization Free Rec... regularized inversion methods image reconstruc... 1 0 1 0 0 0
18114 Using angular pair upweighting to improve 3D c... three dimensional galaxy clustering measuremen... 0 1 0 0 0 0
18115 Maximal entries of elements in certain matrix ... let lubeginbmatrix u endbmatrix rvbeginbmatrix... 0 0 1 0 0 0
18116 Generative Modeling of Multimodal Multi-Human ... work presents methodology modeling predicting ... 1 0 0 0 0 0
18117 Deep Sets study problem designing models machine learnin... 1 0 0 1 0 0
18118 Assortment Optimization under a Single Transit... paper consider markov chain choice model singl... 1 0 1 0 0 0
18119 Deconstructing Type III sas introduced type iii methods address diffic... 0 0 0 1 0 0
18120 The Digital Flynn Effect: Complexity of Posts ... parents teachers often express concern extensi... 1 0 0 0 0 0
18121 Epistemic Modeling with Justifications existing logical models fairly represent epist... 1 0 0 0 0 0
18122 Emergent universal critical behavior of the 2D... study critical behavior ncolor ashkinteller mo... 0 1 0 0 0 0
18123 Transport signatures of topological supercondu... study conductance junction normal superconduct... 0 1 0 0 0 0
18124 An Empirical Study of Mini-Batch Creation Stra... training neural machine translation nmt models... 1 0 0 0 0 0
18125 Network analyses of 4D genome datasets automat... chromosome conformation capture hic technologi... 0 0 0 0 1 0
18126 Predicate Pairing for Program Verification wellknown verification partial correctness pro... 1 0 0 0 0 0
18127 Entanglement entropy and computational complex... study growth entanglement entropy density matr... 0 1 0 0 0 0
18128 Be Careful What You Backpropagate: A Case For ... work show saturating output activation functio... 1 0 0 0 0 0
18129 A model theoretic Rieffel's theorem of quantum... defined notion quantum torus ttheta masanori i... 0 0 1 0 0 0
18130 Introducing the Simulated Flying Shapes and Si... release two artificial datasets simulated flyi... 1 0 0 0 0 0
18131 Couplings and quantitative contraction rates f... introduce new probabilistic approach quantify ... 0 0 1 0 0 0
18132 Stacked transfer learning for tropical cyclone... tropical cyclone windintensity prediction chal... 1 0 0 1 0 0
18133 Generalized Gray codes with prescribed ends of... given pairwise distinct vertices alphai betaik... 1 0 0 0 0 0
18134 Elementary-base cirquent calculus I: Parallel ... cirquent calculus proof system manipulating ci... 1 0 1 0 0 0
18135 Targeted and Imaging-guided In Vivo Photodynam... dualfunctional nanoparticles property aggregat... 0 1 0 0 0 0
18136 TOSC: an algorithm for the tomography of spott... photometric observations planetary transits ma... 0 1 0 0 0 0
18137 Bayesian uncertainty quantification for epidem... exist number mathematical approaches modeling ... 0 0 0 1 0 0
18138 Switching divergences for spectral learning in... recorded enclosed room sound signal certainly ... 1 0 0 0 0 0
18139 The correlation between the sizes of globular ... sizes entire systems globular clusters gcs dep... 0 1 0 0 0 0
18140 Variation of field enhancement factor near the... field enhancement factor emitter tip variation... 0 1 0 0 0 0
18141 Benchmark Environments for Multitask Learning ... demand drives systems generalize various domai... 1 0 0 0 0 0
18142 A Multiple Linear Regression Approach For Esti... paper market values football players forward p... 0 0 0 1 0 0
18143 Application of the Huang-Hilbert transform and... huanghilbert transform applied seismic electri... 0 1 0 0 0 0
18144 The Hurwitz Subgroups of $E_6(2)$ prove exceptional group e hurwitz group course... 0 0 1 0 0 0
18145 Three IQs of AI Systems and their Testing Methods rapid development artificial intelligence brou... 1 0 0 0 0 0
18146 Polynomial functors in manifold calculus let smooth manifold let om poset open subsets ... 0 0 1 0 0 0
18147 Tikhonov Regularization for Long Short-Term Me... wellknown fact adding noise input data often i... 1 0 0 1 0 0
18148 On the shape operator of relatively parallel h... deal hypersurfaces framework ndimensional rela... 0 0 1 0 0 0
18149 Soft Pneumatic Gelatin Actuator for Edible Rob... present fully edible pneumatic actuator based ... 1 0 0 0 0 0
18150 Deep learning for extracting protein-protein i... stateoftheart methods proteinprotein interacti... 1 0 0 0 0 0
18151 Hierarchical VampPrior Variational Fair Auto-E... decision making process extremely prone differ... 0 0 0 1 0 0
18152 MHD Models of Gamma-ray Emission in WR 11 recent reports claiming tentative association ... 0 1 0 0 0 0
18153 Caulking the Leakage Effect in MEEG Source Con... simplistic estimation neural connectivity meeg... 0 0 0 0 1 0
18154 New ADS Functionality for the Curator paper provide update concerning operations nas... 1 1 0 0 0 0
18155 Survey of reasoning using Neural networks reason inference require process well memory s... 1 0 0 0 0 0
18156 Recurrent Neural Network-based Model Predictiv... pharmaceutical industry witnessed exponential ... 1 0 0 0 0 0
18157 A unitary "quantization commutes with reductio... let k simply connected compact lie group tastk... 0 0 1 0 0 0
18158 Electron Paramagnetic Resonance Spectroscopy o... performed magnetic field frequency tunable ele... 0 1 0 0 0 0
18159 Step Detection Algorithm For Accurate Distance... paper new smartphone sensor based algorithm pr... 1 0 0 0 0 0
18160 Digging Into Self-Supervised Monocular Depth E... depthsensing important navigation scene unders... 0 0 0 1 0 0
18161 The Causality/Repair Connection in Databases: ... work answerset programs specify repairs databa... 1 0 0 0 0 0
18162 Two-temperature logistic regression based on t... develop variant multiclass logistic regression... 1 0 0 1 0 0
18163 Bootstrapped synthetic likelihood approximate bayesian computation abc synthetic... 1 0 0 1 0 0
18164 The Weinstein conjecture for iterated planar c... paper introduce notions iterated planar lefsch... 0 0 1 0 0 0
18165 Privacy-Preserving Deep Learning via Weight Tr... paper considers scenario multiple data owners ... 0 0 0 1 0 0
18166 CORRECT: Code Reviewer Recommendation in GitHu... peer code review locates common coding rule vi... 1 0 0 0 0 0
18167 Charged Perfect Fluid Distribution for Cosmolo... considering sphericallysymmetric nonstatic cos... 0 1 0 0 0 0
18168 Finite homogeneous geometries paper reproduces text part authors dphil thesi... 0 0 1 0 0 0
18169 Weakly-Private Information Retrieval private information retrieval pir protocols ma... 1 0 0 0 0 0
18170 Concentrated Differentially Private Gradient D... iterative algorithms like gradient descent com... 0 0 0 1 0 0
18171 "The universal meaning of the quantum of actio... commented translation paper universelle bedeut... 0 1 0 0 0 0
18172 Barrier to recombination of oppositely charged... electronic charge carriers ionic materials sel... 0 1 0 0 0 0
18173 Metric Reduction and Generalized Holomorphic S... paper metric reduction generalized geometry in... 0 0 1 0 0 0
18174 Learning of Optimal Forecast Aggregation in Pa... consider forecast aggregation problem repeated... 0 0 0 1 0 0
18175 Distributed Unknown-Input-Observers for Cyber ... paper cyber attack detection isolation studied... 1 0 0 0 0 0
18176 Exponential Decay of the lengths of Spectral G... paper study nonself dual extended harpers mode... 0 0 1 0 0 0
18177 Topological Landau-Zener Bloch Oscillations in... lieb lattice exhibits intriguing properties ge... 0 1 0 0 0 0
18178 Assessing the impact of bulk and shear viscosi... analyzed effects bulk shear viscosities pertur... 0 1 0 0 0 0
18179 Correlations in eigenfunctions of quantum chao... realistic models quantum chaotic systems hamil... 0 1 0 0 0 0
18180 Fast Trajectory Optimization for Legged Robots... paper combines fast zeromomentpoint zmp approa... 1 0 1 0 0 0
18181 Electric Field Properties inside Central Gap o... work investigates influence geometric variatio... 0 1 0 0 0 0
18182 Towards Understanding the Invertibility of Con... several recent works empirically observed conv... 1 0 0 1 0 0
18183 An effective algorithm for hyperparameter opti... major challenge designing neural network nn sy... 1 0 0 0 0 0
18184 On estimation in varying coefficient models fo... paper study smoothness regularization method v... 0 0 0 1 0 0
18185 Large-degree asymptotics of rational Painleve-... painleveiv equation three families rational so... 0 1 1 0 0 0
18186 Lattice Boltzmann study of chemically-driven s... numerically study behavior selfpropelled liqui... 0 1 0 0 0 0
18187 RDMAvisor: Toward Deploying Scalable and Simpl... rdma increasingly adopted cloud computing plat... 1 0 0 0 0 0
18188 Towards a better understanding of the matrix p... recently introduced method approximate functio... 1 1 0 0 0 0
18189 Explicit polynomial sequences with maximal spa... answer question k mulmuley efremenkolandsbergs... 1 0 1 0 0 0
18190 Affine processes under parameter uncertainty develop onedimensional notion affine processes... 0 0 0 0 0 1
18191 Plane graphs without 4- and 5-cycles and witho... listed among one hundred famous unsolved probl... 0 0 1 0 0 0
18192 Temporal Logic Task Planning and Intermittent ... paper develop distributed intermittent communi... 1 0 0 0 0 0
18193 Second-oder analysis in second-oder cone progr... paper conducts secondorder variational analysi... 0 0 1 0 0 0
18194 Understanding Deep Learning Performance throug... interpreting performance deep learning models ... 1 0 0 0 0 0
18195 The homotopy theory of coalgebras over simplic... apply acyclicity theorem hess kerdziorek riehl... 0 0 1 0 0 0
18196 Spatio-temporal analysis of regional unemploym... study aims analyze methodologies used estimate... 0 0 0 1 0 0
18197 Accelerating solutions of one-dimensional unst... expedient design precision components aerospac... 1 1 0 0 0 0
18198 Efficiency Analysis of ASP Encodings for Seque... article presents use answer set programming as... 1 0 0 1 0 0
18199 Fukaya categories in Koszul duality theory paper define ainftykoszul duals directed ainft... 0 0 1 0 0 0
18200 BSDEs and SDEs with time-advanced and -delayed... paper introduces class backward stochastic dif... 0 0 1 0 0 0
18201 Characterizing information importance and the ... paper present thorough analysis nature news di... 1 1 0 0 0 0
18202 Quantum criticality at the superconductor to i... superconductorinsulator transition sit conside... 0 1 0 0 0 0
18203 Continuous-Time Gaussian Process Motion Planni... introduce novel formulation motion planning co... 1 0 0 0 0 0
18204 Polynomially and Infinitesimally Injective Mod... injective polynomial modules general linear gr... 0 0 1 0 0 0
18205 Nonstandard Methods in Ramsey Theory and Combi... goal present manuscript introduce reader nonst... 0 0 1 0 0 0
18206 When is Network Lasso Accurate? least absolute shrinkage selection operator la... 0 0 0 1 0 0
18207 T-ROME: A Simple and Energy Efficient Tree Rou... wireless sensor networks deployed many monitor... 1 0 0 0 0 0
18208 Classifying the Correctness of Generated White... whitebox test generator tools rely code test s... 1 0 0 0 0 0
18209 Numerical Simulations of Saturn's B Ring: Gran... study b rings complex optical depth structure ... 0 1 0 0 0 0
18210 Shock-darkening in ordinary chondrites: determ... determined shockdarkening pressure range ordin... 0 1 0 0 0 0
18211 On the Global Fluctuations of Block Gaussian M... paper study global fluctuations block gaussian... 0 0 1 0 0 0
18212 Carnot Efficiency of Publication paper analyzes publication efficiency terms hi... 1 0 0 0 0 0
18213 EV-FlowNet: Self-Supervised Optical Flow Estim... eventbased cameras shown great promise variety... 1 0 0 0 0 0
18214 Deep Active Learning for Named Entity Recognition deep learning yielded stateoftheart performanc... 1 0 0 0 0 0
18215 Bipedal Walking with Corrective Actions in the... many methods exist bipedal robot keep balance ... 1 0 0 0 0 0
18216 TimeNet: Pre-trained deep recurrent neural net... inspired tremendous success deep convolutional... 1 0 0 0 0 0
18217 Differentially Private Federated Learning: A C... federated learning recent advance privacy prot... 1 0 0 1 0 0
18218 Okapi: Causally Consistent Geo-Replication Mad... okapi new causally consistent georeplicated ke... 1 0 0 0 0 0
18219 Emergence of epithelial cell density waves epithelial cell monolayers exhibit traveling m... 0 1 0 0 0 0
18220 Complex Analysis of Real Functions IV: Non-Int... context complexanalytic structure within unit ... 0 0 1 0 0 0
18221 Convolution Aware Initialization initialization parameters deep neural networks... 1 0 0 1 0 0
18222 A Multitask Diffusion Strategy with Optimized ... consider multitask estimation problem nodes ne... 1 0 0 0 0 0
18223 High Resolution Observations of the Massive Pr... report mm continuum chcn cs line observations ... 0 1 0 0 0 0
18224 MEDL and MEDLA: Methods for Assessment of Scal... highfrequency measurements images acquired var... 0 0 0 1 0 0
18225 A Two-Level Graph Partitioning Problem Arising... kpartition problem kpp one given edgeweighted ... 1 0 1 0 0 0
18226 Emotion Specification from Musical Stimuli: An... present study reports interesting findings reg... 0 1 0 0 0 0
18227 The light pollution as a surrogate for urban p... show definition city boundaries dramatic influ... 0 1 0 0 0 0
18228 Analytic calculation of radio emission from pa... radio intensity polarization footprint cosmicr... 0 1 0 0 0 0
18229 Akhmediev Breathers and Peregrine Solitary Wav... investigate formation optical localized nonlin... 0 1 0 0 0 0
18230 Novel approaches to spectral properties of cor... intriguing properties emergent materials typic... 0 1 0 0 0 0
18231 Flux-Rope Twist in Eruptive Flares and CMEs: d... nature threedimensional reconnection twisted f... 0 1 0 0 0 0
18232 On the classification of Kantor pairs and stru... observe finitedimensional central simple grade... 0 0 1 0 0 0
18233 Cross-lingual Distillation for Text Classifica... crosslingual text classificationcltc task clas... 1 0 0 0 0 0
18234 Characterization of Majorana-Ising phase trans... map interacting helical liquid system coupled ... 0 1 0 0 0 0
18235 Monotonicity and symmetry of nonnegative solut... consider nonnegative solutions delta ufu halfp... 0 0 1 0 0 0
18236 Gini-regularized Optimal Transport with an App... rapidly growing product lines services require... 1 0 0 1 0 0
18237 Indicators of Conformal Field Theory: entangle... entanglement entropy ee quantum systems often ... 0 1 0 0 0 0
18238 Classical Entanglement Structure in the Wavefu... argue preferred classical variables emerge pur... 0 1 0 0 0 0
18239 Pulsejet engine dynamics in vertical motion us... momentum conservation law applied analyse dyna... 0 1 0 0 0 0
18240 Mitigating Blackout Risk via Maintenance : Inf... whereas maintenance recognized important effec... 0 0 0 1 0 0
18241 Evolving to Non-round Weingarten Spheres: Inte... hopf gave examples nonround convex spheres euc... 0 0 1 0 0 0
18242 On Infinite Linear Programming and the Moment ... revisit linear programming approach determinis... 1 0 1 0 0 0
18243 Granular permittivity representation in extrem... lightmatter interaction processes significantl... 0 1 0 0 0 0
18244 Application of Superhalogens in the Design of ... bechgaard salts tmtsfx tmtsf tetramethyl tetra... 0 1 0 0 0 0
18245 Inhomogeneous hard-core bosonic mixture with c... introduce inhomogeneous bosonic mixture compos... 0 1 0 0 0 0
18246 Width-$k$ Generalizations of Classical Permuta... introduce new natural generalizations classica... 0 0 1 0 0 0
18247 Klout Topics for Modeling Interests and Expert... paper presents klout topics lightweight ontolo... 1 0 0 0 0 0
18248 Set-Based Tests for Genetic Association Using ... studying effects groups single nucleotide poly... 0 0 0 1 0 0
18249 Comprehensive Modeling of Three-Phase Distribu... theme paper threephase distribution system mod... 1 0 1 0 0 0
18250 $c$-vectors of 2-Calabi--Yau categories and Bo... develop general framework cvectors calabiyau c... 0 0 1 0 0 0
18251 Electrostatic interaction between non-identica... thesis study lateral electrostatic interaction... 0 1 0 0 0 0
18252 The weighted connection and sectional curvatur... paper study sectional curvature bounds riemann... 0 0 1 0 0 0
18253 Control and Limit Enforcements for VSC Multi-T... paper proposes novel method automatically enfo... 1 0 0 0 0 0
18254 A.Ya. Khintchine's Work in Probability Theory paper devoted contribution probability theory ... 0 0 1 0 0 0
18255 Dynamic Complexity under Definable Changes paper studies dynamic complexity definable cha... 1 0 0 0 0 0
18256 The Planar Sandwich and Other 1D Planar Heat F... report documents implementation several relate... 0 1 0 0 0 0
18257 Difficulties of Timestamping Archived Web Pages show stateoftheart services creating trusted t... 1 0 0 0 0 0
18258 Cops and robber on grids and tori paper contribution classical cops robber probl... 1 0 0 0 0 0
18259 Measuring Gender Inequalities of German Profes... wikipedia communitycreated online encyclopedia... 1 0 0 0 0 0
18260 Contact Adaption during Epidemics: A Multilaye... people change physical contacts preventive res... 1 0 0 0 0 0
18261 Estimation in the convolution structure densit... study problem nonparametric estimation blploss... 0 0 1 1 0 0
18262 Candidate exoplanet host HD131399A: a nascent ... direct imaging suggests jovian exoplanet aroun... 0 1 0 0 0 0
18263 Toward Quantum Combinatorial Games paper propose quantum variation combinatorial ... 1 0 0 0 0 0
18264 Markov $L_2$ inequality with the Gegenbauer we... gegenbauer weight function wlambdattlambda lam... 0 0 1 0 0 0
18265 A Note on Some Approximation Kernels on the Sp... produce precise estimates kogbetliantz kernel ... 0 0 1 0 0 0
18266 Machine Learning as Statistical Data Assimilation identify strong equivalence neural network bas... 1 0 0 1 0 0
18267 Nonparametric estimation of the kernel functio... use empirical normalized smoothed periodogram ... 0 0 1 1 0 0
18268 Fermions in Two Dimensions: Scattering and Man... ultracold atomic fermi gases twodimensions inc... 0 1 0 0 0 0
18269 Moving Horizon Estimation for ARMAX process wi... paper instead usual gaussian noise assumption ... 1 0 0 0 0 0
18270 Chimera states in brain networks: empirical ne... complex spatiotemporal patterns called chimera... 0 1 0 0 0 0
18271 Bayesian surrogate learning in dynamic simulat... estimation unknown values parameters hidden va... 1 0 0 1 0 0
18272 Stationary solutions for the ellipsoidal BGK m... address boundary value problem ellipsoidal bgk... 0 0 1 0 0 0
18273 Raman signatures of monoclinic distortion in (... octahedral tilting common distortion process o... 0 1 0 0 0 0
18274 On Quadratic Penalties in Elastic Weight Conso... elastic weight consolidation ewc kirkpatrick e... 1 0 0 1 0 0
18275 The design of the ILD forward region following decision reduce l beamcal moved clos... 0 1 0 0 0 0
18276 Conduction Channel Formation and Dissolution D... transition metal oxide memristors resistive ra... 0 1 0 0 0 0
18277 Improving Massive MIMO Belief Propagation Dete... paper deep neural network dnn utilized improve... 0 0 0 1 0 0
18278 Trend Analysis on the Metadata of Program Comp... program comprehension vast research area neces... 1 0 0 0 0 0
18279 Combinatorial views on persistent characters i... socalled binary perfect phylogeny persistent c... 0 0 0 0 1 0
18280 Distribution of residuals in the nonparametric... develop uniform asymptotic expansion empirical... 0 0 1 1 0 0
18281 Scene Graph Generation by Iterative Message Pa... understanding visual scene goes beyond recogni... 1 0 0 0 0 0
18282 On the Apparent Power Law in CDM Halo Pseudo P... investigate apparent powerlaw scaling pseudo p... 0 1 0 0 0 0
18283 Heavy tailed approximate identities and $σ$-st... aim paper present results relating properties ... 0 0 1 0 0 0
18284 Spreading of correlations in the Falicov-Kimba... study dynamical properties one twodimensional ... 0 1 0 0 0 0
18285 Direct Estimation of Information Divergence Us... propose direct estimation method rnyi fdiverge... 1 0 0 1 0 0
18286 Efficiently Learning Mixtures of Mallows Models mixtures mallows models popular generative mod... 0 0 0 1 0 0
18287 Optimal Scheduling of Electrolyzer in Power Ma... optimal scheduling hydrogen production dynamic... 0 0 0 1 0 0
18288 Determination of the thermopower of microscale... modified ac method based microfabricated heate... 0 1 0 0 0 0
18289 Food for Thought: Analyzing Public Opinion on ... project explores public opinion supplemental n... 1 0 0 0 0 0
18290 Hasse diagrams of non-isomorphic posets with $... let pn set posets n elements nipn set nonisomo... 0 0 1 0 0 0
18291 Variable screening with multiple studies advancement technology generated abundant high... 0 0 1 1 0 0
18292 Gaussian-Constrained training for speaker veri... neural models particular dvector xvector archi... 1 0 0 0 0 0
18293 Structural Change in (Economic) Time Series methods detecting structural changes change po... 0 1 0 1 0 0
18294 Exploiting Hierarchy in the Abstraction-Based ... statecharts frequently used modeling formalism... 1 0 0 0 0 0
18295 Modulus consensus in discrete-time signed netw... recently dynamics signed networks ties among a... 1 1 1 0 0 0
18296 Mobility Transition at Grain Boundaries in Two... stagnation grain growth often attributed impur... 0 1 0 0 0 0
18297 Sufficient conditions for the forcing theorem,... present three natural combinatorial properties... 0 0 1 0 0 0
18298 Cauchy problem for effectively hyperbolic oper... study cauchy problem effectively hyperbolic op... 0 0 1 0 0 0
18299 \textit{Ab Initio} results for the Static Stru... uniform electron gas finite temperature high c... 0 1 0 0 0 0
18300 Delooping the functor calculus tower study connection mapping spaces bimodules infi... 0 0 1 0 0 0
18301 Area Law Violations and Quantum Phase Transiti... area law violations entanglement entropy form ... 0 1 0 0 0 0
18302 Diffusion and confusion of chaotic iteration b... guarantee integrity security data transmitted ... 1 1 0 0 0 0
18303 L1188: a promising candidate of cloud-cloud co... present new largescale square degrees simultan... 0 1 0 0 0 0
18304 Asymmetric Matrix-Valued Covariances for Multi... matrixvalued covariance functions crucial geos... 0 0 1 1 0 0
18305 A dynamic stochastic blockmodel for interactio... propose new dynamic stochastic blockmodel focu... 0 0 0 1 0 0
18306 Do we agree on user interface aesthetics of An... context visual aesthetics increasingly seen es... 1 0 0 0 0 0
18307 A Solution for Large-scale Multi-object Tracking largescale multiobject tracker based generalis... 0 0 0 1 0 0
18308 Empirical Survival Jensen-Shannon Divergence a... coefficient determination known r commonly use... 0 0 0 0 0 1
18309 Cooperative Localisation of a GPS-Denied UAV u... gpsdenied uav agent b localised ins alignment ... 1 0 0 0 0 0
18310 Optical Surface Properties and their RF Limita... inner surface superconducting cavities plays c... 0 1 0 0 0 0
18311 A comment on `An improved macroscale model for... recent paper lasseux valdsparada porter jfluid... 0 1 0 0 0 0
18312 AdaComp : Adaptive Residual Gradient Compressi... highly distributed training deep neural networ... 1 0 0 1 0 0
18313 Halo-independent determination of the unmodula... present haloindependent determination unmodula... 0 1 0 0 0 0
18314 Can Deep Reinforcement Learning Solve Erdos-Se... deep reinforcement learning achieved many rece... 1 0 0 1 0 0
18315 Memristor equations: incomplete physics and un... seminal paper chua presented fundamental physi... 1 0 0 0 0 0
18316 Astrophysical uncertainties on the local dark ... differential event rate weakly interacting mas... 0 1 0 0 0 0
18317 On Reliability-Aware Server Consolidation in C... past years datacenter dc energy consumption be... 1 0 0 0 0 0
18318 A novel quantum dynamical approach in electron... numerical analysis diffraction features render... 0 1 0 0 0 0
18319 Convex equipartitions of colored point sets show dcolored set points general position math... 0 0 1 0 0 0
18320 Logic Programming Petri Nets purpose modeling specifying reasoning integrat... 1 0 0 0 0 0
18321 Unique Continuation through Hyperplane for Hig... consider higher order parabolic operator parti... 0 0 1 0 0 0
18322 Fashion Conversation Data on Instagram fashion industry establishing presence number ... 1 0 0 1 0 0
18323 Viscous flow in a soft valve fluidstructure interactions ubiquitous nature ... 0 1 0 0 0 0
18324 Superheavy Thermal Dark Matter and Primordial ... early universe could feature multiple reheatin... 0 1 0 0 0 0
18325 Time-dependent population imaging for solid hi... propose intuitive method called timedependent ... 0 1 0 0 0 0
18326 Group Sparse Bayesian Learning for Active Surv... predicting epidemic dynamics great value under... 1 0 0 1 0 0
18327 FNS: an event-driven spiking neural network fr... limitations processing capabilities memory tod... 0 0 0 0 1 0
18328 Synchronization, phase slips and coherent stru... problem synchronization coupled hamiltonian sy... 0 1 0 0 0 0
18329 Design of Real-time Semantic Segmentation Deco... semantic segmentation remains computationally ... 1 0 0 1 0 0
18330 Nonparametric covariance estimation for mixed ... motivated applications mixed longitudinal stud... 0 0 1 1 0 0
18331 Deep Learning for Real-time Gravitational Wave... recent nobelprizewinning detections gravitatio... 1 1 0 0 0 0
18332 Note on local coisotropic Floer homology and l... outline construction local floer homology cois... 0 0 1 0 0 0
18333 Geometric Surface-Based Tracking Control of a ... paper presents contributions nonlinear trackin... 1 0 0 0 0 0
18334 Estimating the rate of defects under imperfect... consider problem estimating rate defects mean ... 0 0 0 1 0 0
18335 Measuring heavy-tailedness of distributions different questions related analysis extreme v... 0 0 0 1 0 0
18336 Inductive $k$-independent graphs and $c$-color... inductive kindependent graphs generalize chord... 1 0 0 0 0 0
18337 The word and order problems for self-similar a... prove word problem undecidable functionally re... 1 0 1 0 0 0
18338 Machine Teaching: A New Paradigm for Building ... current processes building machine learning sy... 1 0 0 1 0 0
18339 Totally geodesic submanifolds of Teichmuller s... show totally geodesic submanifold teichmuller ... 0 0 1 0 0 0
18340 Towards a splitting of the $K(2)$-local string... show klocally smash product string bordism spe... 0 0 1 0 0 0
18341 Osmotic and diffusio-osmotic flow generation a... paper explore various forms osmotic transport ... 0 1 0 0 0 0
18342 Accurate and Efficient Estimation of Small P-v... small pvalues often required accurately estima... 0 0 0 1 0 0
18343 Does the Testing Level affect the Prevalence o... researchers previously shown coincidental corr... 1 0 0 0 0 0
18344 How spread changes affect the order book: Comp... observe effects three different events cause s... 0 0 0 0 0 1
18345 High-Dimensional Dependency Structure Learning... paper consider use structure learning methods ... 1 0 0 1 0 0
18346 Lax orthogonal factorisations in monad-quantal... show quantale v mathsfsetmonad mathbbt laxly e... 0 0 1 0 0 0
18347 Radiation reaction for spinning bodies in effe... compute leading postnewtonian pn contributions... 0 1 0 0 0 0
18348 On the geometric notion of connection and its ... tangent categories provide axiomatic approach ... 0 0 1 0 0 0
18349 Objective priors for the number of degrees of ... objective bayesian approach estimate number de... 0 0 0 1 0 0
18350 PROBE: Predictive Robust Estimation for Visual... navigation unknown chaotic environments contin... 1 0 0 0 0 0
18351 Ethical Artificial Intelligence - An Open Ques... artificial intelligence ai effective science e... 1 0 0 0 0 0
18352 Self-Attentive Model for Headline Generation headline generation special type text summariz... 1 0 0 0 0 0
18353 Localized Recombining Plasma in G166.0+4.3: A ... observed galactic mixedmorphology supernova re... 0 1 0 0 0 0
18354 Visualizing Design Erosion: How Big Balls of M... software systems static undergo frequent chang... 1 0 0 0 0 0
18355 Hierarchical Representations for Efficient Arc... explore efficient neural architecture search m... 1 0 0 1 0 0
18356 A return to eddy viscosity model for epistemic... purpose uncertainty quantification uq reynolds... 0 1 0 0 0 0
18357 A Neural Network model with Bidirectional Whit... present new model algorithm performs efficient... 0 0 0 1 0 0
18358 Regularity gradient estimates for weak solutio... paper studies sobolev regularity estimates wea... 0 0 1 0 0 0
18359 Learning to Avoid Errors in GANs by Manipulati... despite recent advances large scale visual art... 1 0 0 1 0 0
18360 Improving 6D Pose Estimation of Objects in Clu... work proposes process efficiently searching co... 1 0 0 0 0 0
18361 On the benefits of output sparsity for multi-l... multilabel classification framework observatio... 1 0 1 1 0 0
18362 On wrapping number, adequacy and the crossing ... work establish tightest lower bound uptodate m... 0 0 1 0 0 0
18363 On the Applicability of Delicious for Temporal... web archives large longitudinal collections st... 1 0 0 0 0 0
18364 The Geometry and Topology of Data and Informat... begin summarizing relevance importance inducti... 1 0 0 0 0 0
18365 Conformal Twists, Yang-Baxter $σ$-models & Hol... expanding upon earlier results arxiv present c... 0 1 0 0 0 0
18366 AWEsome: An open-source test platform for airb... paper present awesome airborne wind energy sta... 1 0 0 0 0 0
18367 A one-dimensional mathematical model of collec... propose onedimensional model collecting lympha... 0 1 1 0 0 0
18368 $A_{n}$-type surface singularity and nondispla... prove existence oneparameter family nondisplac... 0 0 1 0 0 0
18369 Cascade LSTM Based Visual-Inertial Navigation ... haptic feedback essential acquire immersive ex... 1 0 0 0 0 0
18370 Local Feature Descriptor Learning with Adaptiv... although recent progress deep neural network l... 1 0 0 1 0 0
18371 Unbounded cache model for online language mode... recently continuous cache models proposed exte... 1 0 0 0 0 0
18372 Finite-Range Coulomb Gas Models of Banded Rand... dyson demonstrated equivalence infiniterange c... 0 1 0 0 0 0
18373 Dual Loomis-Whitney inequalities via informati... establish lower bounds volume surface area geo... 1 0 0 0 0 0
18374 Cubic lead perovskite PbMoO3 with anomalous me... previously unreported pbbased perovskite pbmoo... 0 1 0 0 0 0
18375 On Long Memory Origins and Forecast Horizons long memory forecasting studies assume memory ... 0 0 1 0 0 0
18376 Detecting Disguised Plagiarism source code plagiarism detection problem addre... 1 0 0 0 0 0
18377 Stellar population synthesis based modelling o... early attempts apply asteroseismology study ga... 0 1 0 0 0 0
18378 EmbNum: Semantic labeling for numerical values... semantic labeling numerical values task assign... 0 0 0 1 0 0
18379 A Network Epidemic Model for Online Community ... statistical model assuming preferential attach... 1 0 0 1 0 0
18380 Descent and Galois theory for Hopf categories descent theory linear categories developed giv... 0 0 1 0 0 0
18381 On winning strategies for Banach-Mazur games give topological game theoretic definitions th... 0 0 1 0 0 0
18382 Dynamical instability of the electric transpor... theory influence thermal fluctuations electric... 0 1 0 0 0 0
18383 Controlling Multimode Optomechanical Interacti... demonstrate optomechanical interference multim... 0 1 0 0 0 0
18384 Online Adaptive Principal Component Analysis a... propose algorithms online principal component ... 1 0 0 1 0 0
18385 Diffusion MRI measurements in challenging head... crossterm spatiotemporal encoding xspen recent... 0 1 0 0 0 0
18386 Game-Theoretic Capital Asset Pricing in Contin... derive formulas performance capital assets con... 0 0 0 0 0 1
18387 Full Workspace Generation of Serial-link Manip... apart solving complicated problems require cer... 1 0 0 0 0 0
18388 Linear regression without correspondence article considers algorithmic statistical aspe... 1 0 1 1 0 0
18389 Toward sensitive document release with privacy... privacy become serious concern modern informat... 1 0 0 0 0 0
18390 Remarks on the Birch-Swinnerton-Dyer conjecture give brief description birchswinnertondyer con... 0 0 1 0 0 0
18391 Trajectory Optimization for Cooperative Dual-b... unmanned aerial vehicles uavs gained lot popul... 1 0 0 0 0 0
18392 A monad for full ground reference cells present denotational account dynamic allocatio... 1 0 1 0 0 0
18393 Learning Deep Visual Object Models From Noisy ... deep networks thrive trained large scale data ... 1 0 0 0 0 0
18394 Existence of either a periodic collisional orb... restricted threebody problem consecutive colli... 0 0 1 0 0 0
18395 Finding AND-OR Hierarchies in Workflow Nets paper presents notion andor reduction reduces ... 1 0 0 0 0 0
18396 Fusarium Damaged Kernels Detection Using Trans... present work shows application transfer learni... 0 0 0 1 0 0
18397 About simple variational splines from the Hami... paper study simple splines riemannian manifold... 0 0 1 0 0 0
18398 Adaptive Grasp Control through Multi-Modal Int... hand one complex important parts human body de... 1 0 0 0 0 0
18399 Generalization of Effective Conductance Centra... study popular centrality measure known effecti... 1 1 0 0 0 0
18400 Three-dimensional oscillatory magnetic reconne... detail dynamic evolution localised reconnectio... 0 1 0 0 0 0
18401 Limits of Risk Predictability in a Cascading A... risk analysis models systematically underestim... 1 1 0 0 0 0
18402 Self-contracted curves have finite length curve theta ito e metric space e equipped dist... 0 0 1 0 0 0
18403 Unsupervised robust nonparametric learning of ... consider learning fundamental properties commu... 1 0 0 1 0 0
18404 OPEB: Open Physical Environment Benchmark for ... artificial intelligence methods solve continuo... 1 0 0 0 0 0
18405 The First Measurement of the $2^{3}S_{1} \righ... workhorse atomic physics quantum electrodynami... 0 1 0 0 0 0
18406 WheelCon: A wheel control-based gaming platfor... feedback control theory extensively implemente... 0 0 0 0 1 0
18407 Depression and Self-Harm Risk Assessment in On... users suffering mental health conditions often... 1 0 0 0 0 0
18408 Quantum dilogarithm identities for the square ... famous pentagon identity quantum dilogarithms ... 0 0 1 0 0 0
18409 A Probabilistic Linear Genetic Programming wit... traditional linear genetic programming lgp alg... 1 0 0 1 0 0
18410 Trace-free ${\rm SL}(2,\mathbb{C})$-representa... given link lsubset representation pisltorm slm... 0 0 1 0 0 0
18411 Algorithms for Weighted Sums of Squares Decomp... wellknown every nonnegative univariate real po... 1 0 0 0 0 0
18412 The Calkin algebra is $\aleph_1$-universal discuss existence injectively universal calgeb... 0 0 1 0 0 0
18413 Learning Structured Semantic Embeddings for Vi... numerous embedding models recently explored in... 1 0 0 0 0 0
18414 Estimators for a Class of Bivariate Measures o... present paper propose study estimators wide cl... 0 0 1 1 0 0
18415 Variational treatment of electron-polyatomic m... complex kohn variational method electronpolyat... 0 1 0 0 0 0
18416 Geometry of quantum dynamics in infinite dimen... develop geometric approach quantum mechanics b... 0 0 1 0 0 0
18417 Canonical tilting relative generators given relatively projective birational morphis... 0 0 1 0 0 0
18418 Groupwise Structural Parcellation of the Corte... current theories hold brain function highly re... 0 0 0 1 0 0
18419 Modeling Biological Problems in Computer Scien... computer scientists working bioinformaticscomp... 1 0 0 0 0 0
18420 MEC: Memory-efficient Convolution for Deep Neu... convolution critical component modern deep neu... 1 0 0 0 0 0
18421 On age of 6070 Rheinland and 54827 (2001 NQ8) ... paper present results studying famous young pa... 0 1 0 0 0 0
18422 First-Order Reversal Curves of the Magnetostru... apply firstorder reversal curve forc method bo... 0 1 0 0 0 0
18423 Data Analytics on Online Labor Markets: Opport... datadriven economy led significant shortage da... 1 0 0 0 0 0
18424 Analyzing the Robustness of Nearest Neighbors ... motivated safetycritical applications testtime... 1 0 0 1 0 0
18425 Non Uniform On Chip Power Delivery Network Syn... paper proposed nonuniform power delivery netwo... 1 0 0 0 0 0
18426 Translating ceRNA susceptibilities into correl... competition bind micrornas induces effective p... 0 1 0 0 0 0
18427 Impact of energetic particle orbits on long ra... long range frequency chirping bernsteingreenek... 0 1 0 0 0 0
18428 An Executable Specification of Typing Rules fo... type inference application domain natural fit ... 1 0 0 0 0 0
18429 Seasonal Stochastic Volatility and the Samuels... introduce multifactor stochastic volatility mo... 0 0 0 0 0 1
18430 A Computational Model of a Single-Photon Avala... singlephoton avalanche diodes spad affordable ... 1 1 0 0 0 0
18431 On Certain Tilting Modules for SL2 give complete picture tensor product induced m... 0 0 1 0 0 0
18432 First-order Methods Almost Always Avoid Saddle... establish firstorder methods avoid saddle poin... 1 0 0 1 0 0
18433 Faster Algorithms for Computing Maximal 2-Conn... connectivity related concepts fundamental inte... 1 0 0 0 0 0
18434 Summable Reparameterizations of Wasserstein Cr... generative adversarial networks gans exciting ... 1 0 0 1 0 0
18435 Fingering instabilities and pattern formation ... study fingering instabilities pattern formatio... 0 1 0 0 0 0
18436 Fast Information-theoretic Bayesian Optimisation informationtheoretic bayesian optimisation tec... 0 0 0 1 0 0
18437 ExoMol molecular line lists XX: a comprehensiv... h ubiquitous important astronomical species wh... 0 1 0 0 0 0
18438 Robust and Sparse Regression in GLM by Stochas... generalized linear model glm plays key role re... 0 0 0 1 0 0
18439 A Hint-Based Technique for System Level Model-... test case prioritization tcp techniques aim pr... 1 0 0 0 0 0
18440 Control of birhythmicity: A self-feedback appr... birhythmicity occurs many natural artificial s... 0 1 0 0 0 0
18441 Forecasting the magnitude and onset of El Nino... el nino probably influential climate phenomeno... 0 1 0 0 0 0
18442 Weighted $1\times1$ cut-and-project sets in bo... recent results grepstad lev used show weighted... 0 0 1 0 0 0
18443 On Ordinal Invariants in Well Quasi Orders and... investigate ordinal invariants height length w... 0 0 1 0 0 0
18444 Indices in XML Databases xml becoming standard business information rep... 1 0 0 0 0 0
18445 Kernel theorems for modulation spaces deal kernel theorems modulation spaces complet... 0 0 1 0 0 0
18446 On the Performance of Network Parallel Trainin... artificial neural networks anns received incre... 1 0 0 1 0 0
18447 Fair Forests: Regularized Tree Induction to Mi... potential lack fairness outputs machine learni... 1 0 0 1 0 0
18448 Discretization of SU(2) and the Orthogonal Gro... vertices four dimensional cell form noncrystal... 0 0 1 0 0 0
18449 Raman spectra of crystalline secondary amides study singlecrystal raman spectra series cryst... 0 1 0 0 0 0
18450 Open-World Visual Recognition Using Knowledge ... realworld setting visual recognition systems b... 1 0 0 1 0 0
18451 Mass-Imbalanced Ionic Hubbard Chain repulsive hubbard model spinasymmetric hopping... 0 1 0 0 0 0
18452 Optical properties of Xe color centers in diamond optical properties color centers diamond subje... 0 1 0 0 0 0
18453 Julian Ernst Besag, 26 March 1945 -- 6 August ... julian besag outstanding statistical scientist... 0 0 0 1 0 0
18454 Wake fields in a rectangular dielectric-lined ... dielectric lined waveguides extensive study ac... 0 1 0 0 0 0
18455 Hyperfine Structure of the $B^3Π_1$ State and ... rotational hyperfine spectrum xsigma rightarro... 0 1 0 0 0 0
18456 Prevalence of DNSSEC for hospital websites in ... domain name system translates human friendly w... 1 0 0 0 0 0
18457 Mathematical analysis of plasmonic resonance f... article study plasmonic resonance infinite pho... 0 0 1 0 0 0
18458 Thermo-Optical Chaos and Direct Soliton Genera... investigate numerically experimentally effect ... 0 1 0 0 0 0
18459 Rigidity of closed metric measure spaces with ... show onedimensional circle case closed smooth ... 0 0 1 0 0 0
18460 Combining Agile with Traditional V Model for E... field software engineering many new archetypes... 1 0 0 0 0 0
18461 Histograms of Gaussian normal distribution for... feature descriptor provide information corresp... 1 0 0 0 0 0
18462 The temporalized Massey's method propose throughly investigate temporalized ver... 1 1 0 0 0 0
18463 Introduction to Nonnegative Matrix Factorization paper introduce provide short overview nonnega... 1 0 1 1 0 0
18464 Randomized Dynamic Mode Decomposition paper presents randomized algorithm computing ... 1 0 1 0 0 0
18465 On the convergence of a fully discrete scheme ... obtaining reliable numerical simulations turbu... 0 0 1 0 0 0
18466 Hardy-Sobolev-Maz'ya inequalities for higher o... using among things fourier analysis techniques... 0 0 1 0 0 0
18467 Smooth invariants of focus-focus singularities... study focusfocus singularities also known noda... 0 1 1 0 0 0
18468 A note about Euler's inequality and automated ... using implicit loci geogebra eulers rgeq r ine... 1 0 1 0 0 0
18469 The MUSE view of He 2-10: no AGN ionization bu... study physical dynamical properties ionized ga... 0 1 0 0 0 0
18470 Modeling Oral Multispecies Biofilm Recovery Af... recovery multispecies oral biofilms investigat... 0 0 0 0 1 0
18471 On constant multi-commodity flow-cut gaps for ... multicommodity flowcut gap fundamental paramet... 1 0 0 0 0 0
18472 Molecular Gas during the Post-Starburst Phase:... poststarbursts psbs candidate rapidly transiti... 0 1 0 0 0 0
18473 Bit-Reversible Version of Milne's Fourth-Order... point two milnes fourthorder integrators wells... 0 1 0 0 0 0
18474 Solvable Hydrodynamics of Quantum Integrable S... conventional theory hydrodynamics describes ev... 0 1 0 0 0 0
18475 Compressed sensing and optimal denoising of mo... consider problems compressed sensing optimal d... 1 0 1 1 0 0
18476 On minimax nonparametric estimation of signal ... problem nonparametric estimation signal gaussi... 0 0 1 1 0 0
18477 Implicit Bias of Gradient Descent on Linear Co... show gradient descent fullwidth linear convolu... 0 0 0 1 0 0
18478 Oxidation of clofibric acid in aqueous solutio... work study degradation clofibric acid cfa aque... 0 1 0 0 0 0
18479 Quenching current by flux-flow instability in ... stability quench one main issue pursued superc... 0 1 0 0 0 0
18480 New cardinality estimation algorithms for Hype... paper presents new methods estimate cardinalit... 1 0 0 0 0 0
18481 The EUSO@TurLab Project turlab facility laboratory equipped diameter d... 0 1 0 0 0 0
18482 A finite element method framework for modeling... electrical machines employing superconductors ... 0 1 0 0 0 0
18483 Triangular Decomposition of Matrices in a Domain deterministic recursive algorithms computation... 1 0 0 0 0 0
18484 Practical Bayesian Optimization for Transporta... provide method solve optimization problem obje... 0 0 0 1 0 0
18485 The Ising distribution as a latent variable model shown ising distribution treated latent variab... 0 0 0 1 1 0
18486 Applying DCOP to User Association Problem in H... multiagent systems mas able characterize behav... 1 0 0 0 0 0
18487 Linear growth of streaming instability in pres... streaming instability powerful mechanism conce... 0 1 0 0 0 0
18488 On the Gevrey regularity for Sums of Squares o... microlocal gevrey regularity class sums square... 0 0 1 0 0 0
18489 Structure theorems for star-commuting power pa... give new formulation proof theorem halmos wall... 0 0 1 0 0 0
18490 On free Gelfand--Dorfman--Novikov superalgebra... construct linear basis free gdn superalgebra f... 0 0 1 0 0 0
18491 An inexact iterative Bregman method for optima... article investigate inexact iterative regulari... 0 0 1 0 0 0
18492 Mixture Models in Astronomy mixture models combine multiple components sin... 0 1 0 1 0 0
18493 Safe Medicine Recommendation via Medical Knowl... existing medicine recommendation systems mainl... 1 0 0 0 0 0
18494 Keeping the Bad Guys Out: Protecting and Vacci... deep neural networks dnns achieved great succe... 1 0 0 0 0 0
18495 Numerical Simulation of Bloch Equations for Dy... magnetic resonance imaging mri widely applied ... 1 0 1 0 0 0
18496 End-to-End Waveform Utterance Enhancement for ... speech enhancement model used map noisy speech... 1 0 0 1 0 0
18497 The connectivity of graphs of graphs with self... double edge swaps transform one graph another ... 1 1 1 0 0 0
18498 The role of the background in past and future ... background played important role xray missions... 0 1 0 0 0 0
18499 Securing Manufacturing Intelligence for the In... widespread interest emerging area predictive a... 1 0 0 0 0 0
18500 Boson-vortex duality in compressible spin-orbi... using dimensional bosonvortex duality nonlinea... 0 1 0 0 0 0
18501 Communicating Correlated Sources Over an Inter... new coding technique based textitfixed blockle... 1 0 0 0 0 0
18502 Simulating polaron biophysics with Rydberg atoms transport excitations along proteins formulate... 0 1 0 0 0 0
18503 Solubility limit of methyl red and methylene b... solubility dyes amphiphilic association struct... 0 1 0 0 0 0
18504 Towards Visual Ego-motion Learning in Robots many modelbased visual odometry vo algorithms ... 1 0 0 0 0 0
18505 Sequential Prediction of Social Media Populari... prediction popularity profound impact social m... 1 0 0 0 0 0
18506 Key Management and Learning based Two Level Da... smart grid smart meters numerous control monit... 1 0 0 0 0 0
18507 A numerical study of the homogeneous elliptic ... consider homogeneous equation mathcal u mathca... 0 0 1 0 0 0
18508 Effects of soft interactions and bound mobilit... crowded environments modify diffusion macromol... 0 1 0 0 0 0
18509 Thermodynamics of a Quantum Ising system coupl... study effect coupling spin bath environment sy... 0 1 0 0 0 0
18510 Observation of a Lamb band gap in a polymer wa... quest large low frequency band gaps one princi... 0 1 0 0 0 0
18511 Search for nucleon decays with EXO-200 search instability nucleons bound xe nuclei re... 0 1 0 0 0 0
18512 The multiplicity of massive stars: a 2016 view massive stars like company provide brief overv... 0 1 0 0 0 0
18513 Principal Eigenvalue of Mixed Problem for the ... analyze behavior eigenvalues following non loc... 0 0 1 0 0 0
18514 Two-dimensional Bose and Fermi gases beyond we... using formalism based twobody smatrix study tw... 0 1 0 0 0 0
18515 Anisotropy of magnetic interactions and symmet... srruo best candidate spintriplet superconducti... 0 1 0 0 0 0
18516 Loss of Regularity of Solutions of the Lighthi... concerned regularity solutions lighthill probl... 0 0 1 0 0 0
18517 Stage 4 validation of the Satellite Image Auto... european space agency esa defines earth observ... 1 0 0 0 0 0
18518 Performance Analysis of MEC Approach for Haplo... minimum error correction mec approach used met... 0 0 0 0 1 0
18519 Opinion Recommendation using Neural Memory Model present opinion recommendation novel task join... 1 0 0 0 0 0
18520 Distributed Optimization of Multi-Beam Directi... formulate optimization problem maximizing data... 0 0 1 0 0 0
18521 Mean conservation for density estimation via d... propose boundary conditions diffusion equation... 0 0 1 0 0 0
18522 Asymptotic properties of maximum likelihood es... consider stable coxingersollross process drive... 0 0 1 1 0 0
18523 Indoor Office Wideband Penetration Loss Measur... paper presents millimeter wave mmwave penetrat... 1 0 0 0 0 0
18524 The SPEDE spectrometer electron spectrometer spede developed employed... 0 1 0 0 0 0
18525 Global Stabilization of Triangular Systems wit... control design approach developed general clas... 1 0 1 0 0 0
18526 Multifractal Analysis of Pulsar Timing Residua... introduce pipeline including multifractal detr... 0 1 0 0 0 0
18527 Recovery of Bennu's Orientation for the OSIRIS... goal osirisrex mission return sample asteroid ... 0 1 0 0 0 0
18528 Energy Scale of Lorentz Violation in Rainbow G... modify standard relativistic dispersion relati... 0 1 0 0 0 0
18529 How to construct wavelets on local fields of p... present algorithm construction step wavelets l... 0 0 1 0 0 0
18530 Fates of the dense cores formed by fragmentati... fragmentation filaments dense cores thought im... 0 1 0 0 0 0
18531 Inference Related to Common Breaks in a Multiv... transpires recent research temperatures radiat... 0 0 0 1 0 0
18532 How to Stop Consensus Algorithms, locally? paper studies problems locally stopping distri... 1 0 0 0 0 0
18533 Seoul National University Camera II (SNUCAM-II... present characteristics performance new ccd ca... 0 1 0 0 0 0
18534 A Bridge Between Hyperparameter Optimization a... consider class nested optimization problems in... 1 0 0 1 0 0
18535 Accelerating Prototype-Based Drug Discovery us... designing new drug lengthy expensive process s... 0 0 0 1 0 0
18536 Convex and non-convex regularization methods f... paper deals feature selection procedures spati... 0 0 1 1 0 0
18537 Glass Transition in Supercooled Liquids with M... origins rapid dynamical slow glass forming liq... 0 1 0 0 0 0
18538 Natural and Artificial Spectral Edges in Exopl... technological civilizations may rely upon larg... 0 1 0 0 0 0
18539 The damage inflicted by a computer virus: A ne... paper addressed issue estimating damage caused... 1 1 0 0 0 0
18540 Deep Fault Analysis and Subset Selection in So... nonavailability reliable sustainable electric ... 1 0 0 1 0 0
18541 Hirzebruch L-polynomials and multiple zeta values express coefficients hirzebruch lpolynomials t... 0 0 1 0 0 0
18542 On Nontrivial Zeros of Riemann Zeta Function let xi function relating riemann zeta function... 0 0 1 0 0 0
18543 The reliability of a nutritional meta-analysis... background many researchers studied relationsh... 0 0 0 1 0 0
18544 Composite Fermions on a Torus achieve explicit construction lowest landau le... 0 1 0 0 0 0
18545 ROCKER: A Refinement Operator for Key Discovery linked data principles provide decentral appro... 1 0 0 0 0 0
18546 Double-slit Fraunhofer pattern as the signatur... apply recently developed formalism generalized... 0 1 0 0 0 0
18547 A class of differential quadratic algebras and... study multiparametric family quadratic algebra... 0 0 1 0 0 0
18548 Introduction to compact and discrete quantum g... notes introductory lectures graduate school to... 0 0 1 0 0 0
18549 An optimization approach to adaptive multi-dim... firms keep capital offer sufficient protection... 0 0 0 0 0 1
18550 Low Energy Phonons in $Bi_2Sr_2CaCu_2O_{8+δ}$ ... angleresolved photoemission arpes experiments ... 0 1 0 0 0 0
18551 Spectral properties of complex Airy operator o... prove theorem completeness root functions schr... 0 0 1 0 0 0
18552 Webs and $q$-Howe dualities in types $\mathbf{... define web categories describing intertwiners ... 0 0 1 0 0 0
18553 Structural Controllability of Linear Time-inva... one version concept structural controllability... 1 0 0 0 0 0
18554 Structure of martingale transports in finite d... study structure martingale transports finite d... 0 0 1 0 0 0
18555 Simplifying branched covering surface-knots by... branched covering surfaceknot surfaceknot form... 0 0 1 0 0 0
18556 $K$-surfaces with free boundaries wellknown question classical differential geom... 0 0 1 0 0 0
18557 The graphs of join-semilattices and the shape ... attach langle vee ranglesemilattice graph bold... 0 0 1 0 0 0
18558 Optimal Quasi-Gray Codes: The Alphabet Matters quasigray code dimension n length ell alphabet... 1 0 0 0 0 0
18559 Revisiting the pre-main-sequence evolution of ... recent theoretical work shown premainsequence ... 0 1 0 0 0 0
18560 Surface-assisted carrier excitation in plasmon... present quantummechanical model surfaceassiste... 0 1 0 0 0 0
18561 Existence of global weak solutions to the kine... explore existence global weak solutions hookea... 0 0 1 0 0 0
18562 Tight Bounds for Online Coloring of Basic Grap... resolve number longstanding open problems onli... 1 0 0 0 0 0
18563 Comparison of PCA with ICA from data distribut... performed empirical comparison ica pca algorit... 0 0 0 1 0 0
18564 The Special Polarization Characteristic Featur... band structure si inverse diamond structure wh... 0 1 0 0 0 0
18565 Toward Finding Latent Cities with Non-Negative... last decade digital footprints used cluster po... 1 0 0 0 0 0
18566 Time-Sensitive Networking for robotics argue timesensitive networking tsn become de f... 1 0 0 0 0 0
18567 Active Orthogonal Matching Pursuit for Sparse ... sparse subspace clustering ssc stateoftheart m... 1 0 0 1 0 0
18568 Experimental and theoretical study of AC losse... measurements ac losses htstape placed two bulk... 0 1 0 0 0 0
18569 Robustness of semiparametric efficiency in nea... examine performance efficient aipw estimators ... 0 0 1 1 0 0
18570 A* CCG Parsing with a Supertag and Dependency ... propose new ccg parsing model probability tree... 1 0 0 0 0 0
18571 Numerical studies of Thompson's group F and re... developed polynomialtime algorithms generate t... 0 0 1 0 0 0
18572 The modularity of action and perception revisi... assumption action perception investigated inde... 0 0 0 0 1 0
18573 Clique-based Method for Social Network Clustering article develop cliquebased method social netw... 1 0 0 1 0 0
18574 Fermionic Matrix Product States and One-Dimens... extend formalism matrix product states mps des... 0 1 0 0 0 0
18575 How tracer particles sample the complexity of ... roller coaster ride turbulence tracer particle... 0 1 0 0 0 0
18576 Rare Nash Equilibria and the Price of Anarchy ... study static game played finite number agents ... 1 0 1 0 0 0
18577 Componentwise different tail solutions for biv... study bivariate stochastic recurrence equation... 0 0 1 1 0 0
18578 Partial constraint singularities in elastic rods present unified classical treatment partially ... 0 1 0 0 0 0
18579 Personalization in Goal-Oriented Dialog main goal modeling human conversation create a... 1 0 0 0 0 0
18580 Maximum Margin Principal Components principal component analysis pca successful di... 1 0 0 1 0 0
18581 A New self-propelled magnetic bearing with hel... work design proposed active permanent magnet b... 0 1 0 0 0 0
18582 A-Fast-RCNN: Hard Positive Generation via Adve... learn object detector invariant occlusions def... 1 0 0 0 0 0
18583 Non-thermalization in trapped atomic ion spin ... linear arrays trapped laser cooled atomic ions... 0 1 0 0 0 0
18584 Generalized Uniformity Testing work revisit problem uniformity testing discre... 1 0 1 1 0 0
18585 Refraction in exoplanet atmospheres: Photometr... refraction deflects photons pass atmospheres a... 0 1 0 0 0 0
18586 Balancing Efficiency and Coverage in Human-Rob... describe multiphased wizardofoz approach colle... 1 0 0 0 0 0
18587 Reinforcement Learning Based Argument Componen... argument component detection acd important sub... 1 0 0 0 0 0
18588 VUNet: Dynamic Scene View Synthesis for Traver... present vunet novel viewvu synthesis method mo... 1 0 0 0 0 0
18589 Bayesian hypothesis tests with diffuse priors:... introduce new class priors bayesian hypothesis... 0 0 1 1 0 0
18590 On a Novel Speech Representation Using Multita... paper novel multitaper modified group delay fu... 1 0 0 0 0 0
18591 Persistent Flows and Non-Reciprocal Interactio... paper studies deterministic consensus networks... 1 0 0 0 0 0
18592 Linking Fluid and Kinetic Scales in Solar Wind... investigate possible links largescale smallsca... 0 1 0 0 0 0
18593 Thresholds For Detecting An Anomalous Path Fro... consider searching trail maze composite hypoth... 0 0 1 1 0 0
18594 On the topology of real Bott manifolds main aim article give necessary sufficient con... 0 0 1 0 0 0
18595 Relative Error Tensor Low Rank Approximation consider relative error low rank approximation... 1 0 0 0 0 0
18596 Bayesian Boolean Matrix Factorisation boolean matrix factorisation aims decompose bi... 1 0 0 1 0 0
18597 Global existence and convergence of $Q$-curvat... using negative gradient flow approach generali... 0 0 1 0 0 0
18598 Group Embeddings with Algorithmic Properties show every countable group h solvable word pro... 0 0 1 0 0 0
18599 General purpose graphics-processing-unit imple... topological defects unavoidably form symmetry ... 0 1 0 0 0 0
18600 A Consistent Bayesian Formulation for Stochast... formulate present numerical method solving inv... 0 0 1 1 0 0
18601 Coherent State Mapping Ring-Polymer Molecular ... introduce coherent state mapping ringpolymer m... 0 1 0 0 0 0
18602 Stochastic Gradient Descent in Continuous Time... stochastic gradient descent continuous time sg... 0 0 1 1 0 0
18603 KMS states on $C^*$-algebras associated to a f... consider family commuting local homeomorphisms... 0 0 1 0 0 0
18604 Multi-Labelled Value Networks for Computer Go paper proposes new approach novel value networ... 1 0 0 0 0 0
18605 Lifting high-dimensional nonlinear models with... study problem recovering structured signal mat... 0 0 0 1 0 0
18606 Functional Conceptual Substratum as a New Cogn... describe new cognitive ability ie functional c... 0 0 1 0 0 0
18607 Applying Gromov's Amenable Localization to Geo... let compact connected smooth riemannian nmanif... 0 0 1 0 0 0
18608 Modeling the Ellsberg Paradox by Argument Stre... present formal measure argument strength combi... 1 0 1 0 0 0
18609 Correction to the paper "Some remarks on Davie... property proposition paper remarks davies uniq... 0 0 1 0 0 0
18610 An Estimation and Analysis Framework for the R... rasch model widely used item response analysis... 0 0 0 1 0 0
18611 Do planets remember how they formed? one directly observable features transiting mu... 0 1 0 0 0 0
18612 Demarcating circulation regimes of synchronous... investigate atmospheric dynamics terrestrial p... 0 1 0 0 0 0
18613 Versatile Large-Area Custom-Feature van der Wa... focus applied research topological insulators ... 0 1 0 0 0 0
18614 Sharp off-diagonal weighted norm estimates for... prove ple qinfty qpgeq p pqgeq q fracpfracpfra... 0 0 1 0 0 0
18615 An Automated Scalable Framework for Distributi... low frequency array lofar radio telescope inte... 0 1 0 0 0 0
18616 Learning multiple visual domains with residual... growing interest learning data representations... 1 0 0 1 0 0
18617 Cosmic quantum optical probing of quantum grav... consider nonunitary quantum dynamics neutral m... 0 1 0 0 0 0
18618 Combinatorial Miller-Hagberg Algorithm for Ran... propose slightly revised millerhagberg mh algo... 1 0 0 0 0 0
18619 Topological Insulators in Random Lattices understanding topological insulators based und... 0 1 0 0 0 0
18620 DiGrad: Multi-Task Reinforcement Learning with... reinforcement learning algorithms inefficient ... 1 0 0 1 0 0
18621 Narratives of Quantum Theory in the Age of Qua... quantum technologies presented public without ... 0 1 0 0 0 0
18622 Is Information in the Brain Represented in Con... question continuousversusdiscrete information ... 0 0 0 0 1 0
18623 Real-Time Background Subtraction Using Adaptiv... backgroundforeground classification fundamenta... 1 0 0 1 0 0
18624 Multilevel nested simulation for efficient ris... investigate problem computing nested expectati... 0 0 0 0 0 1
18625 Construction of a relativistic Ornstein-Uhlenb... based version dudleys wiener process mass shel... 0 0 1 0 0 0
18626 Safe Trajectory Synthesis for Autonomous Drivi... path planning autonomous vehicles arbitrary en... 1 0 0 0 0 0
18627 A Data and Model-Parallel, Distributed and Sca... training deep networks expensive timeconsuming... 1 0 0 1 0 0
18628 ICLabel: An automated electroencephalographic ... electroencephalogram eeg provides noninvasive ... 1 0 0 1 0 0
18629 Inference on a New Class of Sample Average Tre... derive new variance formulas inference general... 0 0 1 1 0 0
18630 A split step Fourier/discontinuous Galerkin sc... paper propose method solve kadomtsevpetviashvi... 0 1 1 0 0 0
18631 Dense Transformer Networks key idea current deep learning methods dense p... 1 0 0 1 0 0
18632 Tetragonal CH3NH3PbI3 Is Ferroelectric halide perovskite hap semiconductors revolutio... 0 1 0 0 0 0
18633 A Simple and Efficient MapReduce Algorithm for... data cube materialization classical database o... 1 0 0 0 0 0
18634 Group Invariance, Stability to Deformations, a... success deep convolutional architectures often... 1 0 0 1 0 0
18635 Completion of High Order Tensor Data with Miss... paper aim completion problem high order tensor... 1 0 0 0 0 0
18636 On the inner products of some Deligne--Lusztig... paper introduce family delignelusztig type var... 0 0 1 0 0 0
18637 An invariant for embedded Fano manifolds cover... embedded fano manifold x introduce new invaria... 0 0 1 0 0 0
18638 Delivery Latency Trade-Offs of Heterogeneous C... fog radio access network fran cellular wireles... 1 0 0 0 0 0
18639 Leaking Uninitialized Secure Enclave Memory vi... intel software guard extensions sgx aims provi... 1 0 0 0 0 0
18640 Asymptotic and numerical analysis of a stochas... volume transmission important neural communica... 0 0 0 0 1 0
18641 Mixtures of Hidden Truncation Hyperbolic Facto... mixture factor analyzers model first introduce... 0 0 0 1 0 0
18642 Representations on Partially Holomorphic Cohom... semiexpository update rewrite ams ams memoir d... 0 0 1 0 0 0
18643 Underground tests of quantum mechanics. Whispe... performing xrays measurements cosmic silence u... 0 1 0 0 0 0
18644 Implications for Post-Processing Nucleosynthes... investigate corecollapse supernova ccsn nucleo... 0 1 0 0 0 0
18645 High Performance Parallel Image Reconstruction... many technologies developed help improve spati... 0 1 0 0 0 0
18646 Approximation of Bandwidth for the Interactive... interactive session videoondemand vod streamin... 1 0 0 0 0 0
18647 Twisted Recurrence via Polynomial Walks paper show polynomial walks used establish twi... 0 0 1 0 0 0
18648 Well-posedness and scattering for the Boltzman... prove global existence unique mild solution ca... 0 0 1 0 0 0
18649 Wikipedia in academia as a teaching tool: from... study concerned active use wikipedia teaching ... 1 0 0 0 0 0
18650 A trans-disciplinary review of deep learning r... deep learning dl newgeneration artificial neur... 1 0 0 1 0 0
18651 A new NS3 Implementation of CCNx 1.0 Protocol ccnssim project open source implementation ccn... 1 0 0 0 0 0
18652 MultiRefactor: Automated Refactoring To Improv... paper new approach proposed automated software... 1 0 0 0 0 0
18653 Learning Postural Synergies for Categorical Gr... every time person encounters object given degr... 1 0 0 0 0 0
18654 Perturbations of self-adjoint operators in sem... paper prove analogue katorosenblum theorem sem... 0 0 1 0 0 0
18655 Dust radiative transfer modelling of the infra... peculiar infrared ringlike structure discovere... 0 1 0 0 0 0
18656 Application of transfer matrix and transfer fu... question suitability transfer matrix descripti... 0 1 0 0 0 0
18657 Discretization-free Knowledge Gradient Methods... paper studies bayesian ranking selection rs pr... 1 0 1 1 0 0
18658 Measuring the Robustness of Graph Properties paper propose perturbation framework measure r... 1 0 0 1 0 0
18659 Better Software Analytics via "DUO": Data Mini... paper claims new field empirical software engi... 1 0 0 0 0 0
18660 Lesion detection and Grading of Diabetic Retin... propose automatic diabetic retinopathy dr anal... 1 0 0 0 0 0
18661 DRYVR:Data-driven verification and composition... present dryvr framework verifying hybrid contr... 1 0 0 0 0 0
18662 Deep Reinforcement Learning for Programming La... novice programmers often struggle formal synta... 1 0 0 0 0 0
18663 Dispersionless and multicomponent BKP hierarch... article construct additional perturbative quan... 0 1 1 0 0 0
18664 A Sampling Framework for Solving Physics-drive... partial differential equations central describ... 1 0 1 0 0 0
18665 An Application of $h$-principle to Manifold Ca... manifold calculus form functor calculus analyz... 0 0 1 0 0 0
18666 Grasping Unknown Objects in Clutter by Superqu... paper quick efficient method presented graspin... 1 0 0 0 0 0
18667 Learning to Play with Intrinsically-Motivated ... infants experts playing amazing ability genera... 0 0 0 1 0 0
18668 $\ell_1$-minimization method for link flow cor... computational method based ellminimization pro... 1 1 0 0 0 0
18669 Current Flow Group Closeness Centrality for Co... current flow closeness centrality cfcc better ... 1 0 0 0 0 0
18670 Visualization of Constraint Handling Rules: Se... work paper presents animation extension chrvis... 1 0 0 0 0 0
18671 Simplified Energy Landscape for Modularity Usi... networks capture pairwise interactions entitie... 0 0 1 1 0 0
18672 A Hard Look at the Neutron Stars and Accretion... present emphnustar observations neutron star n... 0 1 0 0 0 0
18673 Approximating Weighted Duo-Preservation in Com... motivated comparative genomics chen et al intr... 1 0 0 0 0 0
18674 On the virtual singular braid monoid study algebraic structures virtual singular br... 0 0 1 0 0 0
18675 Discrete Games in Endogenous Networks: Equilib... games friendship links behaviors propose kplay... 1 1 0 0 0 0
18676 Evaluating regulatory reform of network indust... proxies regulatory reforms based categorical v... 0 0 0 0 0 1
18677 Theory of ground states for classical Heisenbe... apply theory ground states classical finite he... 0 1 0 0 0 0
18678 Relative Property (T) for Nilpotent Subgroups show relative property abelianization nilpoten... 0 0 1 0 0 0
18679 Discriminant analysis in small and large dimen... study distributional properties linear discrim... 0 0 1 1 0 0
18680 Sparse Bayesian Inference for Dense Semantic M... despite impressive advances simultaneous local... 1 0 0 0 0 0
18681 Singularities and Semistable Degenerations for... overview recent work defining studying normal ... 0 0 1 0 0 0
18682 One-step Local M-estimator for Integrated Jump... paper robust nonparametric estimators instead ... 0 0 1 1 0 0
18683 Python Open Source Waveform Extractor (POWER):... numerical simulations einsteins field equation... 1 1 0 0 0 0
18684 Uniform confidence bands for nonparametric err... paper develops method construct uniform confid... 0 0 1 1 0 0
18685 Unconventional superconductivity in the BiS$_2... investigate superconductinggap anisotropy one ... 0 1 0 0 0 0
18686 Low noise sensitivity analysis of Lq-minimizat... class lqregularized least squares lqls conside... 0 0 1 1 0 0
18687 Robust Transceiver Design Based on Interferenc... paper firstly exploit interuser interference i... 1 0 0 0 0 0
18688 Machine learning quantum mechanics: solving qu... inspired recent work carleo troyer apply machi... 0 1 0 0 0 0
18689 Scale-free networks are rare central claim modern network science realworld... 1 0 0 1 1 0
18690 Enlargeability, foliations, and positive scala... extend deep important results lichnerowicz con... 0 0 1 0 0 0
18691 A simple mathematical model for unemployment: ... propose simple mathematical model unemployment... 0 0 0 0 0 1
18692 Interpreting Deep Neural Networks Through Vari... success deep neural networks dnns wellestablis... 1 0 0 1 0 0
18693 Conformality of $1/N$ corrections in SYK-like ... sachdevyekitaev quantum mechanical model n maj... 0 1 0 0 0 0
18694 Segal-type models of higher categories higher category theory exceedingly active area... 0 0 1 0 0 0
18695 Low-Mass Dark Matter Search with CDMSlite supercdms experiment designed directly detect ... 0 1 0 0 0 0
18696 Gravity with free initial conditions: a soluti... standard general relativity universe cannot st... 0 1 0 0 0 0
18697 Gradual Learning of Recurrent Neural Networks recurrent neural networks rnns achieve stateof... 1 0 0 1 0 0
18698 Borel subsets of the real line and continuous ... study classes borel subsets real line mathbbr ... 0 0 1 0 0 0
18699 Pairing from dynamically screened Coulomb repu... recently prakash et al discovered bulk superco... 0 1 0 0 0 0
18700 Calabi-Yau metrics on canonical bundles of com... present paper provide description complete cal... 0 0 1 0 0 0
18701 The ratio of normalizing constants for Bayesia... many graphical gaussian selection methods baye... 0 0 1 1 0 0
18702 Angiogenic Factors produced by Hypoxic Cells a... angiogenesis growth new blood vessels preexist... 0 0 0 0 1 0
18703 Henri Bénard: Thermal convection and vortex sh... present article work henri bnard french physic... 0 1 0 0 0 0
18704 Surjective H-Colouring: New Hardness Results homomorphism graph g graph h vertex mapping f ... 1 0 1 0 0 0
18705 Subband adaptive filter trained by differentia... normalized subband adaptive filter nsaf widely... 1 0 0 0 0 0
18706 Distributionally Robust Games: f-Divergence an... paper introduce novel framework distributional... 1 0 1 0 0 0
18707 Modeling and Reasoning About Wireless Networks... propose graphbased process calculus modeling r... 1 0 0 0 0 0
18708 Weyl's law on $RCD^*(K,N)$ metric measure spaces paper prove weyls law asymptotic formula diric... 0 0 1 0 0 0
18709 The area of the Mandelbrot set and Zagier's co... prove zagiers conjecture regarding adic valuat... 0 0 1 0 0 0
18710 Accelerating Cross-Validation in Multinomial L... develop approximate formula evaluating crossva... 0 1 0 1 0 0
18711 Realizing an optimization approach inspired fr... objective paper introduce artificial intellige... 1 0 1 0 0 0
18712 Catalyst design using actively learned machine... conventional chemisorption model dband center ... 0 1 0 1 0 0
18713 Clustering with Temporal Constraints on Spatio... extracting significant places places interest ... 0 0 0 1 0 0
18714 The maximum number of zeros of $r(z) - \overli... generalizing several previous results literatu... 0 0 1 0 0 0
18715 High Luminosity Large Hadron Collider HL-LHC hllhc federates efforts rd large international... 0 1 0 0 0 0
18716 Adversarial Discriminative Sim-to-real Transfe... various approaches proposed learn visuomotor p... 1 0 0 0 0 0
18717 Algebraic Bethe ansatz for the trigonometric s... derivation generating function gaudin hamilton... 0 1 0 0 0 0
18718 Marked Temporal Dynamics Modeling based on Rec... witnessing increasing availability event strea... 1 0 0 0 0 0
18719 A Bayesian framework for distributed estimatio... paper consider network agents monitoring spati... 1 0 1 0 0 0
18720 Rigidity of branching microstructures in shape... analyze generic sequences geometrically linear... 0 0 1 0 0 0
18721 Study and Observation of the Variation of Accu... machine learning qualifies computers assimilat... 0 0 0 1 0 0
18722 Network Classification in Temporal Networks Us... network classification variety applications de... 1 0 0 0 0 0
18723 The strength of Ramsey's theorem for pairs and... paper show mathrmrtmathsfwkl piconservative ex... 0 0 1 0 0 0
18724 Joint Power Allocation and Beamforming for Ene... paper considers joint design user power alloca... 1 0 0 0 0 0
18725 Forecasting Internally Displaced Population Mi... armed conflict led unprecedented number intern... 0 0 0 1 0 0
18726 Entropy? Honest! deconstruct reasoned way reconstruct concept e... 0 1 0 0 0 0
18727 Prior Convictions: Black-Box Adversarial Attac... study problem generating adversarial examples ... 0 0 0 1 0 0
18728 A Dynamic Model of Central Counterparty Risk introduce dynamic model default waterfall deri... 0 0 0 0 0 1
18729 Half-Duplex Base Station with Adaptive Schedul... paper propose novel receptiontransmission sche... 1 0 0 0 0 0
18730 HAT-P-26b: A Neptune-Mass Exoplanet with a Wel... correlation giantplanet mass atmospheric heavy... 0 1 0 0 0 0
18731 Robust Localization Using Range Measurements w... cooperative geolocation attracted significant ... 0 0 0 1 0 0
18732 Intuitionistic Non-Normal Modal Logics: A gene... define family intuitionistic nonnormal modal l... 1 0 0 0 0 0
18733 Externalities in Socially-Based Resource Shari... paper investigates impact link formation pair ... 1 0 0 0 0 0
18734 Training Neural Networks as Learning Data-adap... consider problem given data pair mathbfx mathb... 1 0 1 1 0 0
18735 On utility maximization without passing by the... treat utility maximization terminal wealth age... 0 0 1 0 0 0
18736 Stochastic Generative Hashing learningbased binary hashing become powerful p... 1 0 0 1 0 0
18737 Nonlinear learning and learning advantages in ... idea incompetence learning adaptation function... 0 0 0 0 1 0
18738 Information-theoretic Limits for Community Det... analyze informationtheoretic limits recovery n... 1 0 0 1 0 0
18739 Proofs of life: molecular-biology reasoning si... axiomatize molecularbiology reasoning style ve... 0 0 0 0 1 0
18740 Beyond recursion operators briefly recall history nijenhuis torsion tenso... 0 0 1 0 0 0
18741 On Classical Integrability of the Hydrodynamic... recently hydrodynamic description local equili... 0 1 0 0 0 0
18742 Transition to turbulence when the Tollmien-Sch... plane poiseuille flow pressure driven flow par... 0 1 0 0 0 0
18743 Interactive Exploration and Discovery of Scien... exponentially growing number scientific papers... 1 0 0 0 0 0
18744 Improving phase II oncology trials using best ... many phase ii trials solid tumours patients as... 0 0 0 1 0 0
18745 Evans-Selberg potential on planar domains provide explicit formulas evans kernels evanss... 0 0 1 0 0 0
18746 Bridging the Gap Between Computational Photogr... current stateoftheart image restoration enhanc... 1 0 0 0 0 0
18747 On some conjectures of Samuels and Feige let mu ge dotsc ge mun mu dotsm mun let x dots... 0 0 1 0 0 0
18748 Adaptive Behavior Generation for Autonomous Dr... making right decision traffic challenging task... 1 0 0 1 0 0
18749 Sequential Neural Likelihood: Fast Likelihood-... present sequential neural likelihood snl new m... 0 0 0 1 0 0
18750 Creativity: Generating Diverse Questions using... generating diverse questions given images impo... 1 0 0 0 0 0
18751 Cooling dynamics of a single trapped ion via e... demonstrated sympathetic cooling single ion bu... 0 1 0 0 0 0
18752 Modulational instability in the full-dispersio... determine stability instability sufficiently s... 0 1 1 0 0 0
18753 Evaluating and Modelling Hanabi-Playing Agents agent modelling involves considering agents be... 1 0 0 0 0 0
18754 Rank-related dimension bounds for subspaces of... let q power prime let v vector space finite di... 0 0 1 0 0 0
18755 Multi-objective optimization to explicitly acc... bayesian networks widely used last decades man... 0 0 0 1 0 0
18756 Simultaneous Localization and Layout Model Sel... paper demonstrate manhattan structure exploite... 1 0 0 0 0 0
18757 Robust method for finding sparse solutions to ... analyzed performance biologically inspired alg... 1 0 0 1 0 0
18758 Humanoid Robot-Application and Influence application humanoid robots common field healt... 1 0 0 0 0 0
18759 Onsager's Conjecture for the Incompressible Eu... goal note show also bounded domain omega subse... 0 1 1 0 0 0
18760 Fuzzy logic based approaches for gene regulato... rapid advancement highthroughput techniques fu... 0 0 0 0 1 0
18761 Instrumentation for nuclear magnetic resonance... review instrumentation nuclear magnetic resona... 0 1 0 0 0 0
18762 Countable dense homogeneity and the Cantor set shown ch implies existence compact hausdorff s... 0 0 1 0 0 0
18763 Dimension Estimation Using Random Connection M... information intrinsic dimension crucial perfor... 0 0 1 1 0 0
18764 Optimal projection of observations in a Bayesi... optimal dimensionality reduction methods propo... 0 0 1 1 0 0
18765 Notes on the Multiplicative Ergodic Theorem oseledets multiplicative ergodic theorem basic... 0 0 1 0 0 0
18766 Targeted Learning with Daily EHR Data electronic health records ehr data provide cos... 0 0 0 1 0 0
18767 Stripe-Based Fragility Analysis of Concrete Br... framework generation bridgespecific fragility ... 0 0 0 1 0 0
18768 Accountability of AI Under the Law: The Role o... ubiquity systems using artificial intelligence... 1 0 0 1 0 0
18769 Frequency-oriented sub-sampling by photonic Fo... subsampling acquire directly passband within b... 0 1 0 0 0 0
18770 A moment map picture of relative balanced metr... give moment map interpretation relatively bala... 0 0 1 0 0 0
18771 Traffic models with adversarial vehicle behaviour examine impact adversarial actions vehicles tr... 1 0 0 0 0 0
18772 Robust Cooperative Manipulation without Force/... paper presents two novel control methodologies... 1 0 0 0 0 0
18773 Conditionally conjugate mean-field variational... variational bayes vb common strategy approxima... 0 0 1 1 0 0
18774 A $\frac{3}{2}$-Approximation Algorithm for Tr... weighted tree augmentation problem wtap fundam... 1 0 0 0 0 0
18775 On Identifying Disaster-Related Tweets: Matchi... social media tweets emerging platforms contrib... 1 0 0 0 0 0
18776 Self-Stabilizing Disconnected Components Detec... deal problem maintaining shortestpath tree roo... 1 0 0 0 0 0
18777 Optimizing wearable assistive devices with neu... coupling human movement dynamics function desi... 1 0 0 0 0 0
18778 Preferential placement for community structure... various models recently proposed reflect predi... 1 1 0 0 0 0
18779 Lower Bounds on Regret for Noisy Gaussian Proc... paper consider problem sequentially optimizing... 1 0 0 1 0 0
18780 Hirota bilinear equations for Painlevé transce... present observations taufunction fourth painle... 0 1 1 0 0 0
18781 Gradient-based Representational Similarity Ana... representational similarity analysis rsa aims ... 0 0 0 1 1 0
18782 Diffeomorphic random sampling using optimal in... article explore algorithm diffeomorphic random... 0 0 1 1 0 0
18783 On approximations by trigonometric polynomials... paper give characterization nikolskiuibesov ty... 0 0 1 0 0 0
18784 Topologically protected Dirac plasmons in grap... topological optical states exhibit unique immu... 0 1 0 0 0 0
18785 The K-Nearest Neighbour UCB algorithm for mult... paper propose explore knearest neighbour ucb a... 0 0 0 1 0 0
18786 Proportional Mean Residual Life Model with Cen... proportional mean residual life model studied ... 0 0 1 1 0 0
18787 Shape differentiation of a steady-state reacti... paper consider extension results shape differe... 0 0 1 0 0 0
18788 Analytic evaluation of Coulomb integrals for o... state art integral evaluation analytical solut... 0 1 0 0 0 0
18789 Herschel-PACS photometry of faint stars aims determine flux densities photometric accu... 0 1 0 0 0 0
18790 Role of zero synapses in unsupervised feature ... synapses real neural circuits take discrete va... 1 1 0 0 0 0
18791 On the Pervasiveness of Difference-Convexity i... increasing interest applying methodology diffe... 0 0 1 0 0 0
18792 Stochastic Dynamic Optimal Power Flow in Distr... penetration distributed renewable energy dre g... 0 0 1 0 0 0
18793 Achievable Rate Region of the Zero-Forcing Pre... paper consider x multiuser multipleinputsingle... 1 0 1 0 0 0
18794 Autonomous Electric Race Car Design autonomous driving electric vehicles nowadays ... 1 0 0 0 0 0
18795 Temporal Stable Community in Time-Varying Netw... identifying community structure complex networ... 0 0 0 0 1 0
18796 The shape of a rapidly rotating polytrope with... show solutions obtained paper exact solution a... 0 1 0 0 0 0
18797 Measurement of the Planck constant at the Nati... researchers national institute standards techn... 0 1 0 0 0 0
18798 Event Stream-Based Process Discovery using Abs... aim process discovery originating area process... 1 0 0 1 0 0
18799 On $C$-bases, partition pairs and filtrations ... obtain alternative explicit specht filtrations... 0 0 1 0 0 0
18800 Improved Semantic-Aware Network Embedding with... network embeddings learn lowdimensional repres... 1 0 0 0 0 0
18801 Spin Precession Experiments for Light Axionic ... axionlike particles promising candidates make ... 0 1 0 0 0 0
18802 Persistence barcodes and Laplace eigenfunction... obtain restrictions persistence barcodes lapla... 0 0 1 0 0 0
18803 DFT study of ionic liquids adsorption on circu... carbon materials range properties high electri... 0 1 0 0 0 0
18804 On the overestimation of the largest eigenvalu... paper use new approach prove largest eigenvalu... 0 0 1 1 0 0
18805 Thermodynamic Mechanism of Life and Aging life complex biological phenomenon represented... 0 0 0 0 1 0
18806 Flat families of point schemes for connected g... study truncated point schemes connected graded... 0 0 1 0 0 0
18807 Multi-task Learning in the Computerized Diagno... handcrafted features extracted dynamic contras... 0 1 0 0 0 0
18808 Real-time Distracted Driver Posture Classifica... paper present new dataset distracted driver po... 1 0 0 0 0 0
18809 Time Series Cube Data Model purpose document create data model serializati... 1 1 0 0 0 0
18810 Markov modeling of peptide folding in the pres... use markov state models msms analyze dynamics ... 0 0 0 0 1 0
18811 Ultra-fast magnetization manipulation using si... current induced magnetization manipulation key... 0 1 0 0 0 0
18812 Grain Boundary Resistance in Copper Interconne... orientation effects resistivity copper grain b... 0 1 0 0 0 0
18813 Some remarkable infinite product identities in... applying classic telescoping summation formula... 0 0 1 0 0 0
18814 Limit Theorems in Mallows Distance for Process... paper explore connection convergence distribut... 0 0 1 0 0 0
18815 Localized-endemic state transition in the susc... longstanding debate concerning absence thresho... 0 1 0 0 0 0
18816 Analytic approximation of solutions of parabol... complete family solutions onedimensional react... 0 0 1 0 0 0
18817 Final-State Constrained Optimal Control via a ... paper develop numerical method solve nonlinear... 1 0 0 0 0 0
18818 Robust Tracking with Model Mismatch for Fast a... pursuit realtime motion planning commonly adop... 1 0 0 0 0 0
18819 Robust Gaussian Stochastic Process Emulation consider estimation parameters gaussian stocha... 0 0 1 1 0 0
18820 Observing the Atmospheres of Known Temperate E... nine transiting earthsized planets recently di... 0 1 0 0 0 0
18821 Front Propagation for Nonlocal KPP Reaction-Di... study front propagation phenomena large class ... 0 0 1 0 0 0
18822 Distributed Functional Observers for LTI Systems study problem designing distributed functional... 0 0 1 0 0 0
18823 Wavelet eigenvalue regression for $n$-variate ... contribution extend methodology proposed abry ... 0 0 1 1 0 0
18824 Deep Neural Network for Analysis of DNA Methyl... many researches demonstrated dna methylation o... 0 0 0 1 1 0
18825 One look at the rating of scientific publicati... toymodel publications citations processes prop... 1 0 0 1 0 0
18826 Alignment, Orientation, and Coulomb Explosion ... laserinduced adiabatic alignment mixedfield or... 0 1 0 0 0 0
18827 Unsupervised Machine Learning of Open Source R... developed used collection statistical methods ... 1 0 0 0 0 0
18828 Distributed, scalable and gossip-free consensu... distributed algorithms solving additive consen... 0 0 1 0 0 0
18829 Consistency of Maximum Likelihood for Continuo... network analysis needs tools infer distributio... 0 0 1 1 0 0
18830 Consistency Results for Stationary Autoregress... consider stationary autoregressive processes c... 0 0 0 1 0 0
18831 Higher order mobile coverage control with appl... current results coverage control using mobile ... 1 0 0 0 0 0
18832 Borg's Periodicity Theorems for first order se... selfadjoint first order system hermitian piper... 0 0 1 0 0 0
18833 On the Ubiquity of Information Inconsistency f... informally information inconsistency property ... 0 0 1 1 0 0
18834 Competition evolution of Rayleigh-Taylor bubbles material mixing induced rayleightaylor instabi... 0 1 0 0 0 0
18835 Nonlinear oblique projections construct nonlinear oblique projections along ... 0 0 1 0 0 0
18836 Granger Mediation Analysis of Multiple Time Se... becomes increasingly popular perform mediation... 0 0 0 1 0 0
18837 Parameterization of Sequence of MFCCs for DNN-... article dnnbased system detection three common... 1 0 0 0 0 0
18838 Near-Optimal Adversarial Policy Switching for ... key challenge multirobot multiagent systems ge... 1 0 0 0 0 0
18839 Structural Connectome Validation Using Pairwis... work study extent structural connectomes topol... 1 0 0 0 0 0
18840 Deep Robust Kalman Filter robust markov decision process rmdp sequential... 1 0 0 1 0 0
18841 Universal Statistics of Fisher Information in ... fisher information matrix fim fundamental quan... 0 0 0 1 0 0
18842 An extension problem and trace Hardy inequalit... paper study extension problem sublaplacian hty... 0 0 1 0 0 0
18843 Centered Isotonic Regression: Point and Interv... univariate isotonic regression ir used nonpara... 0 0 0 1 0 0
18844 Denoising Neural Machine Translation Training ... measuring domain relevance data identifying se... 0 0 0 1 0 0
18845 Discovering Signals from Web Sources to Predic... cyber attacks growing frequency severity past ... 1 0 0 1 0 0
18846 Higher-degree Smoothness of Perturbations I paper sequels give unified treatment higherdeg... 0 0 1 0 0 0
18847 Space Telescope and Optical Reverberation Mapp... present results optical spectroscopic monitori... 0 1 0 0 0 0
18848 An Inexact Regularized Newton Framework with a... algorithm solving smooth nonconvex optimizatio... 0 0 1 0 0 0
18849 An inverse problem for Maxwell's equations wit... consider inverse boundary value problem maxwel... 0 0 1 0 0 0
18850 Context Aware Robot Navigation using Interacti... discuss process building semantic maps interac... 1 0 0 0 0 0
18851 Disentangling by Partitioning: A Representatio... multimodal sensory data resembles form informa... 0 0 0 1 0 0
18852 Blind Gain and Phase Calibration via Sparse Sp... blind gain phase calibration bgpc bilinear inv... 1 0 0 0 0 0
18853 Reconciling cooperation, biodiversity and stab... empirical observations show ecological communi... 0 0 0 0 1 0
18854 The Young L Dwarf 2MASS J11193254-1137466 is a... discovered extremely red lowgravity l dwarf ma... 0 1 0 0 0 0
18855 Diversity of Abundance Patterns of Light Neutr... determine abundances neutroncapture elements s... 0 1 0 0 0 0
18856 Hypergames and Cyber-Physical Security for Con... identification stuxnet worm provided highly pu... 1 0 0 0 0 0
18857 Measuring the academic reputation through cita... objective assessment prestige academic institu... 1 0 0 0 0 0
18858 A Model Order Reduction Algorithm for Estimati... ab initio description spectral interior absorp... 1 1 0 0 0 0
18859 Uniform rank gradient, cost and local-global c... analyze rank gradient finitely generated group... 0 0 1 0 0 0
18860 Optimal design of a model energy conversion de... fuel cells batteries thermochemical energy con... 0 1 1 0 0 0
18861 Mining Communication Data in a Music Community... comments play important role within online cre... 1 0 0 0 0 0
18862 Multidimensional VlasovPoisson Simulations wit... develop new numerical schemes vlasovpoisson eq... 0 1 0 0 0 0
18863 Markov Chain Monte Carlo Methods for Bayesian ... markov chain monte carlo based bayesian data a... 0 1 0 1 0 0
18864 Stable splitting of mapping spaces via nonabel... use nonabelian poincar duality recover stable ... 0 0 1 0 0 0
18865 Static Gesture Recognition using Leap Motion report automated bartender system developed ma... 1 0 0 1 0 0
18866 B-spline-like bases for $C^2$ cubics on the Po... spaces constant linear quadratic splines maxim... 1 0 0 0 0 0
18867 Synthesizing Correlations with Computational L... known primary source dietary vitamin c fruit v... 0 0 0 1 0 0
18868 Axion detection via Topological Casimir Effect propose new tabletop experimental configuratio... 0 1 0 0 0 0
18869 Novel Feature-Based Clustering of Micro-Panel ... micropanel data collected analysed many resear... 0 0 0 1 0 0
18870 Ab initio effective Hamiltonians for cuprate s... ab initio lowenergy effective hamiltonians two... 0 1 0 0 0 0
18871 Longitudinal data analysis using matrix comple... clinical practice biomedical research measurem... 0 0 0 1 0 0
18872 Emission-line Diagnostics of Nearby HII Region... present new model optical nebular emission hii... 0 1 0 0 0 0
18873 On monomial linearisation and supercharacters ... column closed pattern subgroups u finite upper... 0 0 1 0 0 0
18874 The Structural Fate of Individual Multicompone... multicomponent nanoparticles synthesized eithe... 0 1 0 0 0 0
18875 On Compression of Unsupervised Neural Nets by ... unsupervised neural nets restricted boltzmann ... 1 0 0 0 0 0
18876 A matrix generalization of a theorem of Fine nathan fine gave beautiful product number bino... 1 0 1 0 0 0
18877 Training Multi-Task Adversarial Network For Ex... noisy environments achieve robust performance ... 1 0 0 0 0 0
18878 Playing Games with Bounded Entropy paper consider zerosum repeated games maximize... 1 0 0 0 0 0
18879 Exact Hausdorff and packing measures for rando... random codetrees necks introduced recently gen... 0 0 1 0 0 0
18880 On Modules over a G-set let r commutative ring unity module r let gset... 0 0 1 0 0 0
18881 Polynomial-time algorithms for the Longest Ind... give first polynomialtime algorithms graphs bo... 1 0 0 0 0 0
18882 Bug or Not? Bug Report Classification Using N-... previous studies found significant number bug ... 1 0 0 0 0 0
18883 Prior Information Guided Regularized Deep Lear... cell nuclei detection challenging research top... 1 0 0 1 0 0
18884 Anisotropic hydrodynamic turbulence in accreti... recently vertical shear instability vsi become... 0 1 0 0 0 0
18885 Optimal Algorithms for Distributed Optimization paper study optimal convergence rate distribut... 1 0 0 1 0 0
18886 Evaluation of Classical Features and Classifie... braincomputer interface bci uses brain signals... 1 0 0 1 0 0
18887 On exceptional compact homogeneous geometries ... provide uniform framework study exceptional ho... 0 0 1 0 0 0
18888 Intensity estimation of transaction arrivals o... following paper present simple intensity estim... 0 0 0 1 0 1
18889 Capacitive Mechanism of Oxygen Functional Grou... oxygen functional groups one important subject... 0 1 0 0 0 0
18890 On conditional least squares estimation for af... study asymptotic properties conditional least ... 0 0 1 1 0 0
18891 Discretization error estimates for penalty for... paper concerned minimization fourthorder linea... 0 0 1 0 0 0
18892 On the Humphreys conjecture on support varieti... let g simplyconnected semisimple algebraic gro... 0 0 1 0 0 0
18893 Using Randomness to Improve Robustness of Mach... machine learning models widely used security a... 0 0 0 1 0 0
18894 Further extension of the generalized Hurwitz-L... main aim paper give new generalization hurwitz... 0 0 1 0 0 0
18895 A Physarum-inspired model for the probit-based... stochastic user equilibrium important issue tr... 1 0 0 0 0 0
18896 Going Higher in First-Order Quantifier Alterna... investigate quantifier alternation hierarchies... 1 0 0 0 0 0
18897 Invariance of Ideal Limit Points let mathcali analytic pideal respectively summ... 0 0 1 0 0 0
18898 Optimizing the Wisdom of the Crowd: Inference,... unprecedented demand large amount data catalyz... 0 0 0 1 0 0
18899 Learning With Errors and Extrapolated Dihedral... hardness learning errors lwe problem one fruit... 1 0 0 0 0 0
18900 Fermi bubbles: high latitude X-ray supersonic ... nature bipolar gammaray fermi bubbles fb still... 0 1 0 0 0 0
18901 Passivity-Based Generalization of Primal-Dual ... paper revisit primaldual dynamics convex optim... 1 0 0 0 0 0
18902 An integral formula for the powered sum of the... distribution sum rth power standard normal ran... 0 0 1 0 0 0
18903 A Dynamic Boosted Ensemble Learning Method Bas... propose dynamic boosted ensemble learning meth... 0 0 0 1 0 0
18904 Inter-Operator Resource Management for Millime... paper novel framework proposed optimizing oper... 1 0 0 0 0 0
18905 An Online Learning Approach to Generative Adve... consider problem training generative models ge... 1 0 0 1 0 0
18906 Weakly supervised CRNN system for sound event ... sound event detection sed typically posed supe... 1 0 0 0 0 0
18907 Revealing the Coulomb interaction strength in ... study optimally doped bisrcaycuodelta bi using... 0 1 0 0 0 0
18908 Ordering dynamics of self-propelled particles ... ordering dynamics selfpropelled particles inho... 0 1 0 0 0 0
18909 Inflationary preheating dynamics with ultracol... discuss amplification loop corrections quantum... 0 1 0 0 0 0
18910 Autonomous Extracting a Hierarchical Structure... reinforcement learning rl often powerful suffe... 1 0 0 0 0 0
18911 Quantification of tumour evolution and heterog... motivation epigenetic heterogeneity within tum... 0 0 1 1 0 0
18912 A bootstrap test to detect prominent Granger-c... grangercausality frequency domain emerging too... 0 0 0 1 0 1
18913 Optimal segregation of proteins: phase transit... asymmetric segregation key proteins cell divis... 0 0 0 0 1 0
18914 Optimal make-take fees for market making regul... consider exchange wishes set suitable maketake... 0 0 0 0 0 1
18915 Spontaneous symmetry breaking due to the trade... spontaneous symmetry breaking ssb important ph... 0 1 0 0 0 0
18916 Evolutionary Image Composition Using Feature C... evolutionary algorithms recently used create w... 1 0 0 0 0 0
18917 Community Detection with Colored Edges paper prove sharp limit community detection pr... 1 1 0 0 0 0
18918 Nonlocal Neural Networks, Nonlocal Diffusion a... nonlocal neural networks proposed shown effect... 0 0 0 1 0 0
18919 Proof of FLT by Algebra Identities and Linear ... main aim present paper represent exact simple ... 0 0 1 0 0 0
18920 An Observational Diagnostic for Distinguishing... nature aerosols hot exoplanet atmospheres one ... 0 1 0 0 0 0
18921 $\mathcal{P}$-schemes and Deterministic Polyno... introduce family mathematical objects called m... 1 0 1 0 0 0
18922 Similarity Preserving Representation Learning ... considerable amount machine learning algorithm... 1 0 0 0 0 0
18923 Modeling Social Organizations as Communication... identify organization human social group commu... 1 1 0 0 0 0
18924 The Ricci flow on solvmanifolds of real type show solvable lie group real type homogeneous ... 0 0 1 0 0 0
18925 Model-based clustering of multi-tissue gene ex... recently become feasible generate largescale m... 0 0 0 0 1 0
18926 Fastest Convergence for Q-learning zap qlearning algorithm introduced paper impro... 1 0 1 0 0 0
18927 New Bounds on the Field Size for Maximally Rec... recent years rapidly increasing amounts data c... 1 0 0 0 0 0
18928 Two-Step Disentanglement for Financial Data work address problem disentanglement factors g... 1 0 0 1 0 0
18929 Optimal control of a Vlasov-Poisson plasma by ... paper optimal control vlasovpoisson plasma ext... 0 0 1 0 0 0
18930 Towards an algebraic natural proofs barrier vi... observe certain kind algebraic proof covers es... 1 0 1 0 0 0
18931 In Defense of the Indefensible: A Very Naive A... recent years great deal interest focused condu... 0 0 1 1 0 0
18932 Asymptotic Analysis of Plausible Tree Hash Mod... discussions choice tree hash mode operation st... 1 0 0 0 0 0
18933 Neurally Plausible Model of Robot Reaching Ins... paper present neurally plausible model robot r... 1 0 0 0 0 0
18934 When Will AI Exceed Human Performance? Evidenc... advances artificial intelligence ai transform ... 1 0 0 0 0 0
18935 E-PUR: An Energy-Efficient Processing Unit for... recurrent neural networks rnns key technology ... 1 0 0 0 0 0
18936 Increasing Geminid meteor shower activity mathematical modelling shown activity geminid ... 0 1 0 0 0 0
18937 The Bennett-Orlicz norm lederer van de geer introduced new orlicz norm... 0 0 1 1 0 0
18938 Temporal Justification Logic justification logics modallike logics addition... 1 0 0 0 0 0
18939 Simultaneous Multiparty Communication Complexi... number forehead nof multiparty communication m... 1 0 0 0 0 0
18940 Online Learning for Changing Environments usin... key challenge online learning classical algori... 1 0 0 1 0 0
18941 On the global sup-norm of GL(3) cusp forms let phi spherical heckemaass cusp form noncomp... 0 0 1 0 0 0
18942 Four revolutions in physics and the second qua... newtons mechanical revolution unifies motion p... 0 1 0 0 0 0
18943 Concept Drift Learning with Alternating Learners datadriven predictive analytics use today acro... 1 0 0 1 0 0
18944 A new proof of the competitive exclusion princ... give new proof wellknown competitive exclusion... 0 0 1 0 0 0
18945 From Random Differential Equations to Structur... random differential equations provide natural ... 0 0 0 1 0 0
18946 Ties That Bind - Characterizing Classes by Att... given set attributed subgraphs known different... 1 1 0 0 0 0
18947 Probing dark matter with star clusters: a dark... present new technique probe central dark matte... 0 1 0 0 0 0
18948 Predicting Foreground Object Ambiguity and Eff... propose ambiguity problem foreground object se... 1 0 0 0 0 0
18949 On Some Generalized Polyhedral Convex Construc... generalized polyhedral convex sets generalized... 0 0 1 0 0 0
18950 mGPfusion: Predicting protein stability change... proteins commonly used biochemical industry nu... 0 0 0 1 1 0
18951 How Do Software Startups Pivot? Empirical Resu... order handle intense time pressure survive dyn... 1 0 0 0 0 0
18952 Some criteria for Wind Riemannian completeness... recently link lorentzian finslerian geometries... 0 0 1 0 0 0
18953 A generalization of Schönemann's theorem via a... recently grynkiewicz et al israel j math bf us... 1 0 0 0 0 0
18954 Map-based Multi-Policy Reinforcement Learning:... order robots perform missioncritical tasks ess... 1 0 0 0 0 0
18955 Testing convexity of a discrete distribution based convex leastsquares estimator propose tw... 0 0 1 1 0 0
18956 Small and Strong Formulations for Unions of Co... often significant tradeoff formulation strengt... 0 0 1 0 0 0
18957 Safe Robotic Grasping: Minimum Impact-Force Gr... paper addresses problem selecting choice possi... 1 0 0 0 0 0
18958 Nonparametric Kernel Density Estimation for Un... derive estimators density event times current ... 0 0 1 1 0 0
18959 Non-Kähler Mirror Symmetry of the Iwasawa Mani... propose new approach mirror symmetry conjectur... 0 0 1 0 0 0
18960 Estimation and Inference for Moments of Ratios... empirical researchers often trim observations ... 0 0 0 1 0 0
18961 FPGA-based real-time 105-channel data acquisit... paper realtime channel data acquisition platfo... 1 0 0 0 0 0
18962 Zn-induced in-gap electronic states in La214 p... substitution isovalent nonmagnetic defects zn ... 0 1 0 0 0 0
18963 Predicate Specialization for Definitional High... higherorder logic programming interesting exte... 1 0 0 0 0 0
18964 Metastability and bifurcation in superconducti... describe approach based direct numerical solut... 0 1 0 0 0 0
18965 Origin of life in a digital microcosm organisms earth descend common ancestor consen... 1 1 0 0 0 0
18966 The equivalence of two tax processes introduce two models taxation latent natural t... 0 0 0 0 0 1
18967 Space-Time Geostatistical Models with both Lin... provide novel approach model spacetime random ... 0 0 1 1 0 0
18968 Stability and Robust Regulation of Passive Lin... study stability coupled impedance passive regu... 0 0 1 0 0 0
18969 Bayes Minimax Competitors of Preliminary Test ... paper consider estimation mean vector multivar... 0 0 1 1 0 0
18970 Non-orthogonal Multiple Access for High-reliab... paper consider dense vehicular communication n... 1 0 0 0 0 0
18971 Cohomology monoids of monoids with coefficient... relate old new cohomology monoids arbitrary mo... 0 0 1 0 0 0
18972 Lower Bounds for Higher-Order Convex Optimization stateoftheart methods convex nonconvex optimiz... 1 0 0 1 0 0
18973 Superconductivity in La1-xCexOBiSSe: carrier d... report effects ce substitution structural elec... 0 1 0 0 0 0
18974 Gaussian Processes Over Graphs propose gaussian processes signals graphs gpg ... 0 0 0 1 0 0
18975 Differences of Type I error rates for ANOVA an... derive recommendations analyze longitudinal da... 0 0 0 1 0 0
18976 Efficient algorithms for Bayesian Nearest Neig... consider alternate formulations recently propo... 0 0 0 1 0 0
18977 Variegation and space weathering on asteroid 2... flyby osiris camera onboard rosetta acquired h... 0 1 0 0 0 0
18978 Rokhlin dimension for compact quantum group ac... show given compact discrete quantum group g cl... 0 0 1 0 0 0
18979 Parametric Identification Using Weighted Null-... identification dynamical systems prediction er... 1 0 0 0 0 0
18980 Learning Large-Scale Bayesian Networks with th... learning graphical models data important probl... 1 0 0 1 0 0
18981 An Asymptotically Optimal Index Policy for Fin... consider restless multiarmed bandit rmab finit... 0 0 1 0 0 0
18982 Effective holographic theory of charge density... use gaugegravity duality write effective low e... 0 1 0 0 0 0
18983 Interactive Certificates for Polynomial Matric... develop analyze new protocols verify correctne... 1 0 0 0 0 0
18984 Cost Functions for Robot Motion Style focus autonomously generating robot motion day... 1 0 0 0 0 0
18985 Revealing the basins of convergence in the pla... planar equilateral restricted fourbody problem... 0 1 0 0 0 0
18986 The Eccentric Kozai-Lidov mechanism for Outer ... secular approximation hierarchical three body ... 0 1 0 0 0 0
18987 A more symmetric picture for Kasparov's KK-bif... calgebras b generalize notion quasihomomorphis... 0 0 1 0 0 0
18988 Spot dynamics in a reaction-diffusion model of... study pattern formation reactiondiffusion rd s... 0 1 0 0 0 0
18989 Incorporating Covariates into Integrated Facto... modern biomedical research ubiquitous multiple... 0 0 0 1 0 0
18990 Batch-normalized joint training for DNN-based ... improving distant speech recognition crucial s... 1 0 0 0 0 0
18991 Learning Word Embeddings from the Portuguese T... paper describes preliminary study producing di... 1 0 0 0 0 0
18992 A temperate exo-Earth around a quiet M dwarf a... combination highcontrast imaging highdispersio... 0 1 0 0 0 0
18993 Manifold Based Low-rank Regularization for Ima... lowrank structures play important role recent ... 1 0 1 0 0 0
18994 History-aware Autonomous Exploration in Confin... many scenarios require robot able explore envi... 1 0 0 0 0 0
18995 A factor-model approach for correlation scenar... jpmorgan accumulated usd billion loss credit d... 0 0 0 0 0 1
18996 Topology data analysis of critical transitions... develop topology data analysisbased method det... 0 1 1 0 0 0
18997 Construction of exact constants of motion and ... one defining features manybody localization pr... 0 1 0 0 0 0
18998 Toric manifolds over cyclohedra study action dihedral group equivariant cohomo... 0 0 1 0 0 0
18999 Use of Genome Information-Based Potentials to ... living information communications system genom... 0 0 0 0 1 0
19000 Communication-Efficient Algorithms for Decentr... present new class decentralized firstorder met... 1 0 1 0 0 0
19001 A Machine Learning Approach to Shipping Box De... right assortment shipping boxes fulfillment wa... 0 0 0 1 0 0
19002 Precise but Natural Specification for Robot Tasks present flipper natural language interface des... 1 0 0 0 0 0
19003 Rigorous Analysis for Efficient Statistically ... article presents rigorous analysis efficient s... 0 0 1 1 0 0
19004 Rapid processing of 85Kr/Kr ratios using Atom ... report methodology measuring krkr isotopic abu... 0 1 0 0 0 0
19005 Adapting Everyday Manipulation Skills to Varie... address problem executing toolusing manipulati... 1 0 0 0 0 0
19006 Effect of Particle Number Conservation on the ... motivated understanding majorana zero modes to... 0 1 0 0 0 0
19007 A new topological insulator - β-InTe strained ... investigated band structure bulk crystal surfa... 0 1 0 0 0 0
19008 Stock management (Gestão de estoques) great need stock materials production storing ... 0 0 0 1 0 0
19009 From Principal Subspaces to Principal Componen... autoencoder effective unsupervised learning mo... 0 0 0 1 0 0
19010 A critical nonlinear elliptic equation with no... article interested nonlocal regional schrdinge... 0 0 1 0 0 0
19011 Don't Decay the Learning Rate, Increase the Ba... common practice decay learning rate show one u... 1 0 0 1 0 0
19012 Collisions of Dark Matter Axion Stars with Ast... qcd axions form large fraction total mass dark... 0 1 0 0 0 0
19013 Practical Algorithms for Best-K Identification... bestk identification problem bestkarm given n ... 1 0 0 1 0 0
19014 Hyperfield Grassmannians recent paper baker bowler introduced matroids ... 0 0 1 0 0 0
19015 Statistical estimation in a randomly structure... consider binary branching process structured s... 0 0 1 0 0 0
19016 Discovering Eastern European PCs by hacking th... computer science would without personal comput... 1 0 0 0 0 0
19017 Neural Rating Regression with Abstractive Tips... recently ecommerce sites launch new interactio... 1 0 0 0 0 0
19018 Calibration Uncertainty for Advanced LIGO's Fi... calibration advanced ligo detectors quantifica... 0 1 0 0 0 0
19019 Entanglement transitions induced by large devi... probability large deviations smallest schmidt ... 0 0 1 1 0 0
19020 Understanding System Characteristics of Online... largescale systems arrays solid state disks ss... 1 0 0 0 0 0
19021 Three Questions on Special Homeomorphisms on S... provide justifications two questions special m... 0 0 1 0 0 0
19022 Nearly Semiparametric Efficient Estimation of ... competitive alternative least squares regressi... 0 0 0 1 0 0
19023 Relevance of backtracking paths in epidemic sp... understanding epidemics networks greatly benef... 1 0 0 0 0 0
19024 Hybrid graphene tunneling photoconductor with ... hybrid graphene photoconductorphototransistor ... 0 1 0 0 0 0
19025 Embedded Real-Time Fall Detection Using Deep L... paper proposes realtime embedded fall detectio... 1 0 0 1 0 0
19026 A Distributed Algorithm for Solving Linear Alg... paper consider problem solving linear algebrai... 1 0 0 0 0 0
19027 Doping-induced quantum cross-over in Er$_2$Ti$... present results investigation magnetic propert... 0 1 0 0 0 0
19028 Stochastic Block Models with Multiple Continuo... stochastic block model sbm probabilistic model... 1 0 0 1 0 0
19029 Asymptotic Independence of Bivariate Order Sta... well known extreme order statistic central ord... 0 0 1 1 0 0
19030 Semi-Supervised Haptic Material Recognition fo... material recognition enables robots incorporat... 1 0 0 1 0 0
19031 Level set shape and topology optimization of f... paper presents method optimization multicompon... 0 0 1 0 0 0
19032 Thermal distortions of non-Gaussian beams in F... thermal effects already important currently op... 0 1 0 0 0 0
19033 Rigidity and trace properties of divergence-me... show rigidity properties divergencefree vector... 0 0 1 0 0 0
19034 A note on the Almansi property first goal note study almansi property mdimens... 0 0 1 0 0 0
19035 The Quantum Complexity of Computing Schatten $... consider quantum complexity computing schatten... 1 0 0 0 0 0
19036 Bounds for fidelity of semiclassical Lagrangia... define mixed states associated submanifolds pr... 0 0 1 0 0 0
19037 Precision measurement of antiproton to proton ... precision measurement ams antiprotontoproton f... 0 1 0 0 0 0
19038 Stability criteria for the 2D $α$-Euler equations derive analogues classical rayleigh fjortoft a... 0 1 0 0 0 0
19039 Superconducting spin valves controlled by spir... propose superconducting spintriplet valve cons... 0 1 0 0 0 0
19040 Experience Recommendation for Long Term Safe L... learning propelled cutting edge performance ro... 1 0 0 0 0 0
19041 Calderón-type inequalities for affine frames prove sharp upper lower bounds generalized cal... 0 0 1 0 0 0
19042 Magnetism in Semiconducting Molybdenum Dichalc... transition metal dichalcogenides tmds interest... 0 1 0 0 0 0
19043 Characteristic Polynomial of Certain Hyperplan... give formula computing characteristic polynomi... 0 0 1 0 0 0
19044 Accelerated Evaluation of Automated Vehicles U... process certify highly automated vehicles yet ... 1 0 0 0 0 0
19045 Phase shift's influence of two strong pulsed l... phase shifts influence two strong pulsed laser... 0 1 0 0 0 0
19046 Topological Sieving of Rings According to thei... present novel mechanism resolving mechanical r... 0 0 0 0 1 0
19047 A structural Markov property for decomposable ... present new kind structural markov property pr... 0 0 0 1 0 0
19048 Fisher consistency for prior probability shift introduce fisher consistency sense unbiasednes... 1 0 0 1 0 0
19049 Quantifying the Effects of Enforcing Disentang... notion disentangled autoencoders proposed exte... 1 0 0 1 0 0
19050 An omnibus test for the global null hypothesis global hypothesis tests useful tool context eg... 0 0 0 1 0 0
19051 Learning Without Mixing: Towards A Sharp Analy... prove ordinary leastsquares ols estimator atta... 0 0 0 1 0 0
19052 Positive and Unlabeled Learning through Negati... motivated applications protein function predic... 0 0 0 0 1 0
19053 Superconductivity in quantum wires: A symmetry... study properties quantim wires spinorbit coupl... 0 1 0 0 0 0
19054 Exponentially convergent data assimilation alg... paper presents new state estimation algorithm ... 0 1 0 0 0 0
19055 A Multi-Modal Approach to Infer Image Affect group affect emotion image people inferred ext... 0 0 0 1 0 0
19056 Joint Tilt Angle Adaptation and Beamforming in... beamforming promising approach interference co... 1 0 1 0 0 0
19057 Testing Degree Corrections in Stochastic Block... study sharp detection thresholds degree correc... 0 0 1 1 0 0
19058 A Survey on Mobile Edge Computing: The Communi... driven visions internet things g communication... 1 0 1 0 0 0
19059 Deep Learning Approximation: Zero-Shot Neural ... neural networks offer highaccuracy solutions r... 0 0 0 1 0 0
19060 Frequency truncated discrete-time system norm multirate digital signal processing model redu... 1 0 0 0 0 0
19061 Formal Guarantees on the Robustness of a Class... recent work shown stateoftheart classifiers qu... 1 0 0 1 0 0
19062 Complete DFM Model for High-Performance Comput... nanotechnology semiconductor device scaled dra... 1 0 0 0 0 0
19063 Investigating the potential of social network ... locationbased social network data offers promi... 1 1 0 0 0 0
19064 Generalized Internal Boundaries (GIB) representing largescale motions topological ch... 1 1 0 0 0 0
19065 Reducing Certification Granularity to Increase... strong certification process required insure s... 1 0 0 0 0 0
19066 Evolutionary multiplayer games on graphs with ... evolutionary game dynamics structured populati... 0 0 0 0 1 0
19067 Robust Consensus for Multi-Agent Systems Commu... paper study robust consensus problem set discr... 1 0 0 0 0 0
19068 Fractional Topological Elasticity and Fracton ... analyze higher rank gauge theories capture phe... 0 1 0 0 0 0
19069 Perturbing Eisenstein polynomials over local f... let k local field whose residue field characte... 0 0 1 0 0 0
19070 Galactic Orbits of Globular Clusters in the Re... galactic orbits constructed long time interval... 0 1 0 0 0 0
19071 Streamlines for Motion Planning in Underwater ... motion planning underwater vehicles must consi... 1 0 0 0 0 0
19072 Eddington-Limited Accretion in z~2 WISE-select... hot dustobscured galaxies hot dogs rare dusty ... 0 1 0 0 0 0
19073 Boltzmann Transport in Nanostructures as a Fri... surface scattering key limiting factor thermal... 0 1 0 0 0 0
19074 Agile Software Engineering and Systems Enginee... systems engineering se set processes documenta... 1 1 0 0 0 0
19075 Prime geodesic theorem of Gallagher type reduce exponent error term prime geodesic theo... 0 0 1 0 0 0
19076 PriMaL: A Privacy-Preserving Machine Learning ... paper introduces primal general privacypreserv... 1 0 0 0 0 0
19077 Follow the Compressed Leader: Faster Online Le... online problem computing top eigenvector funda... 1 0 1 1 0 0
19078 Solving satisfiability using inclusion-exclusion using maple implement sat solver based princip... 1 0 0 0 0 0
19079 Isometric immersions into manifolds with metal... consider submanifolds riemannian manifold meta... 0 0 1 0 0 0
19080 Demonstration of an ac Josephson junction laser superconducting electronic devices reemerged c... 0 1 0 0 0 0
19081 Integrable systems, symmetries and quantization notes correspond minicourse given poisson conf... 0 1 1 0 0 0
19082 Detecting Friedel oscillations in ultracold Fe... investigating friedel oscillations ultracold g... 0 1 0 0 0 0
19083 Learning Proximal Operators: Using Denoising N... variational methods among powerful tools solvi... 1 0 0 0 0 0
19084 Heated-Up Softmax Embedding metric learning aims learning distance consist... 0 0 0 1 0 0
19085 Fast Matrix Inversion and Determinant Computat... paper introduces fast algorithm simultaneous i... 1 0 0 1 0 0
19086 The imprint of neutrinos on clustering in reds... abridged investigate signatures left cosmic ne... 0 1 0 0 0 0
19087 Quantum Privacy-Preserving Data Analytics data analytics association rule mining decisio... 1 0 0 0 0 0
19088 Magnetic Properties of Transition-Metal Adsorb... using firstprinciples monte carlo methods syst... 0 1 0 0 0 0
19089 A bootstrap for the number of $\mathbb{F}_{q^r... note present fast algorithm finds r number nr ... 0 0 1 0 0 0
19090 Doping anatase TiO2 with group V-b and VI-b tr... investigate role transition metal atoms group ... 0 1 0 0 0 0
19091 Patch-planting spin-glass solution for benchma... introduce algorithm generate solve spinglass i... 0 1 0 0 0 0
19092 Evidence for the formation of comet 67P/Churyu... processes led formation planetary bodies solar... 0 1 0 0 0 0
19093 Detection of virial shocks in stacked Fermi-LA... galaxy clusters thought grow accreting mass la... 0 1 0 0 0 0
19094 Closed-form formulae of hyperbolic metamateria... metamaterial made stacked holearray layers kno... 0 1 0 0 0 0
19095 RMPflow: A Computational Graph for Automatic M... develop novel policy synthesis algorithm rmpfl... 1 0 0 0 0 0
19096 Long-range correlations and fractal dynamics i... reduced motor control one frequent features as... 0 1 0 1 0 0
19097 A Computational Approach to Extinction Events ... recent work md johnston et al produced suffici... 0 0 1 0 0 0
19098 Face-to-BMI: Using Computer Vision to Infer Bo... persons weight status profound implications li... 1 0 0 0 0 0
19099 Recursive simplex stars paper proposes new method builds simplex based... 1 0 0 0 0 0
19100 An Analytic Formula for Numbers of Restricted ... study correlators irregular vertex operators t... 0 0 1 0 0 0
19101 Hyperopic Cops and Robbers introduce new variant game cops robbers played... 1 0 0 0 0 0
19102 New pinching estimates for Inverse curvature f... prove new pinching estimate inverse curvature ... 0 0 1 0 0 0
19103 automan: a simple, Python-based, automation fr... present easytouse pythonbased framework allows... 1 0 0 0 0 0
19104 Extensive characterization of a high Reynolds ... experiment conducted framework euhit project d... 0 1 0 0 0 0
19105 Q-analogues of the Fibo-Stirling numbers let fn denote nth fibonacci number relative in... 0 0 1 0 0 0
19106 Hybrid Dirac Semimetal in CaAgBi Materials Family based formation mechanisms dirac points threed... 0 1 0 0 0 0
19107 On the martingale property in the rough Bergom... consider class fractional stochastic volatilit... 0 0 0 0 0 1
19108 Weighted Surface Algebras finitedimensional algebra algebraically closed... 0 0 1 0 0 0
19109 A Statistical Learning Approach to Modal Regre... paper studies nonparametric modal regression p... 0 0 1 1 0 0
19110 Teaching a Machine to Read Maps with Deep Rein... ability use map navigate complex environment q... 1 0 0 1 0 0
19111 The fan beam model for the pulse evolution of ... average radio pulse profile pulsar b double pu... 0 1 0 0 0 0
19112 Resilience of Core-Periphery Networks in the C... coreperiphery networks structures present set ... 1 0 0 0 0 0
19113 Reservoir of Diverse Adaptive Learners and Sta... last decade seen surge interest adaptive learn... 1 0 0 1 0 0
19114 Extremes in Random Graphs Models of Complex Ne... regarding analysis web communication social co... 0 0 1 1 0 0
19115 Estimates of the Reconstruction Error in Parti... recent work redressed warped frames introduced... 1 0 0 0 0 0
19116 On the Optimality of Secret Key Agreement via ... multiterminal secret key agreement problem pri... 1 0 0 0 0 0
19117 Learning Motion Predictors for Smart Wheelchai... constructing smart wheelchair commercially ava... 1 0 0 0 0 0
19118 Kernelized Hashcode Representations for Relati... kernel methods produced stateoftheart results ... 1 0 0 1 0 0
19119 Can Adversarial Networks Hallucinate Occluded ... see person crowd occluded persons miss visual ... 1 0 0 0 0 0
19120 John, the semi-conductor : a tool for comprovi... article presents john opensource software desi... 1 0 0 0 0 0
19121 Eigenvalue and Eigenfunction for the $PT$-symm... real energy spectrum ptsymmetric hamiltonian h... 0 0 1 0 0 0
19122 Random walks on activity-driven networks with ... virtually realworld networks dynamical entitie... 1 1 0 0 0 0
19123 Predicting B Cell Receptor Substitution Profil... b cells develop high affinity receptors course... 0 0 0 0 1 0
19124 Energy Efficient Mobile Edge Computing in Dens... merging mobile edge computing mec emerging par... 1 0 0 0 0 0
19125 Delone dynamical systems and spectral convergence realm delone sets locally compact second count... 0 0 1 0 0 0
19126 On biconservative surfaces in Euclidean spaces paper study biconservative surfaces parallel n... 0 0 1 0 0 0
19127 Automatic implementation of material laws: Jac... effort increase versatility finite element cod... 1 1 0 0 0 0
19128 Asymptotic analysis for Hamilton-Jacobi equati... investigate asymptotic behavior solutions hami... 0 0 1 0 0 0
19129 An Upper Bound of the Minimal Dispersion via D... point set n elements ddimensional unit cube cl... 1 0 1 0 0 0
19130 Three-dimensional band structure of LaSb and C... performed angleresolved photoemission spectros... 0 1 0 0 0 0
19131 Stellar-to-halo mass relation of cluster galaxies hierarchical formation model galaxy clusters g... 0 1 0 0 0 0
19132 Undecidability and Finite Automata using novel rewriting problem show several nat... 1 0 0 0 0 0
19133 A globally stable attractor that is locally un... construct two examples invariant manifolds des... 0 1 0 0 0 0
19134 On Centers and Central Lines of Triangles in t... determine barycentric coordinates triangle cen... 0 0 1 0 0 0
19135 Stopping Active Learning based on Predicted Ch... active learning effective stopping method allo... 1 0 0 1 0 0
19136 Statistical properties of random clique networks paper random clique network model mimic large ... 1 1 0 0 0 0
19137 Quo Vadis, Action Recognition? A New Model and... paucity videos current action classification d... 1 0 0 0 0 0
19138 Selfish Cops and Active Robber: Multi-Player P... introduce study game selfish cops active robbe... 1 0 0 0 0 0
19139 Singly-Thermostated Ergodicity in Gibbs' Canon... snook prize awarded diego tapias alessandro br... 0 1 0 0 0 0
19140 Robust Estimation via Robust Gradient Estimation provide new computationallyefficient class est... 0 0 0 1 0 0
19141 SMT Solving for Vesicle Traffic Systems in Cells biology several questions translate combinator... 1 0 0 0 0 0
19142 Endemicity and prevalence of multipartite viru... multipartite viruses replicate puzzling evolut... 0 0 0 0 1 0
19143 Correlating Cell Shape and Cellular Stress in ... collective cell migration highly regulated pro... 0 1 0 0 0 0
19144 Eigenvalue Decay Implies Polynomial-Time Learn... consider problem learning function classes com... 1 0 0 0 0 0
19145 A New Steganographic Technique Matching the Se... steganography involves hiding secret message i... 1 0 0 0 0 0
19146 On topological fluid mechanics of non-ideal sy... euler navierstokes variant systems dynamical i... 0 1 0 0 0 0
19147 Topological AdS/CFT define holographic dual donaldsonwitten topolo... 0 0 1 0 0 0
19148 Using highly uniform and smooth Selenium collo... systematically analyzed magnetodielectric reso... 0 1 0 0 0 0
19149 A Vector Field Method for Radiating Black Hole... develop commuting vector field method general ... 0 0 1 0 0 0
19150 Experimental Constraint on an Exotic Spin- and... conducted search exotic spin velocitydependent... 0 1 0 0 0 0
19151 Generalization Error in Deep Learning deep learning models lately shown great perfor... 0 0 0 1 0 0
19152 Block Compressive Sensing of Image and Video w... although block compressive sensing bcs makes t... 1 0 0 0 0 0
19153 A multi-phase-field method for surface tension... consistent treatment coupling surface energy e... 0 1 0 0 0 0
19154 On the restriction theorem for paraboloid in $... prove recent breaking zahl frac barrier wolffs... 0 0 1 0 0 0
19155 Existence of Stein Kernels under a Spectral Ga... establish existence stein kernels probability ... 1 0 1 0 0 0
19156 High-order asynchrony-tolerant finite differen... synchronizations processing elements pes massi... 0 1 0 0 0 0
19157 Hazard Analysis and Risk Assessment for an Aut... future application automated vehicles public t... 1 0 0 0 0 0
19158 Detailed experimental and numerical analysis o... swift test originally proposed formability tes... 0 1 0 0 0 0
19159 Hubble Frontier Fields: systematic errors in s... strong gravitational lensing galaxy clusters f... 0 1 0 0 0 0
19160 A Note on the Spectral Transfer Morphisms for ... e opdam introduced tool spectral transfer morp... 0 0 1 0 0 0
19161 Batch-Expansion Training: An Efficient Optimiz... propose batchexpansion training bet framework ... 1 0 0 0 0 0
19162 Coordinate Descent with Bandit Sampling coordinate descent methods usually minimize co... 1 0 0 1 0 0
19163 Closing the gap for pseudo-polynomial strip pa... set dimensional packing problems builds import... 1 0 0 0 0 0
19164 Notes on the replica symmetric solution of the... review replica symmetric solution classical qu... 0 1 0 0 0 0
19165 Self-supervised Knowledge Distillation Using S... solve deep neural network dnns huge training d... 0 0 0 1 0 0
19166 Can justice be fair when it is blind? How soci... hierarchy efficient way group organize often g... 0 0 0 0 1 0
19167 GSAE: an autoencoder with embedded gene-set no... bioinformatics tools developed interpret gene ... 0 0 0 1 1 0
19168 Natasha: Faster Non-Convex Stochastic Optimiza... given nonconvex function average n smooth func... 1 0 1 1 0 0
19169 Higher-Order Bounded Model Checking present bounded model checking technique highe... 1 0 0 0 0 0
19170 Smoothing for the fractional Schrodinger equat... paper study cubic fractional nonlinear schrodi... 0 0 1 0 0 0
19171 Deep Learning Based Cryptographic Primitive Cl... cryptovirological augmentations present immedi... 1 0 0 0 0 0
19172 The Alexandrov-Fenchel type inequalities, revi... various alexandrovfenchel type inequalities ap... 0 0 1 0 0 0
19173 Development of non-modal shear induced instabi... paper consider role nonmodal instabilities dyn... 0 1 0 0 0 0
19174 DeepSketch2Face: A Deep Learning Based Sketchi... face modeling paid much attention field visual... 1 0 0 0 0 0
19175 Time-Inhomogeneous Branching Processes Conditi... paper consider timeinhomogeneous branching pro... 0 0 1 0 0 0
19176 The Dirichlet-to-Neumann operator for quantum ... compact connected metric graphs boundary consi... 0 0 1 0 0 0
19177 A study of the dual problem of the one-dimensi... mongekantorovich problem infinite wasserstein ... 0 0 1 0 0 0
19178 Strong coupling Bose polarons in a BEC use nonperturbative renormalization group appr... 0 1 0 0 0 0
19179 Triangle packing in (sparse) tournaments: appr... given tournament positive integer k cpakcingt ... 1 0 0 0 0 0
19180 Asymptotics of Chebyshev Polynomials, II. DCT ... prove szegwidom asymptotics chebyshev polynomi... 0 0 1 0 0 0
19181 Tracking Urban Human Activity from Mobile Phon... timings human activities marked circadian cloc... 0 1 0 0 0 0
19182 Efficient conversion from rotating matrix to r... computational geometric problems involving rot... 1 0 0 0 0 0
19183 Statistical methods for characterizing transfu... near infrared spectroscopy nirs imagingbased d... 0 0 0 1 0 0
19184 To understand deep learning we need to underst... generalization performance classifiers deep le... 0 0 0 1 0 0
19185 Atomic Data Revisions for Transitions Relevant... measurements element abundances galaxies astro... 0 1 0 0 0 0
19186 Using Nonlinear Normal Modes for Execution of ... aim getting closer performance animal musclesk... 1 0 0 0 0 0
19187 Efficient Deep Learning on Multi-Source Privat... machine learning models benefit large diverse ... 0 0 0 1 0 0
19188 Analytical solution of the integral equation f... starting integral representation threedimensio... 0 1 0 0 0 0
19189 Equilateral $p$-gons in $\mathbb R^d$ and defo... introduce concept requilateral mgons prove exi... 0 0 1 0 0 0
19190 Jónsson posets according kearnes oman ordered set p emphjnsso... 0 0 1 0 0 0
19191 Hypotheses testing on infinite random graphs drawing recent results provide formalism neces... 1 0 1 1 0 0
19192 On compact splitting complex submanifolds of q... current article primary objects study compact ... 0 0 1 0 0 0
19193 Octupolar Tensors for Liquid Crystals thirdorder threedimensional symmetric traceles... 0 0 1 0 0 0
19194 Efficient boundary corrected Strang splitting strang splitting well established tool numeric... 0 1 0 0 0 0
19195 SOS-convex Semi-algebraic Programs and its App... paper introduce new class nonsmooth convex fun... 0 0 1 0 0 0
19196 An Uncertainty Principle for Estimates of Floq... derive cramrrao lower bound variance floquet m... 0 0 0 1 0 0
19197 Shielding Google's language toxicity model aga... lack moderation online communities enables par... 1 0 0 0 0 0
19198 Diagrammatic Monte-Carlo for weak-coupling exp... develop numerical tools diagrammatic montecarl... 0 1 0 0 0 0
19199 Training Shallow and Thin Networks for Acceler... increasing interest accelerating neural networ... 1 0 0 0 0 0
19200 Transductive Zero-Shot Learning with Adaptive ... zeroshot learning zsl endows computer vision s... 1 0 0 0 0 0
19201 A geometric attractor mechanism for self-organ... grid cells medial entorhinal cortex mec respon... 0 0 0 0 1 0
19202 Attacking Strategies and Temporal Analysis Inv... online social network osn discussion groups ex... 1 0 0 0 0 0
19203 Perception-based energy functions in seam-cutting image stitching challenging consumerlevel phot... 1 0 0 0 0 0
19204 Probabilistic learning of nonlinear dynamical ... probabilistic modeling provides capability rep... 1 0 0 1 0 0
19205 Deep Projective 3D Semantic Segmentation semantic segmentation point clouds challenging... 1 0 0 0 0 0
19206 Dynamic Pricing with Finitely Many Unknown Val... motivated posted price auctions buyers grouped... 0 0 0 1 0 0
19207 Haar systems, KMS states on von Neumann algebr... analyse certain haar systems associated groupo... 0 0 1 0 0 0
19208 Restoring a smooth function from its noisy int... numerical experimental data analysis often req... 0 1 0 1 0 0
19209 Adversarial Active Learning for Deep Networks:... propose new active learning strategy designed ... 0 0 0 1 0 0
19210 Improving SIEM capabilities through an enhance... nowadays security information event management... 1 0 0 0 0 0
19211 Escaping Saddle Points with Adaptive Gradient ... adaptive methods adam rmsprop widely used deep... 1 0 0 1 0 0
19212 The Effect of Temperature on Cu-K-In-Se Thin F... films cukinse coevaporated varied kkcu composi... 0 1 0 0 0 0
19213 Simulations of the Solar System's Early Dynami... course last decade nice model dramatically cha... 0 1 0 0 0 0
19214 On weak Fraisse limits using natural action sinfty show countable her... 0 0 1 0 0 0
19215 Promoting Saving for College Through Data Science cost attending college steadily rising years e... 1 0 0 0 0 0
19216 Rotation Blurring: Use of Artificial Blurring ... users virtual reality vr systems often experie... 1 0 0 0 0 0
19217 Comparative Benchmarking of Causal Discovery T... paper present comprehensive view prominent cau... 1 0 0 1 0 0
19218 Sensitivity of Love and quasi-Rayleigh waves t... examine sensitivity love quasirayleigh waves m... 0 1 0 0 0 0
19219 The image size of iterated rational maps over ... let varphimathbbfqtomathbbfq rational map fixe... 0 0 1 0 0 0
19220 Noncommutative modular symbols and Eisenstein ... form realanalytic eisenstein series twisted ma... 0 0 1 0 0 0
19221 Some rigidity characterizations on critical me... study closed ndimensional manifolds metrics cr... 0 0 1 0 0 0
19222 Profinite completions of Burnside-type quotien... using quantum representations mapping class gr... 0 0 1 0 0 0
19223 Learning Infinite RBMs with Frank-Wolfe work propose infinite restricted boltzmann mac... 1 0 0 1 0 0
19224 New low-mass eclipsing binary systems in Praes... present discovery four lowmass modot eclipsing... 0 1 0 0 0 0
19225 The impact of the halide cage on the electroni... perovskite solar cells record power conversion... 0 1 0 0 0 0
19226 Discovery of Giant Radio Galaxies from NVSS: R... giant radio galaxies grgs one largest astrophy... 0 1 0 0 0 0
19227 SGD: General Analysis and Improved Rates propose general yet simple theorem describing ... 1 0 0 1 0 0
19228 Nonconvex One-bit Single-label Multi-label Lea... study extreme scenario multilabel learning tra... 1 0 0 1 0 0
19229 Two Categories of Indoor Interactive Dynamics ... explore largescale population indoor interacti... 1 1 0 0 0 0
19230 Robust estimators for generalized linear model... highly robust efficient estimators generalized... 0 0 0 1 0 0
19231 Abstracting Event-Driven Systems with Lifestat... present lifestate rulesan approach abstracting... 1 0 0 0 0 0
19232 Boltzmann Encoded Adversarial Machines restricted boltzmann machines rbms class gener... 0 0 0 1 0 0
19233 A Non-Gaussian, Nonparametric Structure for Ge... becoming increasingly clear complex interactio... 0 0 0 1 0 0
19234 An Efficient Bayesian Robust Principal Compone... principal component regression linear regressi... 0 0 0 1 0 0
19235 Bayesian estimation from few samples: communit... propose efficient metaalgorithm bayesian estim... 1 0 0 1 0 0
19236 X-ray Transform and Boundary Rigidity for Asym... consider boundary rigidity problem asymptotica... 0 0 1 0 0 0
19237 Pinning of longitudinal phonons in holographic... consider spontaneous breaking translational sy... 0 1 0 0 0 0
19238 An Extension of the Method of Brackets. Part 1 method brackets efficient method evaluation la... 0 0 1 0 0 0
19239 optimParallel: an R Package Providing Parallel... r package optimparallel provides parallel vers... 0 0 0 1 0 0
19240 The barocaloric effect: A Spin-off of the Disc... key results obtained joint research projects a... 0 1 0 0 0 0
19241 Spontaneous currents in superconducting system... show rashba spinorbit coupling interface super... 0 1 0 0 0 0
19242 Catching Loosely Synchronized Behavior in Face... fraud severely detrimental impacts business so... 1 0 0 0 0 0
19243 Three-dimensional localized-delocalized Anders... systems spontaneously reveal periodic evolutio... 0 1 0 0 0 0
19244 Socio-economic constraints to maximum human li... analysis demographic transition past century h... 0 0 0 1 1 0
19245 SD-CPS: Taming the Challenges of Cyber-Physica... cyberphysical systems cps revolutionize variou... 1 0 0 0 0 0
19246 Dual Ore's theorem on distributive intervals o... paper gives selfcontained grouptheoretic proof... 0 0 1 0 0 0
19247 A construction of trivial Beltrami coefficients measurable function mu unit disk mathbbd compl... 0 0 1 0 0 0
19248 A GNS construction of three-dimensional abelia... give detailed account socalled universal const... 0 0 1 0 0 0
19249 Long-path formation in a deformed microdisk laser asymmetric resonant cavity used form path much... 0 1 0 0 0 0
19250 Spitzer Observations of Large Amplitude Variab... micron characteristics agb variables lmc ic di... 0 1 0 0 0 0
19251 Synergistic Team Composition effective teams crucial organisations especial... 1 0 0 0 0 0
19252 The inverse hull of 0-left cancellative semigr... given semigroup zero leftcancellative sense st... 0 0 1 0 0 0
19253 The Hadamard Determinant Inequality - Extensio... generalization classical determinant inequalit... 0 0 1 0 0 0
19254 Experimental results : Reinforcement Learning ... propose new reinforcement learning algorithm p... 1 0 0 1 0 0
19255 Discreteness of silting objects and t-structur... introduce notion stpairs triangulated subcateg... 0 0 1 0 0 0
19256 Sketching the order of events introduce features massive data streams stream... 1 0 1 1 0 0
19257 Deep Multi-view Learning to Rank study problem learning rank multiple sources t... 0 0 0 1 0 0
19258 One-Shot Visual Imitation Learning via Meta-Le... order robot generalist perform wide range jobs... 1 0 0 0 0 0
19259 Second variation of Selberg zeta functions and... give explicit formula second variation logarit... 0 0 1 0 0 0
19260 Magnetic Fields Threading Black Holes: restric... idea black hole spin instrumental generation p... 0 1 0 0 0 0
19261 Distance covariance for stochastic processes distance covariance two random vectors measure... 0 0 1 1 0 0
19262 On Nonparametric Regression using Data Depth investigate nonparametric regression methods b... 0 0 0 1 0 0
19263 A Backward Simulation Method for Stochastic Op... number optimal decision problems uncertainty f... 0 0 0 0 0 1
19264 Damped Posterior Linearization Filter iterated posterior linearization filter iplf a... 0 0 1 1 0 0
19265 Status updates through M/G/1/1 queues with HARQ consider system randomly generated updates tra... 1 0 0 0 0 0
19266 A mean score method for sensitivity analysis t... analyses randomised trials incomplete outcomes... 0 0 1 1 0 0
19267 On the union complexity of families of axis-pa... let r family n axisparallel rectangles packing... 1 0 1 0 0 0
19268 Using photo-ionisation models to derive carbon... present new method derive oxygen carbon abunda... 0 1 0 0 0 0
19269 A Probabilistic Framework for Location Inferen... study extent infer users geographical location... 1 0 0 0 0 0
19270 The Novel ABALONE Photosensor Technology: 4-Ye... abalone photosensor technology us patent capab... 0 1 0 0 0 0
19271 Multi-robot Dubins Coverage with Autonomous Su... large scale coverage operations marine explora... 1 0 0 0 0 0
19272 New Fairness Metrics for Recommendation that E... study fairness collaborativefiltering recommen... 1 0 0 0 0 0
19273 Graph heat mixture model learning graph inference methods recently attracted gre... 1 0 0 1 0 0
19274 Technical Report: Reactive Navigation in Parti... paper presents provably correct method robot n... 1 0 0 0 0 0
19275 Automatic smoothness detection of the resolven... resolvent krylov subspace method builds approx... 0 0 1 0 0 0
19276 On the observability of Pauli crystals best known manifestation fermidirac statistics... 0 1 0 0 0 0
19277 Interpolating Between Choices for the Approxim... paper proves approximate intermediate value th... 1 0 1 0 0 0
19278 HAZMAT II: Ultraviolet Variability of Low-Mass... ultraviolet uv light host star influences plan... 0 1 0 0 0 0
19279 Exactly solvable Schrödinger equation with dou... construct doublewell potential schrdinger equa... 0 1 0 0 0 0
19280 The co-evolution of emotional well-being with ... social ties strongly related wellbeing charact... 1 0 0 1 0 0
19281 A magnetic version of the Smilansky-Solomyak m... analyze spectral properties two mutually relat... 0 0 1 0 0 0
19282 John-Nirenberg Radius and Collapse in Conforma... given positive function uin wn define johnnire... 0 0 1 0 0 0
19283 Deep Prior recent literature deep learning offers new too... 1 0 0 1 0 0
19284 Generalized two-dimensional linear discriminan... recent advances show twodimensional linear dis... 0 0 0 1 0 0
19285 Time-Frequency Audio Features for Speech-Music... distinct striation patterns observed spectrogr... 1 0 0 0 0 0
19286 Kinodynamic Planning on Constraint Manifolds paper presents motion planner systems subject ... 1 0 0 0 0 0
19287 Binary Classification from Positive-Confidence... learn binary classifier positive data without ... 1 0 0 1 0 0
19288 Skewing Methods for Variance-Stabilizing Local... wellknown kernel regression estimators produce... 0 0 0 1 0 0
19289 Proximodistal Exploration in Motor Learning as... harness complexity highdimensional bodies sens... 1 0 0 0 0 0
19290 Near-optimal Sample Complexity Bounds for Robu... prove tildethetak varepsilon samples necessary... 1 0 1 0 0 0
19291 Induction of Non-Monotonic Logic Programs to E... present heuristic based algorithm induce texti... 0 0 0 1 0 0
19292 Combining Self-Supervised Learning and Imitati... manipulation deformable objects ropes cloth im... 1 0 0 0 0 0
19293 Online learning with graph-structured feedback... derive upper lower bounds policy regret tround... 0 0 0 1 0 0
19294 Dynamical characteristics of electromagnetic f... dynamical characteristics electromagnetic fiel... 0 1 0 0 0 0
19295 Functors induced by Cauchy extension of C*-alg... paper give three functors mathfrakp cdotk math... 0 0 1 0 0 0
19296 Hierarchically cocompact classifying spaces fo... define notion hierarchically cocompact classif... 0 0 1 0 0 0
19297 A Likelihood-Free Inference Framework for Popu... explosion highthroughput dna sequencing past d... 0 0 0 1 1 0
19298 Coherent single-atom superradiance quantum effects prevalent microscopic scale ge... 0 1 0 0 0 0
19299 Recurrent Deterministic Policy Gradient Method... paper presents deep learning framework capable... 1 0 0 0 0 0
19300 Diversified essential properties in halogenate... significant halogenation effects essential pro... 0 1 0 0 0 0
19301 Quantifying genuine multipartite correlations ... propose informationtheoretic framework quantif... 0 1 0 0 0 0
19302 Pulsating low-mass white dwarfs in the frame o... present theoretical assessment expected tempor... 0 1 0 0 0 0
19303 Normalized Maximum Likelihood with Luckiness f... normalized maximum likelihood nml one importan... 0 0 1 1 0 0
19304 Tackling Diversity and Heterogeneity by Vertic... existing memory management mechanisms used com... 1 0 0 0 0 0
19305 From the Icosahedron to E8 regular icosahedron connected many exceptional... 0 0 1 0 0 0
19306 Sequential Discrete Kalman Filter for Real-Tim... paper demonstrates feasibility implementing re... 0 0 0 1 0 0
19307 Game-Theoretic Semantics for ATL+ with Applica... develop gametheoretic semantics gts fragment a... 1 0 1 0 0 0
19308 Killing Three Birds with one Gaussian Process:... wide usage machine learning ml lead research a... 0 0 0 1 0 0
19309 Approximate message passing for nonconvex spar... analyse linear regression problem nonconvex re... 1 0 0 1 0 0
19310 Concurrence Topology of Some Cancer Genomics Data topological data analysis method concurrence t... 0 0 0 1 0 0
19311 Quasimomentum of an elementary excitation for ... known elementary excitation manyparticle syste... 0 1 0 0 0 0
19312 Moving to VideoKifu: the last steps toward a f... previous paper arxiv described techniques succ... 1 0 0 0 0 0
19313 Malware Detection by Eating a Whole EXE work introduce malware detection raw byte sequ... 1 0 0 1 0 0
19314 On the Complexity of Model Checking for Syntac... paper investigate model checking mc problem ha... 1 0 0 0 0 0
19315 Deforming 3-manifolds of bounded geometry and ... prove moduli space complete riemannian metrics... 0 0 1 0 0 0
19316 Optimal and Myopic Information Acquisition consider problem optimal dynamic information a... 1 0 1 1 0 0
19317 Infinitely many minimal classes of graphs of u... celebrated theorem robertson seymour states fa... 1 0 1 0 0 0
19318 A Passivity-Based Approach to Nash Equilibrium... paper consider problem distributed nash equili... 0 0 1 0 0 0
19319 Magnetic and dielectric investigations of $γ$ ... magnetic thermodynamic dielectric properties g... 0 1 0 0 0 0
19320 Linear centralization classifier classification algorithm called linear central... 1 0 0 1 0 0
19321 Spatio-temporal Person Retrieval via Natural L... paper address problem spatiotemporal person re... 1 0 0 0 0 0
19322 Thermo-elasto-plastic simulations of femtoseco... formation interaction multiple cavities induce... 0 1 0 0 0 0
19323 Efficient and Accurate Machine-Learning Interp... machinelearning potentials mlps atomistic simu... 0 1 0 0 0 0
19324 Randomized Constraints Consensus for Distribut... paper consider network processors aiming coope... 0 0 1 0 0 0
19325 Continuum limit of the vibrational properties ... lowfrequency vibrational lowtemperature therma... 0 1 0 0 0 0
19326 Existence of smooth solutions of multi-term Ca... paper deals initial value problem multiterm fr... 0 0 1 0 0 0
19327 Classes of elementary function solutions to th... cev model subsumes previous option pricing mod... 0 0 0 0 0 1
19328 Congruent families and invariant tensors classical results chentsov campbell state cons... 0 0 1 1 0 0
19329 Quality of Information in Mobile Crowdsensing:... smartphones become pervasive devices peoples l... 1 0 0 0 0 0
19330 SimBlock: A Blockchain Network Simulator blockchain technology distributedly managing l... 1 0 0 0 0 0
19331 Bayesian Fused Lasso regression for dynamic bi... propose multinomial logistic regression model ... 0 0 0 1 0 0
19332 Indefinite Kernel Logistic Regression traditionally kernel learning methods requires... 1 0 0 1 0 0
19333 Microstructure and thickening of dense suspens... dense suspensions nonnewtonian fluids exhibit ... 0 1 0 0 0 0
19334 Learning at the Ends: From Hand to Tool Afford... one open challenges designing robots operate s... 1 0 0 1 0 0
19335 Rewriting in Free Hypergraph Categories study rewriting equational theories context sy... 1 0 0 0 0 0
19336 Weighting Scheme for a Pairwise Multi-label Cl... work addressed issue applying stochastic class... 1 0 0 1 0 0
19337 Wilcoxon Rank-Based Tests for Clustered Data w... wilcoxon rankbased tests distributionfree alte... 0 0 0 1 0 0
19338 Latent heterogeneous multilayer community dete... propose method simultaneously detecting shared... 1 0 0 1 0 0
19339 Understanding a Version of Multivariate Symmet... paper analyze behavior multivariate symmetric ... 1 0 0 1 0 0
19340 Approximation Dynamics describe approximation continuous dynamical sy... 0 0 1 0 0 0
19341 Sharp asymptotic and finite-sample rates of co... wasserstein distance two probability measures ... 0 0 1 1 0 0
19342 Ensuring patients privacy in a cryptographic-b... several recent works proposed implemented cryp... 1 0 0 0 0 0
19343 A Dynamically Reconfigurable Terahertz Array A... proof concept high speed nearfield imaging sub... 0 1 0 0 0 0
19344 Stationary C*-dynamical systems introduce notion stationary actions context ca... 0 0 1 0 0 0
19345 The impact of imbalanced training data on mach... supervised machine learning author name disamb... 0 0 0 1 0 0
19346 SIGNet: Scalable Embeddings for Signed Networks recent successes word embedding document embed... 1 0 0 1 0 0
19347 Spread of hate speech in online social media present online social media platform afflicted... 1 0 0 0 0 0
19348 GOOWE: Geometrically Optimum and Online-Weight... designing adaptive classifiers evolving data s... 1 0 0 0 0 0
19349 Graph Product Multilayer Networks: Spectral Pr... paper aims establish theoretical foundations g... 1 1 0 0 0 0
19350 Multilayer flows in molecular networks identif... variety complex systems exhibit different type... 0 0 0 0 1 0
19351 Using Artificial Neural Networks (ANN) to Cont... controlling chaos could big factor getting gre... 1 1 0 0 0 0
19352 Glassy quantum dynamics in translation invaria... investigate relaxation recently discovered fra... 0 1 0 0 0 0
19353 Saliency Guided Hierarchical Robust Visual Tra... saliency guided hierarchical visual tracking s... 1 0 0 0 0 0
19354 Comparison of machine learning methods for cla... present study shows performance cnn significan... 1 1 0 0 0 0
19355 A Semantics for Probabilistic Control-Flow Graphs article develops novel operational semantics p... 1 0 0 0 0 0
19356 Generalized Slow Roll in the Unified Effective... provide compact unified treatment power spectr... 0 1 0 0 0 0
19357 MgO thickness-induced spin reorientation trans... magnetic anisotropy moaucofeaumgo nmaucofeau h... 0 1 0 0 0 0
19358 Bjerrum Pairs in Ionic Solutions: a Poisson-Bo... ionic solutions often regarded fully dissociat... 0 1 0 0 0 0
19359 Neural-Brane: Neural Bayesian Personalized Ran... network embedding methodologies learn distribu... 0 0 0 1 0 0
19360 Pairwise $k$-Semi-Stratifiable Bispaces and To... paper continue study pairwise ksemistratifiabl... 0 0 1 0 0 0
19361 Ontology based system to guide internship assi... internship assignment complicated process univ... 1 0 0 0 0 0
19362 Vacancy-driven extended stability of cubic met... quantum mechanical calculations previously app... 0 1 0 0 0 0
19363 Why Do Neural Dialog Systems Generate Short an... paper addresses question neural dialog systems... 1 0 0 0 0 0
19364 Material Recognition CNNs and Hierarchical Pla... paper tackle problem visually predicting surfa... 1 0 0 0 0 0
19365 Non-Archimedean Replicator Dynamics and Eigen'... present new nonarchimedean model evolutionary ... 0 0 0 0 1 0
19366 D-optimal design for multivariate polynomial r... present new approach design doptimal experimen... 0 0 1 1 0 0
19367 A dynamic network model to measure exposure di... propose statistical model weighted temporal ne... 0 0 0 1 0 1
19368 Universal scaling in the Knight shift anomaly ... report dynamical cluster approximation dca inv... 0 1 0 0 0 0
19369 Reinforcement Learning Algorithm Selection paper formalises problem online algorithm sele... 1 0 1 1 0 0
19370 On periodic solutions of nonlinear wave equati... construct periodic solutions nonlinear wave eq... 0 0 1 0 0 0
19371 Automatic Discovery, Association Estimation an... attributebased recognition models due impressi... 1 0 0 0 0 0
19372 Variational Bayesian Inference For A Scale Mix... paper scale mixture normal distributions model... 0 0 0 1 0 0
19373 Energy stable discretization of Allen-Cahn typ... study systematic numerical approximation class... 0 0 1 0 0 0
19374 Hidden space reconstruction inspires link pred... fundamental challenge vast disciplines link pr... 1 1 0 0 0 0
19375 Maximum principles for the fractional p-Laplac... paper consider nonlinear equations involving f... 0 0 1 0 0 0
19376 On slowly rotating axisymmetric solutions of t... recent works constructed axisymmetric solution... 0 0 1 0 0 0
19377 Gapped paramagnetic state in a frustrated spin... implement coupled cluster method high orders a... 0 1 0 0 0 0
19378 Clouds in the atmospheres of extrasolar planet... clouds strong impact climate planetary atmosph... 0 1 0 0 0 0
19379 Segmentation of the Proximal Femur from MR Ima... magnetic resonance imaging mri proposed compli... 1 0 0 1 0 0
19380 Identifying On-time Reward Delivery Projects w... crowdfunding platforms people turn prototype i... 1 0 0 0 0 0
19381 Bayesian Model-Agnostic Meta-Learning learning infer bayesian posterior fewshot data... 0 0 0 1 0 0
19382 Distributed matching scheme and a flexible det... discuss distributed matching scheme accelerato... 0 1 0 0 0 0
19383 Group Metrics for Graph Products of Cyclic Groups complement characterization graph products cyc... 0 0 1 0 0 0
19384 Robust Online Multi-Task Learning with Correla... multitask learning mtl enhance classifiers gen... 1 0 0 1 0 0
19385 Cobordism maps on PFH induced by Lefschetz fib... note discuss cobordism maps periodic floer hom... 0 0 1 0 0 0
19386 A short note on the order of the Zhang-Liu mat... give necessary sufficient conditions zhangliu ... 0 0 1 0 0 0
19387 Proceedings of the 2017 ICML Workshop on Human... proceedings icml workshop human interpretabili... 1 0 0 1 0 0
19388 Ferromagnetic transition in a one-dimensional ... study quantum phase transition paramagnetic fe... 0 1 0 0 0 0
19389 Riemannian almost product manifolds generated ... dimensional riemannian manifold equipped circu... 0 0 1 0 0 0
19390 Transfer Learning for Performance Modeling of ... modern software systems provide many configura... 1 0 0 1 0 0
19391 Critique of Barbosa's "P != NP Proof" review andr luiz barbosas paper p np proof cla... 1 0 0 0 0 0
19392 Two-Armed Bandit Problem, Data Processing, and... consider minimax setup twoarmed bandit problem... 0 0 1 1 0 0
19393 Bearing fault diagnosis under varying working ... traditional intelligent fault diagnosis rollin... 1 0 0 0 0 0
19394 Dialectical Rough Sets, Parthood and Figures o... one perspective main theme research revolves a... 1 0 1 0 0 0
19395 On quasi-hereditary algebras paper introduce easily verifiable sufficient c... 0 0 1 0 0 0
19396 Clustering Analysis on Locally Asymptotically ... study problems clustering locally asymptotical... 0 0 0 1 0 0
19397 The OSIRIS-REx Visible and InfraRed Spectromet... osirisrex visible infrared spectrometer ovirs ... 0 1 0 0 0 0
19398 The effect of the smoothness of fractional typ... prove boundedness results integral operators f... 0 0 1 0 0 0
19399 Fast mean-reversion asymptotics for large port... consider large portfolio limit asset prices ev... 0 0 0 0 0 1
19400 Poincaré profiles of groups and spaces introduce spectrum monotone coarse invariants ... 0 0 1 0 0 0
19401 NMR Study of the New Magnetic Superconductor C... coexistence newtype antiferromagnetic afm stat... 0 1 0 0 0 0
19402 Light spanners for bounded treewidth graphs im... grigni hungcitegh conjectured hminorfree graph... 1 0 0 0 0 0
19403 Modeling Daily Seasonality of Mexico City Ozon... mexico city tracks groundlevel ozone levels as... 0 0 0 1 0 0
19404 Huygens-Fresnel Picture for Electron-Molecule ... elastic scattering cross sections slow electro... 0 1 0 0 0 0
19405 When Point Process Meets RNNs: Predicting Fine... predicting finegrained interests users tempora... 1 0 0 1 0 0
19406 Radiomics strategies for risk assessment of tu... quantitative extraction highdimensional mineab... 1 0 0 0 0 0
19407 Normalization of zero-inflated data: An empiri... recently two new indicators equalized meanbase... 1 0 0 0 0 0
19408 Gravity Formality show willwachers cyclic formality theorem exte... 0 0 1 0 0 0
19409 On the Feasibility of Distinguishing Between P... process control systems pcss operating core cr... 1 0 0 0 0 0
19410 Quantum hydrodynamic approximations to the fin... quantum kinetic system modelling boseeinstein ... 0 1 0 0 0 0
19411 Game-theoretic dynamic investment model with i... past years futures market successfully develop... 0 0 0 0 0 1
19412 Deep Collaborative Learning for Visual Recogni... deep neural networks playing important role st... 1 0 0 0 0 0
19413 Co-location Epidemic Tracking on London Public... public transports provide ideal means enable c... 1 0 0 0 0 0
19414 Waring-Goldbach Problem: One Square, Four Cube... let mathcalpr denote almostprime r prime facto... 0 0 1 0 0 0
19415 Realizability of tropical canonical divisors use recent results bainbridgechengendrongrushe... 0 0 1 0 0 0
19416 Causal inference for interfering units with cl... interference arises individuals potential outc... 0 0 1 1 0 0
19417 A Unifying Contrast Maximization Framework for... present unifying framework solve several compu... 1 0 0 0 0 0
19418 TensorFuzz: Debugging Neural Networks with Cov... machine learning models notoriously difficult ... 0 0 0 1 0 0
19419 Inferring directed climatic interactions with ... inferring interactions processes promises deep... 0 1 0 0 0 0
19420 Conditions for the invertibility of dual energ... alvarezmacovski method alvarez r e macovski en... 0 1 0 0 0 0
19421 Examples of lattice-polarized K3 surfaces with... using results lorentzian kacmoody algebras ari... 0 0 1 0 0 0
19422 Quantum ferrofluid turbulence study elementary characteristics turbulence qu... 0 1 0 0 0 0
19423 Estimation of the discontinuous leverage effec... extensive empirical literature documents gener... 0 0 1 1 0 0
19424 Group representations that resist worst-case s... motivated expansion cayley graphs show exist i... 0 0 1 0 0 0
19425 On the nearly smooth complex spaces introduce class normal complex spaces mild sin... 0 0 1 0 0 0
19426 Semi-supervised learning of hierarchical repre... rapid increase compound databases available me... 1 0 0 1 0 0
19427 Tracy-Widom at each edge of real covariance an... study sample covariance matrix realvalued data... 0 0 1 1 0 0
19428 Multi-stage Neural Networks with Single-sided ... lung nodule classification class imbalanced pr... 1 0 0 0 0 0
19429 Monochromatic knots and other unusual electrom... introduce examine collection unusual electroma... 0 1 0 0 0 0
19430 Zero-cycles of degree one on Skorobogatov's bi... skorobogatov constructed bielliptic surface co... 0 0 1 0 0 0
19431 Locally Nameless Permutation Types define locally nameless permutation types fuse... 1 0 0 0 0 0
19432 On dimension-free variational inequalities for... study dimensionfree lp inequalities rvariation... 0 0 1 0 0 0
19433 One-particle density matrix of trapped one-dim... oneparticle density matrix onedimensional tonk... 0 1 1 0 0 0
19434 Image Analysis Using a Dual-Tree $M$-Band Wave... propose generalization mband case dualtree dec... 1 1 1 0 0 0
19435 Nonlinear Cauchy-Riemann Equations and Liouvil... introduce nonlinear cauchyriemann equations bc... 0 1 1 0 0 0
19436 SmartPaste: Learning to Adapt Source Code deep neural networks shown succeed range natur... 1 0 0 0 0 0
19437 An Outcome Model Approach to Translating a Ran... participants enrolled randomized controlled tr... 0 0 0 1 0 0
19438 Influence of parameterized small-scale gravity... effects subgridscale gravity waves gws diurnal... 0 1 0 0 0 0
19439 A Statistical Model for Ideal Team Selection f... cricket game played two teams consists eleven ... 0 0 0 1 0 0
19440 The geometry of some generalized affine Spring... study basic geometric properties group analogu... 0 0 1 0 0 0
19441 Modelling of a Permanent Magnet Synchronous Ma... isogeometric analysis iga used simulate perman... 1 0 0 0 0 0
19442 Learning and Trust in Auction Markets paper study behavior bidders experimental laun... 1 0 0 0 0 0
19443 Like trainer, like bot? Inheritance of bias in... internet become central medium networked publi... 1 0 0 0 0 0
19444 Holographic Neural Architectures representation learning heart makes deep learn... 0 0 0 1 1 0
19445 An introduction to Topological Data Analysis: ... topological data analysis tda recent fast grow... 1 0 1 1 0 0
19446 Machine Learning by Two-Dimensional Hierarchic... resemblance methods used quantummany body phys... 0 1 0 1 0 0
19447 Hierarchical Imitation and Reinforcement Learning study effectively leverage expert feedback lea... 0 0 0 1 0 0
19448 Social learning in a simple task allocation game investigate effects social interactions task a... 1 0 0 0 0 0
19449 Guided projections for analysing the structure... powerful data transformation method named guid... 0 0 0 1 0 0
19450 Limits of Predictability of Cascading Overload... cascading failures critical vulnerability comp... 1 1 0 0 0 0
19451 Strong electron-hole symmetric Rashba spin-orb... despite extremely weak intrinsic spinorbit cou... 0 1 0 0 0 0
19452 Robust Statistics for Image Deconvolution present blind multiframe imagedeconvolution me... 1 1 0 0 0 0
19453 Nash and Wardrop equilibria in aggregative gam... consider framework aggregative games cost func... 1 0 1 0 0 0
19454 Magnetoresistance in the superconducting state... condensed matter systems simultaneously exhibi... 0 1 0 0 0 0
19455 Variational autoencoders for tissue heterogene... paper presents application variational autoenc... 1 0 0 1 0 0
19456 Learning General Latent-Variable Graphical Mod... paper propose new algorithm learning general l... 1 0 0 1 0 0
19457 Can interacting dark energy solve the $H_0$ te... answer yes indeed find interacting dark energy... 0 1 0 0 0 0
19458 Fast Switching Dual Fabry-Perot Cavity Optical... dual fabryperot cavity based optical refractom... 0 1 0 0 0 0
19459 A Large Self-Annotated Corpus for Sarcasm introduce selfannotated reddit corpus sarc lar... 1 0 0 0 0 0
19460 Aerosol properties in the atmospheres of extra... use model aerosol microphysics investigate imp... 0 1 0 0 0 0
19461 Influence of random opinion change in complex ... opinion formation population attracted extensi... 1 1 0 0 0 0
19462 We Are Not Your Real Parents: Telling Causal f... given data variables xxm consider problem find... 1 0 0 1 0 0
19463 Evolution of eccentricity and inclination of h... study evolution eccentricity inclination proto... 0 1 0 0 0 0
19464 Definitions in mathematics discuss various forms definitions mathematics ... 0 0 1 0 0 0
19465 Excellence in prime characteristic fix field k characteristic p kkp finite discus... 0 0 1 0 0 0
19466 Asymptotically optimal private estimation unde... consider minimax estimation problem discrete d... 1 0 1 1 0 0
19467 Coulomb repulsion of holes and competition bet... effect coulomb repulsion holes cooper instabil... 0 1 0 0 0 0
19468 Modeling Game Avatar Synergy and Opposition th... multiplayer online battle arena moba games rec... 1 0 0 0 0 0
19469 Design and Development of Effective Transmissi... tendondriven hand orthoses advantages exoskele... 1 0 0 0 0 0
19470 eXpose: A Character-Level Convolutional Neural... years security machine learning research promi... 1 0 0 0 0 0
19471 A Software Reuse Approach and Its Effect On So... software reusability become much interesting i... 1 0 0 0 0 0
19472 Portfolio Optimization with Nondominated Prior... consider classical merton problem terminal wea... 0 0 0 0 0 1
19473 Measuring heterogeneity in urban expansion via... lack efficiency urban diffusion debated issue ... 0 0 0 1 0 0
19474 Bayesian Cluster Enumeration Criterion for Uns... derive new bayesian information criterion bic ... 1 0 1 1 0 0
19475 Fuzzy Adaptive Tuning of a Particle Swarm Opti... combinatorial interaction testing important so... 1 0 0 0 0 0
19476 Is Life Most Likely Around Sun-like Stars? consider habitability earthanalogs around star... 0 1 0 0 0 0
19477 Maximum Entropy Generators for Energy-Based Mo... unsupervised learning capturing dependencies v... 1 0 0 1 0 0
19478 A Lifelong Learning Approach to Brain MR Segme... convolutional neural networks cnns shown promi... 0 0 0 1 0 0
19479 Hybrid Kinematic Control for Rigid Body Pose S... paper address rigid body pose stabilization pr... 1 0 1 0 0 0
19480 On 2d-4d motivic wall-crossing formulas paper propose definitions examples categorical... 0 0 1 0 0 0
19481 On Quitting: Performance and Practice in Onlin... study relationship performance practice analyz... 1 0 0 0 0 0
19482 Video Labeling for Automatic Video Surveillanc... beyond traditional security methods unmanned a... 1 0 0 0 0 0
19483 On density of subgraphs of Cartesian products paper extend two classical results density sub... 1 0 0 0 0 0
19484 Replica Analysis for Maximization of Net Prese... paper use replica analysis determine investmen... 0 0 0 0 0 1
19485 On some properties of weak solutions to ellipt... discuss local properties weak solutions equati... 0 0 1 0 0 0
19486 The heptagon-wheel cocycle in the Kontsevich g... real vector space nonoriented graphs known car... 0 0 1 0 0 0
19487 Maneuver Regulation for Accelerating Bodies in... order address need affordable reduced gravity ... 1 0 0 0 0 0
19488 A Hybrid Deep Learning Approach for Texture An... texture classification problem various applica... 1 0 0 0 0 0
19489 Accounting Noise and the Pricing of CoCos contingent convertible bonds cocos debt instru... 0 0 0 0 0 1
19490 An Improved Algorithm for E-Generalization egeneralization computes common generalization... 1 0 0 0 0 0
19491 On quartic double fivefolds and the matrix fac... study quartic double fivefolds perspective fan... 0 0 1 0 0 0
19492 Atmospheric thermal tides and planetary spin I... thermal atmospheric tides torque telluric plan... 0 1 0 0 0 0
19493 Inferring Generative Model Structure with Stat... obtaining enough labeled data robustly train c... 1 0 0 1 0 0
19494 Maslov, Chern-Weil and Mean Curvature provide integral formula maslov index pair ef ... 0 0 1 0 0 0
19495 Tuning Goodness-of-Fit Tests modern precision cosmological measurements con... 0 1 0 0 0 0
19496 The Lubin-Tate stack and Gross-Hopkins duality morava etheory e einftyring action morava stab... 0 0 1 0 0 0
19497 Generalized Probabilistic Bisection for Stocha... consider numerical schemes root finding noisy ... 1 0 0 1 0 0
19498 Towards Proof Synthesis Guided by Neural Machi... inspired recent evolution deep neural networks... 1 0 0 0 0 0
19499 Fibonacci words in hyperbolic Pascal triangles hyperbolic pascal triangle cal hptq qge new ma... 1 0 0 0 0 0
19500 A Review on Quantile Regression for Stochastic... report empirical study main strategies conditi... 1 0 0 1 0 0
19501 Scalability of Voltage-Controlled Filamentary ... much effort devoted device materials engineeri... 0 1 0 0 0 0
19502 Functional geometry of protein-protein interac... motivation proteinprotein interactions ppis us... 0 0 0 0 1 0
19503 A Two-Layer Component-Based Allocation for Emb... componentbased development software engineerin... 1 0 0 0 0 0
19504 Sales Forecast in E-commerce using Convolution... sales forecast essential task ecommerce crucia... 1 0 0 0 0 0
19505 On normalization of inconsistency indicators i... study provide mathematical practicedriven just... 1 0 0 0 0 0
19506 Gamma factors of intertwining periods and dist... let f padic fied e quadratic extension f fdivi... 0 0 1 0 0 0
19507 Spin-flip scattering selection in a controlled... simple doubledecker molecule magnetic anisotro... 0 1 0 0 0 0
19508 Mean-Field Sparse Jurdjevic--Quinn Control consider nonlinear transport equations nonloca... 0 0 1 0 0 0
19509 Sampling from Social Networks with Attributes sampling large networks represents fundamental... 1 1 0 0 0 0
19510 Exploiting Investors Social Network for Stock ... recent works shown social media platforms able... 0 0 0 0 0 1
19511 Singing Style Transfer Using Cycle-Consistent ... make famous rap singer like eminem sing whatev... 1 0 0 0 0 0
19512 A Deep Learning Based 6 Degree-of-Freedom Loca... present robust deep learning based degreesoffr... 1 0 0 0 0 0
19513 On a cross-diffusion system arising in image d... study generalization crossdiffusion problem de... 0 0 1 0 0 0
19514 Locally Repairable Codes with Multiple $(r_{i}... distributed storage systems locally repairable... 1 0 0 0 0 0
19515 Reconciling Enumerative and Symbolic Search in... syntaxguided synthesis aims find program satis... 1 0 0 0 0 0
19516 Periodic solutions of semilinear Duffing equat... paper concerned existence periodic solutions s... 0 1 1 0 0 0
19517 Spectral and scattering theory for perturbed b... analyse spectral properties class compact pert... 0 0 1 0 0 0
19518 Robust adaptive droop control for DC microgrids tradeoffs current sharing among distributed re... 0 0 1 0 0 0
19519 Off-diagonal asymptotic properties of Bergman ... prove new offdiagonal asymptotic bergman kerne... 0 0 1 0 0 0
19520 Network Backboning with Noisy Data networks powerful instruments study complex ph... 1 1 0 0 0 0
19521 The 2017 DAVIS Challenge on Video Object Segme... present davis challenge video object segmentat... 1 0 0 0 0 0
19522 How to Ask for Technical Help? Evidence-based ... context success stack overflow communitybased ... 1 0 0 0 0 0
19523 Advanced Quantizer Designs for FDD-Based FD-MI... massive multipleinput multipleoutput mimo syst... 1 0 0 0 0 0
19524 A Novel Stretch Energy Minimization Algorithm ... surface parameterizations widely applied compu... 1 0 0 0 0 0
19525 Time Complexity Analysis of a Distributed Stoc... paper consider distributed stochastic optimiza... 1 0 1 0 0 0
19526 Robust Counterfactual Inferences using Feature... wide variety applications including personaliz... 0 0 0 1 0 0
19527 Regularity of symbolic powers and Arboricity o... let delta simplicial complex matroid paper exp... 0 0 1 0 0 0
19528 Max-Pooling Loss Training of Long Short-Term M... propose maxpooling based loss function trainin... 1 0 0 1 0 0
19529 On Packet Scheduling with Adversarial Jamming ... packet scheduling adversarial jamming packets ... 1 0 0 0 0 0
19530 Coarse-Grid Computational Fluid Dynamic (CG-CF... despite progress high performance computing co... 0 1 0 0 0 0
19531 EAC-Net: A Region-based Deep Enhancing and Cro... paper propose deep learning based approach fac... 1 0 0 0 0 0
19532 Influence of surface and bulk water ice on the... surface icy dust grains dense regions interste... 0 1 0 0 0 0
19533 Impact of energy dissipation on interface shap... revisit fundamental problem liquidliquid dewet... 0 1 0 0 0 0
19534 Resonance control of graphene drum resonator i... demonstrate control resonance characteristics ... 0 1 0 0 0 0
19535 Uncertainty quantification of coal seam gas pr... surrogate model approximates computationally e... 0 0 1 0 0 0
19536 Multi-objective Model-based Policy Search for ... dataefficient algorithms reinforcement learnin... 1 0 0 1 0 0
19537 Non-Asymptotic Analysis of Robust Control from... work explores tradeoff number samples required... 1 0 1 0 0 0
19538 Construction,sensitivity index, and synchroniz... stability instability synchronization importan... 0 1 1 0 0 0
19539 A Vorticity-Preserving Hydrodynamical Scheme f... vortices turbulence unsteady nonlaminar flows ... 0 1 0 0 0 0
19540 Direct simulation of liquid-gas-solid flow wit... direct numerical simulation liquidgassolid flo... 0 1 0 0 0 0
19541 TALL: Temporal Activity Localization via Langu... paper focuses temporal localization actions un... 1 0 0 0 0 0
19542 2D granular flows with the $μ(I)$ rheology and... present numerical modelling granular flows mui... 0 1 0 0 0 0
19543 A scientists' view of scientometrics: Not ever... like attempts evaluate monitor quality academi... 1 1 0 0 0 0
19544 On analyzing and evaluating privacy measures f... widespread usage complex interconnected social... 1 0 0 0 0 0
19545 Mitigation of Policy Manipulation Attacks on D... recent developments established vulnerability ... 0 0 0 1 0 0
19546 Multi-Observation Elicitation study loss functions measure accuracy predicti... 1 0 0 0 0 0
19547 Next Stop "NoOps": Enabling Cross-System Diagn... performing diagnostics systems increasingly co... 1 0 0 0 0 0
19548 Davenport-Heilbronn Theorems for Quotients of ... prove generalization davenportheilbronn theore... 0 0 1 0 0 0
19549 Learning Universal Adversarial Perturbations w... neural networks known vulnerable adversarial e... 1 0 0 1 0 0
19550 Large-Scale Classification using Multinomial R... present novel method learning weights multinom... 1 0 0 1 0 0
19551 First order dipolar phase transition in the Di... found analytically first order quantum phase t... 0 1 0 0 0 0
19552 Parsimonious Bayesian deep networks combining bayesian nonparametrics forward mode... 0 0 0 1 0 0
19553 Learning to Play Othello with Deep Neural Netw... achieving superhuman playing level alphago cor... 1 0 0 1 0 0
19554 A causal modelling framework for reference-bas... consider estimating de facto effectiveness est... 0 0 0 1 0 0
19555 The paradigm-shift of social spambots: Evidenc... recent studies social media spam automation pr... 1 0 0 0 0 0
19556 Weakly-Supervised Spatial Context Networks explore power spatial context selfsupervisory ... 1 0 0 0 0 0
19557 Variation of ionizing continuum: the main driv... present statistical analysis variability broad... 0 1 0 0 0 0
19558 Low Dimensional Atomic Norm Representations in... line spectral estimation problem consists reco... 1 0 0 0 0 0
19559 The Trio Identity for Quasi-Monte Carlo Error monte carlo methods approximate integrals samp... 0 0 1 0 0 0
19560 Weak type operator Lipschitz and commutator es... let f mathbbrd tomathbbr lipschitz function b ... 0 0 1 0 0 0
19561 Fast Spectral Ranking for Similarity Search despite success deep learning representing ima... 1 0 0 0 0 0
19562 Transition of multi-diffusive states in a bias... study frequencydependent damping model hyperdi... 0 1 0 0 0 0
19563 Deformable Classifiers geometric variations objects modify object cla... 0 0 0 1 0 0
19564 Energy Dissipation in Hamiltonian Chains of Ro... discuss context energy flow highdimensional sy... 0 1 1 0 0 0
19565 Computational complexity, torsion-freeness of ... floer theory originally devised estimate numbe... 0 0 1 0 0 0
19566 Ancillarity-Sufficiency Interweaving Strategy ... bayesian inference stochastic volatility model... 0 0 0 1 0 0
19567 Simple root flows for Hitchin representations study simple root flows liouville currents hit... 0 0 1 0 0 0
19568 On the Origin of Deep Learning paper review evolutionary history deep learnin... 1 0 0 1 0 0
19569 Control of Asynchronous Imitation Dynamics on ... imitation widely observed populations decision... 1 1 0 0 0 0
19570 Finsler structures on holomorphic Lie algebroids complex finsler vector bundles studied mainly ... 0 0 1 0 0 0
19571 The role of complex analysis in modeling econo... development growth complex tumultuous processe... 0 0 0 0 0 1
19572 Inputs from Hell: Generating Uncommon Inputs f... generating structured input files test program... 1 0 0 0 0 0
19573 On equivariant formal deformation theory using setup deformation categories talpo visto... 0 0 1 0 0 0
19574 A self-consistent cloud model for brown dwarfs... developed simple physical selfconsistent cloud... 0 1 0 0 0 0
19575 Consistency Between the Luminosity Function of... fermi large area telescope data reveal excess ... 0 1 0 0 0 0
19576 First functionality tests of a 64 x 64 pixel D... european xray free electron laser xfeleu provi... 0 1 0 0 0 0
19577 Label Propagation on K-partite Graphs with Het... paper first time study label propagation heter... 1 0 0 0 0 0
19578 On LoRaWAN Scalability: Empirical Evaluation o... appearing stage quite recently low power wide ... 1 0 0 0 0 0
19579 DeepSD: Generating High Resolution Climate Cha... impacts climate change felt critical systems i... 1 0 0 0 0 0
19580 Statistical analysis of the ambiguities in the... among asteroids exist ambiguities rotation per... 0 1 0 0 0 0
19581 The Assistive Multi-Armed Bandit learning preferences implicit choices humans m... 1 0 0 1 0 0
19582 Localized Manifold Harmonics for Spectral Shap... use laplacian eigenfunctions ubiquitous wide r... 1 0 0 0 0 0
19583 How to Search the Internet Archive Without Ind... significant parts cultural heritage produced w... 1 0 0 0 0 0
19584 Quantum Dot at a Luttinger liquid edge - Exact... study system consisting luttinger liquid coupl... 0 1 0 0 0 0
19585 Optimal Jittered Sampling for two Points in th... jittered sampling refinement classical monte c... 0 0 1 0 0 0
19586 Brain structural connectivity atrophy in Alzhe... analysis quantification brain structural chang... 0 1 0 0 0 0
19587 Probabilistic Combination of Noisy Points and ... work proposes visual odometry method combines ... 1 0 0 0 0 0
19588 Autoignition of Butanol Isomers at Low to Inte... autoignition delay experiments isomers butanol... 0 1 0 0 0 0
19589 On the $k$-abelian complexity of the Cantor se... paper prove every integer k geq kabelian compl... 1 0 1 0 0 0
19590 Sharp rates of convergence for accumulated spe... investigate inverse problem timefrequency loca... 0 0 1 0 0 0
19591 Putting a Face to the Voice: Fusing Audio and ... paper present system associates faces voices v... 1 0 0 0 0 0
19592 Topological Interplay between Knots and Entang... paper kelvin wave knot dynamics studied three ... 0 1 0 0 0 0
19593 The first and second fundamental theorems of i... develop noncommutative polynomial version inva... 0 0 1 0 0 0
19594 Poly-Spline Finite Element Method introduce integrated meshing finite element me... 1 0 0 0 0 0
19595 Turing Completeness of Finite, Epistemic Programs note show class finite epistemic programs turi... 1 0 0 0 0 0
19596 Spontaneous domain formation in disordered cop... motivated problem domain formation chromosomes... 0 0 0 0 1 0
19597 Reconstruction of Correlated Sources with Ener... paper investigate reconstruction timecorrelate... 1 0 0 0 0 0
19598 Future of Flexible Robotic Endoscopy Systems robotics enables variety unconventional actuat... 1 1 0 0 0 0
19599 Shear-driven parametric instability in a prece... present numerical study aims shedding light me... 0 1 0 0 0 0
19600 Linear-Size Hopsets with Small Hopbound, and D... positive parameter beta betabounded distance p... 1 0 0 0 0 0
19601 The Openpipeflow Navier--Stokes Solver pipelines used huge range industrial processes... 0 1 0 0 0 0
19602 Logical and Inequality Implications for Reduci... quadratic unconstrained binary optimization qu... 1 0 0 0 0 0
19603 Optimal Decentralized Economical-sharing Crite... order address economical dispatch problem isla... 1 0 0 0 0 0
19604 Unbiased inference for discretely observed hid... develop importance sampling type estimator bay... 0 0 0 1 0 0
19605 Electric propulsion reliability: statistical a... hundred spacecraft launched date electric prop... 0 1 0 1 0 0
19606 A Bayesian Framework for Cosmic String Searche... exists various proposals detect cosmic strings... 0 1 0 0 0 0
19607 Constraining the giant planets' initial config... recent works planetary migration show orbital ... 0 1 0 0 0 0
19608 General AI Challenge - Round One: Gradual Lear... general ai challenge initiative encourage wide... 1 0 0 0 0 0
19609 DeepAR: Probabilistic Forecasting with Autoreg... key enabler optimizing business processes accu... 1 0 0 1 0 0
19610 Algebraic and logistic investigations on free ... lorenzens algebraische und logistische untersu... 0 0 1 0 0 0
19611 Online Interactive Collaborative Filtering Usi... online interactive recommender systems strive ... 1 0 0 0 0 0
19612 Learning Latent Features with Pairwise Penalti... lowrank matrix completion mc achieved great su... 0 0 0 1 0 0
19613 Renewal theorems and mixing for non Markov flo... obtain results mixing large class necessarily ... 0 0 1 0 0 0
19614 Post-hoc labeling of arbitrary EEG recordings ... many cognitive sensory motor processes correla... 1 0 0 1 0 0
19615 Sums of two cubes as twisted perfect powers, r... paper sharpen earlier work first author luca m... 0 0 1 0 0 0
19616 A Review on Bilevel Optimization: From Classic... bilevel optimization defined mathematical prog... 1 0 1 0 0 0
19617 Speaker Recognition with Cough, Laugh and "Wei" paper proposes speaker recognition sre task tr... 1 0 0 0 0 0
19618 Explicit equations for two-dimensional water w... governing equations twodimensional inviscid fr... 0 1 0 0 0 0
19619 On the Global Limiting Absorption Principle fo... prove global limiting absorption principle ent... 0 0 1 0 0 0
19620 Rotation Averaging and Strong Duality paper explore role duality principles within p... 1 0 0 0 0 0
19621 Active Learning with Gaussian Processes for Hi... looming question must solved robotic plant phe... 1 0 0 1 0 0
19622 Comparative Autoignition Trends in the Butanol... autoignition experiments stoichiometric mixtur... 0 1 0 0 0 0
19623 A cross-vendor and cross-state analysis of the... crowdsourced gps probe data become major sourc... 0 0 0 1 0 0
19624 Determining Phonon Coherence Using Photon Side... generating detection coherent highfrequency he... 0 1 0 0 0 0
19625 Landscape of Configurational Density of States... classical manybody systems recent study reveal... 0 1 0 0 0 0
19626 On the domain of Dirac and Laplace type operat... consider generalized dirac operator compact st... 0 0 1 0 0 0
19627 Modeling Influence with Semantics in Social Ne... discovery influential entities kinds networks ... 1 0 0 0 0 0
19628 Differentiable Submodular Maximization consider learning submodular functions data fu... 0 0 0 1 0 0
19629 On the Support of Weight Modules for Affine Ka... irreducible weight module affine kacmoody alge... 0 0 1 0 0 0
19630 The middle-scale asymptotics of Wishart matrices study behavior real pdimensional wishart rando... 0 0 1 1 0 0
19631 Online Spatial Concept and Lexical Acquisition... paper propose online learning algorithm based ... 1 0 0 0 0 0
19632 The Method of Arbitrarily Large Moments to Cal... device new method calculate large number melli... 1 0 1 0 0 0
19633 Unraveling the escape dynamics and the nature ... escape mechanism orbits star cluster rotating ... 0 1 0 0 0 0
19634 The ALMA Early Science View of FUor/EXor objec... present atacama large millimeter submillimeter... 0 1 0 0 0 0
19635 Hydrodynamical models of cometary HII regions modelled evolution cometary hii regions produc... 0 1 0 0 0 0
19636 Feature Selection based on the Local Lift Depe... paper uses classical approach feature selectio... 1 0 0 1 0 0
19637 Weyl Rings and enhanced susceptibilities in Py... match analytic results numerical calculations ... 0 1 0 0 0 0
19638 Inconsistency of Template Estimation by Minimi... tackle problem template estimation data random... 0 0 1 1 0 0
19639 Surrogate-Based Bayesian Inverse Modeling of t... bayesian inverse modeling important better und... 0 0 0 1 0 0
19640 On The Construction of Extreme Learning Machin... oneclass classification occ prime concern rese... 1 0 0 1 0 0
19641 2nd order PDEs: geometric and functional consi... introduction papers deals partial differential... 0 0 1 0 0 0
19642 Adversarial Perturbation Intensity Achieving C... machine learning models shown vulnerable adver... 0 0 0 1 0 0
19643 Data Aggregation and Packet Bundling of Uplink... cellular massive machinetype communications mt... 1 0 0 0 0 0
19644 The GTC exoplanet transit spectroscopy survey.... report first detection sodium absorption atmos... 0 1 0 0 0 0
19645 That's Enough: Asynchrony with Standard Choreo... choreographies widely used specification concu... 1 0 0 0 0 0
19646 Doing Things Twice (Or Differently): Strategie... reproducibility crisis highly visible source s... 1 1 0 0 0 0
19647 SciSports: Learning football kinematics throug... scisports dutch startup company specializing f... 0 0 0 1 0 0
19648 A Model-based Projection Technique for Segment... consider problem segmenting large population c... 1 0 0 1 0 0
19649 Distinct Effects of Cr Bulk Doping and Surface... report shown cr doped bulk cr deposited surfac... 0 1 0 0 0 0
19650 High-Performance Code Generation though Fusion... present technique automatically transforming k... 1 0 0 0 0 0
19651 Language Model Pre-training for Hierarchical D... hierarchical neural architectures often used c... 1 0 0 0 0 0
19652 Interpretation of Semantic Tweet Representations research analysis microblogging platforms expe... 1 0 0 0 0 0
19653 LoIDE: a web-based IDE for Logic Programming -... logicbased paradigms nowadays widely used many... 1 0 0 0 0 0
19654 Introduction to finite mixtures mixture models around years intuitively simple... 0 0 0 1 0 0
19655 On the complexity of the projective splitting ... work study pointwise ergodic iterationcomplexi... 0 0 1 0 0 0
19656 Demystifying Relational Latent Representations latent features learned deep learning approach... 1 0 0 1 0 0
19657 A direct method to compute the galaxy count an... near future cosmology enter wide deep galaxy s... 0 1 0 0 0 0
19658 Contributors profile modelization in crowdsour... crowdsourcing consists externalisation tasks c... 1 0 0 0 0 0
19659 Discrete versions of the Li-Yau gradient estimate study positive solutions heat equation graphs ... 0 0 1 0 0 0
19660 Efficient Modelling & Forecasting with range b... paper considers alternative method fitting car... 0 0 1 1 0 0
19661 A Constrained Shortest Path Scheme for Virtual... virtual network services span multiple data ce... 1 0 0 0 0 0
19662 Tunneling of Glashow-Weinberg-Salam model part... using semiclassical wkb approximation hamilton... 0 1 0 0 0 0
19663 Symbolic, Distributed and Distributional Repre... natural language symbols intimately correlated... 1 0 0 0 0 0
19664 Joint Embedding of Graphs feature extraction dimension reduction network... 1 0 0 1 0 0
19665 Tuples of polynomials over finite fields with ... let q prime power estimate number tuples degre... 0 0 1 0 0 0
19666 Pythagorean theorem of Sharpe ratio present paper using replica analysis examine p... 0 1 1 0 0 0
19667 Learning to Generate Posters of Scientific Pap... researchers often summarize work form scientif... 1 0 0 0 0 0
19668 Transformable Biomimetic Liquid Metal Chameleon liquid metal lm current core interest wide var... 0 1 0 0 0 0
19669 Local Private Hypothesis Testing: Chi-Square T... local model differential privacy emerging refe... 1 0 1 1 0 0
19670 Rapid point-of-care Hemoglobin measurement thr... lowcost robust simple mechanism measure hemogl... 0 1 0 1 0 0
19671 Families of sets with no matchings of sizes 3 ... paper study following classical question extre... 1 0 1 0 0 0
19672 Light fields in complex media: mesoscopic scat... newly emerging field wave front shaping comple... 0 1 0 0 0 0
19673 Tailoring Product Ownership in Large-Scale Agile largescale agile projects product owners under... 1 0 0 0 0 0
19674 Gravitational wave, collider and dark matter s... analyse simple extension sm additional scalar ... 0 1 0 0 0 0
19675 Canonical correlation coefficients of high-dim... consider gaussian vector mathbfzmathbfxmathbfy... 0 0 1 1 0 0
19676 Synthesizing Normalized Faces from Facial Iden... present method synthesizing frontal neutralexp... 1 0 0 1 0 0
19677 One-Shot Coresets: The Case of k-Clustering scaling clustering algorithms massive data set... 1 0 0 1 0 0
19678 Multiple nodal solutions of nonlinear Choquard... paper consider existence multiple nodal soluti... 0 0 1 0 0 0
19679 Computational Sufficiency, Reflection Groups, ... study estimators generalized lasso penalties w... 0 0 0 1 0 0
19680 Driving Simulator Platform for Development and... according data united nations people died day ... 1 0 0 0 0 0
19681 Electrical transient laws in neuronal microdom... currentvoltage iv conversion characterizes phy... 0 0 0 0 1 0
19682 Characterization of a Deuterium-Deuterium Plas... characterize neutron output deuteriumdeuterium... 0 1 0 0 0 0
19683 Turbulent Mass Inhomogeneities induced by a po... describe turbulence distributes tracers away l... 0 1 0 0 0 0
19684 Berezin-toeplitz quantization and complex weyl... paper give correspondence berezintoeplitz comp... 0 0 1 0 0 0
19685 Conformal predictive distributions with kernels paper reviews checkered history predictive dis... 1 0 0 1 0 0
19686 Degree bound for toric envelope of a linear al... algorithms working linear algebraic groups oft... 1 0 0 0 0 0
19687 The Modified Lommel functions: monotonic patte... article studies monotonicity logconvexity modi... 0 0 1 0 0 0
19688 Anticipating epileptic seizures through the an... epilepsy neurological disorder arising anomali... 0 0 0 0 1 0
19689 On distances in lattices from algebraic number... paper study classical construction lattices nu... 0 0 1 0 0 0
19690 Significance of distinct electron correlation ... parity timereversal violating electric dipole ... 0 1 0 0 0 0
19691 Facilitating information system development wi... increasing amount information absence effectiv... 1 0 0 0 0 0
19692 Neutron Diffraction and $μ$SR Studies of Two P... neutron diffraction muon spin relaxation musr ... 0 1 0 0 0 0
19693 Semiclassical Propagation: Hilbert Space vs. W... unified viewpoint van vleck hermankluk propaga... 0 1 0 0 0 0
19694 Dynamic analysis and control PID path of a mod... paper presents alternate form dynamic modellin... 1 1 0 0 0 0
19695 Dynamic Minimum Spanning Forest with Subpolyno... present las vegas algorithm dynamically mainta... 1 0 0 0 0 0
19696 Quantization and Training of Neural Networks f... rising popularity intelligent mobile devices d... 1 0 0 1 0 0
19697 airpred: A Flexible R Package Implementing Met... fine particulate matter pm one criteria air po... 0 0 0 1 0 0
19698 Accurate and Efficient Profile Matching in Kno... profile describes set properties eg set skills... 1 0 0 0 0 0
19699 Boötes-HiZELS: an optical to near-infrared sur... present sample sim emission line galaxies z si... 0 1 0 0 0 0
19700 Efficient Constrained Tensor Factorization by ... tensor factorization hard andor soft constrain... 1 0 0 0 0 0
19701 Replay spoofing detection system for automatic... paper propose replay attack spoofing detection... 1 0 0 1 0 0
19702 On One Property of Tikhonov Regularization Alg... linear inverse problem gaussian random noise s... 0 0 1 1 0 0
19703 Observation of Extra Photon Recoil in a Distor... light carries momentum induces atoms recoil ph... 0 1 0 0 0 0
19704 Weak Poincaré Inequalities for Convergence Rat... contraction csemigroup separable hilbert space... 0 0 1 0 0 0
19705 rTraceroute: Réunion Traceroute Visualisation traceroute main tools explore internet path pr... 1 0 0 0 0 0
19706 Effects of heterogeneity in site-site coupling... studied thermodynamic behaviors noninteracting... 0 1 0 0 0 0
19707 Are generative deep models for novelty detecti... many deep models recently proposed anomaly det... 0 0 0 1 0 0
19708 Minimizing the waiting time for a one-way shut... consider terminal users arrive continuously fi... 0 0 1 0 0 0
19709 Two weight bump conditions for matrix weights paper extend theory two weight ap bump conditi... 0 0 1 0 0 0
19710 Legendrian ribbons and strongly quasipositive ... show link open book realized strongly quasipos... 0 0 1 0 0 0
19711 Δ-cumulants in terms of moments deltaconvolution real probability measures int... 0 0 1 0 0 0
19712 A Fully Convolutional Network for Semantic Lab... classifying point clouds large amount time dev... 1 0 0 1 0 0
19713 Boundedness properties in function spaces boundedness properties function spaces conside... 0 0 1 0 0 0
19714 Linear-size CDAWG: new repetition-aware indexi... paper propose novel approach combine emphcompa... 1 0 0 0 0 0
19715 Topic Lifecycle on Social Networks: Analyzing ... topic lifecycle analysis twitter branch study ... 1 0 0 0 0 0
19716 Unstable Footwear as a Speed-Dependent Noise-B... previous research unstable footwear suggested ... 0 1 0 0 0 0
19717 Gaussian autoregressive process with dependent... paper introduce modified version gaussian stan... 0 0 1 1 0 0
19718 Structured Peer Learning Program - An Innovati... structured peer learning spl form peerbased su... 1 0 0 0 0 0
19719 Analysis of the possibility for time-optimal c... monograph represents analysis possibility time... 1 0 0 0 0 0
19720 Machine vs Machine: Minimax-Optimal Defense Ag... recently researchers discovered stateoftheart ... 1 0 0 1 0 0
19721 From Attention to Participation: Reviewing and... last decades internet mobile technology consol... 1 0 0 0 0 0
19722 Circularizing Planet Nine through dynamical fr... unexpected clustering orbital elements minor b... 0 1 0 0 0 0
19723 Tactics of Adversarial Attack on Deep Reinforc... introduce two tactics attack agents trained de... 1 0 0 1 0 0
19724 Differentially Private Distributed Learning fo... one big challenges machine learning applicatio... 1 0 0 0 0 0
19725 Tensor Train Neighborhood Preserving Embedding paper propose tensor train neighborhood preser... 1 0 0 1 0 0
19726 Explicit three dimensional topology optimizati... three dimensional topology optimization proble... 0 1 0 0 0 0
19727 The index of compact simple Lie groups let irreducible riemannian symmetric space ind... 0 0 1 0 0 0
19728 Cell Tracking via Proposal Generation and Sele... microscopy imaging plays vital role understand... 1 0 0 0 0 0
19729 Geometric Properties of Isostables and Basins ... paper study geometric properties basins attrac... 1 0 1 0 0 0
19730 Elongation and shape changes in organisms with... generation anisotropic shapes occurs morphogen... 0 0 0 0 1 0
19731 Localic completion of uniform spaces extend notion localic completion generalised m... 1 0 1 0 0 0
19732 Kinetic inhibition of MHD-shocks in the vicini... according magnetohydrodynamics mhd encounter t... 0 1 0 0 0 0
19733 Squeezed Convolutional Variational AutoEncoder... paper propose squeezed convolutional variation... 1 0 0 0 0 0
19734 Global Weisfeiler-Lehman Graph Kernels stateoftheart graph kernels take local graph p... 1 0 0 1 0 0
19735 An analytical Model which Determines the Appar... quantitative nuclear magnetic resonance imagin... 0 1 0 0 0 0
19736 Updated Constraints on the Dark Matter Interpr... present updated halodependent haloindependent ... 0 1 0 0 0 0
19737 Emulating Simulations of Cosmic Dawn for 21cm ... current upcoming radio interferometric experim... 0 1 0 0 0 0
19738 Fluctuations and Noise Signatures of Driven Ma... magnetic skyrmions particlelike objects topolo... 0 1 0 0 0 0
19739 Metallic maps between metallic Riemannian mani... paper introduce metallic maps metallic riemann... 0 0 1 0 0 0
19740 Hashing as Tie-Aware Learning to Rank hashing learning binary embeddings data freque... 1 0 0 1 0 0
19741 Models of compact stars on paraboloidal spacet... new exact solution einsteins field equations b... 0 1 0 0 0 0
19742 Adversarial Connective-exploiting Networks for... implicit discourse relation classification gre... 1 0 0 1 0 0
19743 An Input Reconstruction Approach for Command F... idea posing command following tracking control... 1 0 0 0 0 0
19744 Simulation Framework for Cooperative Adaptive ... wireless communication plays vital role promis... 1 0 0 0 0 0
19745 Synchronization of Kuramoto oscillators in a b... paper studies synchronization finite number ku... 1 0 0 0 0 0
19746 On Exchangeability in Network Models derive representation theorems exchangeable di... 0 0 1 1 0 0
19747 Replicator equation on networks with degree re... replicator equation one fundamental tools stud... 0 0 0 0 1 0
19748 Go game formal revealing by Ising model go gaming struggle territory control rival bla... 1 0 0 0 0 0
19749 High resolution structural characterisation of... laser writing ultrashort pulses provides poten... 0 1 0 0 0 0
19750 Neural networks for post-processing ensemble w... ensemble weather predictions require statistic... 0 0 0 1 0 0
19751 Power maps in finite groups recent work pomerance shparlinski obtained res... 0 0 1 0 0 0
19752 Permutation polynomials, fractional polynomial... note prove conjecture li qu li fu permutation ... 0 0 1 0 0 0
19753 Recursive Whitening Transformation for Speaker... recently speaker recognition performance degra... 1 0 0 0 0 0
19754 Learning Representations for Soft Skill Matching employers actively look talents specific hard ... 0 0 0 1 0 0
19755 Time-reversal and spatial reflection symmetry ... study class anomalies associated timereversal ... 0 1 0 0 0 0
19756 Extending the modeling of the anisotropic gala... present new model redshiftspace power spectrum... 0 1 0 0 0 0
19757 Finite rank and pseudofinite groups proven infinite finitely generated group canno... 0 0 1 0 0 0
19758 Thermographic measurements of the spin Peltier... spin peltier effect spe heatcurrent generation... 0 1 0 0 0 0
19759 Number-theoretic aspects of 1D localization: "... discuss numbertheoretic properties distributio... 0 1 1 0 0 0
19760 Super-Convergence: Very Fast Training of Neura... paper describe phenomenon named superconvergen... 1 0 0 1 0 0
19761 Space of initial conditions for a cubic Hamilt... paper perform analysis leads space initial con... 0 1 1 0 0 0
19762 Electronic properties of WS$_2$ on epitaxial g... work reports electronic microstructural study ... 0 1 0 0 0 0
19763 Electrical transport and optical band gap of N... fabricated nifetextrmotextrmx thin films mgalo... 0 1 0 0 0 0
19764 Towards parallelizable sampling-based Nonlinea... paper proposes new samplingbased nonlinear mod... 1 0 0 0 0 0
19765 Quantum decoherence from entanglement during i... study primary entanglement effect decoherence ... 0 1 0 0 0 0
19766 Breast density classification with deep convol... breast density classification essential part b... 1 0 0 1 0 0
19767 Spatial Integration by a Dielectric Slab Waveg... motivated recent progress analog computing sci... 0 1 0 0 0 0
19768 Modeling the Biological Pathology Continuum wi... crucial challenge imagebased modeling biomedic... 1 0 0 1 0 0
19769 Control Problems with Vanishing Lie Bracket Ar... study optimal control problem arising generali... 1 0 0 0 0 0
19770 Teaching DevOps in Corporate Environments: An ... paper describes experience training team devel... 1 0 0 0 0 0
19771 WKB solutions of difference equations and reco... purpose article analyze connection eynardorant... 0 1 1 0 0 0
19772 Diagrammatic Exciton Basis Theory of the Photo... covalently linked acene dimers interest candid... 0 1 0 0 0 0
19773 Developing and evaluating an interactive tutor... discuss investigation student difficulties deg... 0 1 0 0 0 0
19774 Time optimal sampled-data controls for heat eq... paper first design time optimal control proble... 0 0 1 0 0 0
19775 Malware distributions and graph structure of t... knowledge graph structure web important unders... 1 0 0 0 0 0
19776 Depth creates no more spurious local minima show convex differentiable loss function deep ... 1 0 0 1 0 0
19777 On the Application of ISO 26262 in Control Des... research automated vehicles experienced explos... 1 0 0 0 0 0
19778 Semi-wavefront solutions in models of collecti... paper deals nonhomogeneous scalar parabolic eq... 0 0 1 0 0 0
19779 Self-Regulated Transport in Photonic Crystals ... phase changing materials pcm widely used optic... 0 1 0 0 0 0
19780 Assessing randomness in case assignment: the c... sortition ie random appointment public duty em... 0 0 0 1 0 0
19781 Particle picture representation of the non-sym... provide particle picture representation nonsym... 0 0 1 0 0 0
19782 Houdini: Fooling Deep Structured Prediction Mo... generating adversarial examples critical step ... 1 0 0 1 0 0
19783 Don't relax: early stopping for convex regular... consider problem designing efficient regulariz... 1 0 1 0 0 0
19784 Interplay between social influence and competi... present model takes account coupling evolution... 1 1 0 0 0 0
19785 Data Augmentation for Low-Resource Neural Mach... quality neural machine translation system depe... 1 0 0 0 0 0
19786 A Lagrangian approach to modeling heat flux dr... closecontact melting refers process heat sourc... 0 1 0 0 0 0
19787 Spectral Graph Analysis: A Unified Explanation... complex networks graphs ubiquitous sciences en... 0 0 1 1 0 0
19788 ARMDN: Associative and Recurrent Mixture Densi... accurate demand forecasts help online retail o... 0 0 0 1 0 0
19789 Extreme Dimension Reduction for Handling Covar... covariate shift learning scenario training tes... 1 0 0 1 0 0
19790 Landau-Zener transitions for Majorana fermions onedimensional systems obtained lowenergy limi... 0 1 0 0 0 0
19791 Deep Hyperspherical Learning convolution inner product founding basis convo... 1 0 0 1 0 0
19792 Robotic Pick-and-Place of Novel Objects in Clu... paper presents robotic pickandplace system cap... 1 0 0 0 0 0
19793 Toward an enumerative geometry with quadratic ... develop various aspects classical enumerative ... 0 0 1 0 0 0
19794 Robust reputation-based ranking on multipartit... spread online reviews ratings opinions growing... 1 0 0 0 0 0
19795 Duality and upper bounds in optimal stochastic... dual control problem presented optimal stochas... 0 0 1 0 0 0
19796 On Sampling from Massive Graph Streams propose graph priority sampling gps new paradi... 1 0 1 1 0 0
19797 Optimal Investment, Demand and Arbitrage under... paper studies optimal investment problem rando... 0 0 0 0 0 1
19798 Amplitude Mediated Chimera States with Active ... emergence nature amplitude mediated chimera st... 0 1 0 0 0 0
19799 Astronomical random numbers for quantum founda... photons distant astronomical sources used clas... 0 1 0 0 0 0
19800 Application of generative autoencoder in de no... major challenge computational chemistry genera... 1 0 0 1 0 0
19801 Prospects for Measuring Cosmic Microwave Backg... measurements cosmic microwave background spect... 0 1 0 0 0 0
19802 The Fog of War: A Machine Learning Approach to... decade scientists nasas jet propulsion laborat... 1 1 0 0 0 0
19803 Substrate inhibition imposes fitness penalty a... proteins moderately stable long debated whethe... 0 0 0 0 1 0
19804 Exact relativistic Toda chain eigenfunctions f... provide proposal motivated separation variable... 0 1 0 0 0 0
19805 Simple Compact Monotone Tree Drawings monotone drawing graph g straightline drawing ... 1 0 0 0 0 0
19806 Context-Free Path Querying by Matrix Multiplic... graph data models widely used many areas examp... 1 0 0 0 0 0
19807 Equivalence of sparse and Carleson coefficient... remark sparse carleson coefficients equivalent... 0 0 1 0 0 0
19808 Discovering Business Rules from Business Proce... discovering business rules business process mo... 1 0 0 0 0 0
19809 Fast Learning and Prediction for Object Detect... combine features extracted pretrained convolut... 1 0 0 0 0 0
19810 N-body simulations of planet formation via peb... context planet formation pebbles proposed solv... 0 1 0 0 0 0
19811 Local character of Kim-independence show nsop theories exactly theories kimindepen... 0 0 1 0 0 0
19812 A Further Analysis of The Role of Heterogeneit... heterogeneity studied one common explanations ... 1 0 0 0 0 0
19813 Transport properties of the Azimuthal Magnetor... magnetorotational instability mri thought powe... 0 1 0 0 0 0
19814 New bounds for the Probability of Causation in... individual subjected exposure developed outcom... 0 0 1 1 0 0
19815 Searching for a cosmological preferred directi... well known milgroms mond modified newtonian dy... 0 1 0 0 0 0
19816 MultiFIT: A Multivariate Multiscale Framework ... present framework testing independence two ran... 0 0 0 1 0 0
19817 Stability of algebraic varieties and Kahler ge... survey article based authors lectures ams summ... 0 0 1 0 0 0
19818 Scratch iridescence: Wave-optical rendering of... surface metal glass plastic objects often char... 1 0 0 0 0 0
19819 An oscillation criterion for delay differentia... oscillatory behavior solutions differential eq... 0 0 1 0 0 0
19820 Item Recommendation with Variational Autoencod... recent years variational autoencoders vaes sho... 0 0 0 1 0 0
19821 Boltzmann Exploration Done Right boltzmann exploration classic strategy sequent... 1 0 0 1 0 0
19822 Deep reinforcement learning from human prefere... sophisticated reinforcement learning rl system... 1 0 0 1 0 0
19823 Entanglement spectroscopy on a quantum computer present quantum algorithm compute entanglement... 0 1 0 0 0 0
19824 Light Attenuation Length of High Quality Linea... jiangmen underground neutrino observatory juno... 0 1 0 0 0 0
19825 OIL: Observational Imitation Learning recent work explored problem autonomous naviga... 1 0 0 0 0 0
19826 A Multi-Scan Labeled Random Finite Set Model f... state space models system state finite setcall... 0 0 0 1 0 0
19827 On the Complexity of Sampling Nodes Uniformly ... study number graph exploration problems follow... 1 0 0 0 0 0
19828 A structure theorem for almost low-degree func... fourierwalsh expansion boolean function f colo... 1 0 0 0 0 0
19829 Oxygen-vacancy driven electron localization an... oxygendeficient tio rutile structure well tio ... 0 1 0 0 0 0
19830 3D printable multimaterial cellular auxetics w... auxetic materials novel class mechanical metam... 0 1 0 0 0 0
19831 MACS J0416.1-2403: Impact of line-of-sight str... exploiting powerful tool strong gravitational ... 0 1 0 0 0 0
19832 What can you do with a rock? Affordance extrac... autonomous agents must often detect affordance... 1 0 0 0 0 0
19833 On Generalized Gibbs Ensembles with an infinit... revisit question whether steady states arising... 0 1 0 0 0 0
19834 High resolution ion trap time-of-flight mass s... trapping molecular ions sympathetically cooled... 0 1 0 0 0 0
19835 The role of local-geometrical-orders on the gr... precise nature complex structural relaxation w... 0 1 0 0 0 0
19836 Snake: a Stochastic Proximal Gradient Algorith... regularized optimization problem large unstruc... 1 0 0 1 0 0
19837 Stability of the coexistent superconducting-ne... analyze effect intersiteinteraction terms stab... 0 1 0 0 0 0
19838 Multi-Advisor Reinforcement Learning consider tackling singleagent rl problem distr... 1 0 0 1 0 0
19839 Using CMB spectral distortions to distinguish ... dissipation smallscale perturbations early uni... 0 1 0 0 0 0
19840 Gradient Hyperalignment for multi-subject fMRI... multisubject fmri data analysis interesting ch... 0 0 0 1 1 0
19841 Using Task Descriptions in Lifelong Machine Le... knowledge transfer tasks improve performance l... 1 0 0 1 0 0
19842 Giant Unification Theory of the Grand Unificat... grand unification theory gauge theories strong... 0 1 0 0 0 0
19843 Generalized Rich-Club Ordering in Networks richclub ordering refers tendency nodes high d... 1 0 0 0 0 0
19844 Integrating Proactive Mode Changes in Mixed Cr... work propose integrate prediction algorithms s... 1 0 0 0 0 0
19845 Leveraging Continuous Material Averaging for I... inverse electromagnetic design emerged way eff... 0 1 0 0 0 0
19846 Robust Speech Recognition Using Generative Adv... paper describes general scalable endtoend fram... 1 0 0 0 0 0
19847 Minimal inequalities for an infinite relaxatio... show maximal sfree convex sets polyhedra set i... 0 0 1 0 0 0
19848 The population of SNe/SNRs in the starburst ga... nearby ultraluminous infrared galaxy ulirg arp... 0 1 0 0 0 0
19849 Dirac and Chiral Quantum Spin Liquids on the H... motivated recent experimental observations alp... 0 1 0 0 0 0
19850 Secular Dynamics of an Exterior Test Particle:... behavior interior test particle secular body p... 0 1 0 0 0 0
19851 A pulsed, mono-energetic and angular-selective... katrin experiment aims determine neutrino mass... 0 1 0 0 0 0
19852 Carrier frequency modulation of an acousto-opt... stabilization lasers absolute frequency refere... 0 1 0 0 0 0
19853 Solving a New 3D Bin Packing Problem with Deep... paper new type bin packing problem bpp propose... 1 0 0 0 0 0
19854 Entendendo o Pensamento Computacional goal article clarify meaning computational thi... 1 0 0 0 0 0
19855 Estimation of samples relevance by their histo... problem estimation relevance set histograms ge... 0 0 1 0 0 0
19856 On the synthesis of acoustic sources with cont... paper present strategy synthesis acoustic sour... 0 0 1 0 0 0
19857 Inverse Protein Folding Problem via Quadratic ... paper presents method reconstruction primary s... 0 0 1 0 0 0
19858 Spoken Language Understanding on the Edge consider problem performing spoken language un... 1 0 0 0 0 0
19859 On the link between column density distributio... present method derive density scaling relation... 0 1 0 0 0 0
19860 Measuring Effectiveness of Video Advertisements advertisements unavoidable modern society time... 1 0 0 0 0 0
19861 Multilinear compressive sensing and an applica... study deep linear network endowed structure ta... 0 0 1 1 0 0
19862 Normalization of closed Ekedahl-Oort strata apply theory partial flag spaces developed pre... 0 0 1 0 0 0
19863 Robustness of functional networks at criticali... robustness dynamical properties neuronal netwo... 0 0 0 0 1 0
19864 Semi-Supervised AUC Optimization based on Posi... maximizing area receiver operating characteris... 1 0 0 1 0 0
19865 Identifiability of Nonparametric Mixture Model... motivated problems data clustering establish g... 0 0 0 1 0 0
19866 The geometric classification of Leibniz algebras describe rigid algebras irreducible components... 0 0 1 0 0 0
19867 Discrete fundamental groups of Warped Cones an... paper compute discrete fundamental groups warp... 0 0 1 0 0 0
19868 Simulated Tempering Method in the Infinite Swi... investigate theoretical foundations simulated ... 0 0 0 1 0 0
19869 Analysis and Modeling of 3D Indoor Scenes live world performing activities interacting o... 1 0 0 0 0 0
19870 Introduction to the Special Issue on Digital S... advances astronomy intimately linked advances ... 0 1 0 0 0 0
19871 HPDedup: A Hybrid Prioritized Data Deduplicati... eliminating duplicate data primary storage clo... 1 0 0 0 0 0
19872 Two-domain and three-domain limit cycles in a ... freeplay significant source nonlinearity aeroe... 0 1 0 0 0 0
19873 Preference Modeling by Exploiting Latent Compo... understanding user preference essential optimi... 1 0 0 0 0 0
19874 Inductive Representation Learning on Large Graphs lowdimensional embeddings nodes large graphs p... 1 0 0 1 0 0
19875 Milnor and Tjurina numbers for a hypersurface ... assume fmathbbcn mathbbc analytic function ger... 0 0 1 0 0 0
19876 Analysis of the Gibbs Sampler for Gaussian hie... study convergence properties gibbs sampler con... 0 0 0 1 0 0
19877 A Cosmic Selection Rule for Glueball Dark Matt... point unique mechanism produce relic abundance... 0 1 0 0 0 0
19878 Multispectral and Hyperspectral Image Fusion U... paper propose method using three dimensional c... 1 0 0 1 0 0
19879 The fundamental Lepage form in variational the... setting global variational geometry grassmann ... 0 0 1 0 0 0
19880 Adding educational funcionalities to classic b... paper revisit classic board games like pachisi... 1 0 0 0 0 0
19881 Conceptual Frameworks for Building Online Citi... recent years citizen science grown popularity ... 1 0 0 0 0 0
19882 SDN Architecture and Southbound APIs for IPv6 ... srv architecture segment routing based ipv dat... 1 0 0 0 0 0
19883 Topology-optimized Dual-Polarization Dirac Cones apply largescale computational technique known... 0 1 0 0 0 0
19884 Reconstruction of Word Embeddings from Sub-Wor... pretrained word embeddings improve performance... 1 0 0 0 0 0
19885 Deep Submodular Functions start overview class submodular functions call... 1 0 0 0 0 0
19886 Inverse problems for the wave equation with un... consider inverse problems determining potentia... 0 0 1 0 0 0
19887 Spatial interactions and oscillatory tragedies... tragedy commons toc occurs individuals acting ... 0 0 0 0 1 0
19888 An upper bound on transport linear growth operators local quantum systems ... 0 1 0 0 0 0
19889 Taylor expansion in linear logic is invertible multiplicative exponential linear logic mell p... 1 0 0 0 0 0
19890 Collision-Free Multi Robot Trajectory Optimiza... multi robot systems potential utilized variety... 1 0 0 0 0 0
19891 On the bottom of spectra under coverings riemannian covering mto complete riemannian ma... 0 0 1 0 0 0
19892 Theory of ground states for classical Heisenbe... extend theory ground states classical heisenbe... 0 1 0 0 0 0
19893 Aggressive Deep Driving: Model Predictive Cont... present framework visionbased model predictive... 1 0 0 0 0 0
19894 K-theory of line bundles and smooth varieties give ktheoretic criterion quasiprojective vari... 0 0 1 0 0 0
19895 Local Two-Sample Testing: A New Tool for Analy... modern surveys provided astronomical community... 0 1 0 0 0 0
19896 Are You Tampering With My Data? propose novel approach towards adversarial att... 0 0 0 1 0 0
19897 Answering Spatial Multiple-Set Intersection Qu... show answer spatial multipleset intersection q... 1 0 0 0 0 0
19898 A framework for cascade size calculations on r... present framework calculate cascade size evolu... 1 1 0 0 0 0
19899 A Gaussian Process Regression Model for Distri... mongekantorovich distances otherwise known was... 0 0 1 1 0 0
19900 The intrinsic stable normal cone construct analog intrinsic normal cone behrend... 0 0 1 0 0 0
19901 Globular cluster formation with multiple stell... old globular clusters gcs galaxy observed inte... 0 1 0 0 0 0
19902 Multiple Source Domain Adaptation with Adversa... domain adaptation actively researched recent y... 1 0 0 1 0 0
19903 OSSOS: V. Diffusion in the orbit of a high-per... report discovery minor planet sy exceptionally... 0 1 0 0 0 0
19904 Solution of the Lindblad equation for spin hel... using lindblad dynamics study quantum spin sys... 0 1 0 0 0 0
19905 Global bifurcation map of the homogeneus state... study spatially homogeneous time dependent sol... 0 0 1 0 0 0
19906 Stochastic Composite Least-Squares Regression ... consider minimization composite objective func... 0 0 1 1 0 0
19907 Fisher GAN generative adversarial networks gans powerful ... 1 0 0 1 0 0
19908 Language as a matrix product state propose statistical model natural language beg... 1 1 0 1 0 0
19909 On the application of Mattis-Bardeen theory in... low energy optical conductivity conventional s... 0 1 0 0 0 0
19910 Nanoscale Magnetic Imaging using Circularly Po... work demonstrates nanoscale magnetic imaging u... 0 1 0 0 0 0
19911 Towards integrated superconducting detectors o... superconducting detectors wellestablished tool... 0 1 0 0 0 0
19912 The Hilbert scheme of 11 points in A^3 is irre... prove hilbert scheme points smooth threefold i... 0 0 1 0 0 0
19913 Dynamically reconfigurable metal-semiconductor... propose novel type tunable yagiuda nanoantenna... 0 1 0 0 0 0
19914 Synthesis and In Situ Modification of Hierarch... modified structures sapo prepared using polyet... 0 1 0 0 0 0
19915 Support Feature Machines support vector machines svms various kernels p... 1 0 0 1 0 0
19916 Voltage Control Using Eigen Value Decompositio... voltage deviations occur frequently power syst... 1 0 0 0 0 0
19917 Convolutional neural networks for structured o... convolutional neural networks cnns popular dee... 0 0 0 1 0 0
19918 Neural Network Multitask Learning for Traffic ... traditional neural network approaches traffic ... 1 0 0 0 0 0
19919 A note on a new paradox in superluminal signal... tolman paradox well known base demonstrating c... 0 1 0 0 0 0
19920 The Compressed Overlap Index analysing text algorithms computing superstrin... 1 0 0 0 0 0
19921 An intuitive approach to the unified theory of... spinrelaxation conventionally discussed using ... 0 1 0 0 0 0
19922 Weighted Random Walk Sampling for Multi-Relati... information overloaded web personalized recomm... 1 0 0 0 0 0
19923 Understanding the Twitter Usage of Humanities ... scholarly communication scope transcend limita... 1 0 0 0 0 0
19924 Privacy Risk in Machine Learning: Analyzing th... machine learning algorithms applied sensitive ... 1 0 0 1 0 0
19925 Nanoplatelets as material system between stron... recently fabrication cdse nanoplatelets became... 0 1 0 0 0 0
19926 Combined Thermal Control and GNC: An Enabling ... advances gnc particularly miniaturized control... 1 1 0 0 0 0
19927 Denoising Adversarial Autoencoders unsupervised learning growing interest unlocks... 1 0 0 1 0 0
19928 Monodromy map for tropical Dolbeault cohomology define monodromy maps tropical dolbeault cohom... 0 0 1 0 0 0
19929 Randomness Evaluation with the Discrete Fourie... paper study problems discrete fourier transfor... 1 0 0 1 0 0
19930 Analogies Explained: Towards Understanding Wor... word embeddings generated neural network metho... 1 0 0 1 0 0
19931 Zero sum partition into sets of the same order... say abelian group gamma order n memphzerosumpa... 0 0 1 0 0 0
19932 Strongly Coupled Dark Energy with Warm dark ma... cosmologies including strongly coupled sc dark... 0 1 0 0 0 0
19933 Clausal Analysis of First-order Proof Schemata proof schemata variant lkproofs able simulate ... 1 0 1 0 0 0
19934 Emotion Intensities in Tweets paper examines task detecting intensity emotio... 1 0 0 0 0 0
19935 Modelling the descent of nitric oxide during t... using simulations wholeatmosphere chemistrycli... 0 1 0 0 0 0
19936 Optimal Evidence Accumulation on Social Networks fundamental question biology organisms integra... 1 0 0 0 1 0
19937 Efficient Data-Driven Geologic Feature Detecti... conventional seismic techniques detecting subs... 1 0 0 1 0 0
19938 Metastable Modular Metastructures for On-Deman... present novel approach achieve adaptable band ... 0 1 0 0 0 0
19939 Learning to Plan Chemical Syntheses medicines materials small organic molecules in... 1 1 0 0 0 0
19940 Projective embedding of pairs and logarithmic ... let hatl projective completion ample line bund... 0 0 1 0 0 0
19941 Motion Switching with Sensory and Instruction ... ensure robot able accomplish extensive range t... 1 0 0 0 0 0
19942 The evolution of magnetic fields in hot stars last decade tremendous strides achieved unders... 0 1 0 0 0 0
19943 Polynomial-Time Methods to Solve Unimodular Qu... develop polynomialtime heuristic methods solve... 1 0 1 0 0 0
19944 Can the Wild Bootstrap be Tamed into a General... well known f test severly affected heteroskeda... 0 0 0 1 0 0
19945 Efficient K-Shot Learning with Regularized Dee... feature representations pretrained deep neural... 1 0 0 1 0 0
19946 The cohomology ring of some Hopf algebras let p prime k field characteristic p investiga... 0 0 1 0 0 0
19947 Eckart ro-vibrational Hamiltonians via the gat... recently general expression eckartframe hamilt... 0 1 0 0 0 0
19948 Optimal Timing to Trade Along a Randomized Bro... paper studies optimal trading problem incorpor... 0 0 0 0 0 1
19949 Inflationary Features and Shifts in Cosmologic... explore relationship features planck temperatu... 0 1 0 0 0 0
19950 Tree based weighted learning for estimating in... estimating individualized treatment rules cent... 0 0 1 1 0 0
19951 Fine-Tuning in the Context of Bayesian Theory ... finetuning physics cosmology often used eviden... 0 1 0 0 0 0
19952 Nuclear physics insights for new-physics searc... experiments using nuclei probe new physics bey... 0 1 0 0 0 0
19953 On the (Statistical) Detection of Adversarial ... machine learning ml models applied variety tas... 1 0 0 1 0 0
19954 Search Rank Fraud De-Anonymization in Online S... introduce fraud deanonymization problem goes b... 1 0 0 0 0 0
19955 Instabilities in Interacting Binary Stars types instability interacting binary stars rev... 0 1 0 0 0 0
19956 Interaction blockade for bosons in an asymmetr... interaction blockade phenomenon isolates motio... 0 1 0 0 0 0
19957 SPIDER: CMB polarimetry from the edge of space spider balloonborne instrument designed map po... 0 1 0 0 0 0
19958 Wind Shear and Turbulence on Titan : Huygens A... wind shear measured doppler tracking huygens p... 0 1 0 0 0 0
19959 Composable security in relativistic quantum cr... relativistic protocols proposed overcome impos... 1 0 0 0 0 0
19960 Tensor networks demonstrate the robustness of ... prove eigenstates manybody localized symmetry ... 0 1 0 0 0 0
19961 Formation of Intermediate-Mass Black Holes thr... study formation massive black holes first star... 0 1 0 0 0 0
19962 Mean Reverting Portfolios via Penalized OU-Lik... study optimizationbased approach con struct me... 0 0 0 1 0 1
19963 When the cookie meets the blockchain: Privacy ... show thirdparty web trackers deanonymize users... 1 0 0 0 0 0
19964 Performance Evaluation of Container-based Virt... virtualization technologies evolved along deve... 1 0 0 0 0 0
19965 An integral formula for the $Q$-prime curvatur... give integral formula total qprimecurvature th... 0 0 1 0 0 0
19966 Intelligent Device Discovery in the Internet o... internet things iot continuously growing conne... 1 0 0 0 0 0
19967 Super-blockers and the effect of network struc... modelling information cascades online social n... 1 0 0 0 0 0
19968 Super-Gaussian, super-diffusive transport of m... living cells exhibit multimode transport switc... 0 1 0 0 0 0
19969 Height functions for motives define various height functions motives number... 0 0 1 0 0 0
19970 On the dimension effect of regularized linear ... paper studies dimension effect linear discrimi... 0 0 1 1 0 0
19971 Plasma Wake Accelerators: Introduction and His... fundamental questions nature matter energy fou... 0 1 0 0 0 0
19972 $R$-triviality of some exceptional groups main aim paper prove rtriviality simple simply... 0 0 1 0 0 0
19973 Aperture synthesis imaging of the carbon AGB s... present nearinfrared interferometry carbonrich... 0 1 0 0 0 0
19974 Intrinsically Sparse Long Short-Term Memory Ne... long shortterm memory lstm achieved stateofthe... 1 0 0 0 0 0
19975 Inferencing into the void: problems with impli... welcome contribution falessi et al hereafter r... 1 0 0 0 0 0
19976 NoScope: Optimizing Neural Network Queries ove... recent advances computer visionin form deep ne... 1 0 0 0 0 0
19977 TensorQuant - A Simulation Toolbox for Deep Ne... recent research implies training inference dee... 1 0 0 1 0 0
19978 Information-geometrical characterization of st... probability simplex set probability distributi... 1 0 1 1 0 0
19979 The Network Nullspace Property for Compressed ... present novel condition term net work nullspac... 1 0 0 1 0 0
19980 On physically redundant and irrelevant feature... every linear system partial differential equat... 0 1 0 0 0 0
19981 Transforming Musical Signals through a Genre C... convolutional neural networks cnns successfull... 1 0 0 0 0 0
19982 AMTnet: Action-Micro-Tube Regression by End-to... dominant approaches action detection provide s... 1 0 0 0 0 0
19983 Adaptive Estimation in Structured Factor Model... work introduces novel estimation method called... 0 0 1 1 0 0
19984 Asymptotic profile of solutions for some wave ... consider cauchy problem rn types damped wave e... 0 0 1 0 0 0
19985 Spontaneous generation of fractional vortex-an... unconventional dwave superconductors pairbreak... 0 1 0 0 0 0
19986 A Survey of Neuromorphic Computing and Neural ... neuromorphic computing come refer variety brai... 1 0 0 0 0 0
19987 Junctions of refined Wilson lines and one-para... study junctions wilson lines refined sun chern... 0 0 1 0 0 0
19988 Online estimation of the asymptotic variance f... stochastic gradient algorithms studied since d... 0 0 1 1 0 0
19989 The response of the terrestrial bow shock and ... location terrestrial magnetopause mp subsolar ... 0 1 0 0 0 0
19990 Superconductivity of barium-VI synthesized via... using membranedriven diamond anvil cell ac mag... 0 1 0 0 0 0
19991 Self-Supervised Damage-Avoiding Manipulation S... everyday robotics challenged deal autonomous p... 1 0 0 0 0 0
19992 Adversarial Deep Learning for Robust Detection... malware constantly adapting order avoid detect... 0 0 0 1 0 0
19993 Simple closed curves, finite covers of surface... construct examples finite covers punctured sur... 0 0 1 0 0 0
19994 Hard Mixtures of Experts for Large Scale Weakl... training convolutional networks cnns fit singl... 1 0 0 1 0 0
19995 Single-hole GPR reflection imaging of solute t... identifying transport pathways fractured rock ... 0 1 0 0 0 0
19996 Episodic Torque-Luminosity Correlations and An... analyse archival cgrobatse xray flux spin freq... 0 1 0 0 0 0
19997 Applications of Fractional Calculus to Newtoni... investigate basic applications fractional calc... 0 1 0 0 0 0
19998 Radial Surface Density Profiles of Gas and Dus... present resolution images co associated contin... 0 1 0 0 0 0
19999 Spontaneously broken translational symmetry at... investigate equilibrium properties including s... 0 1 0 0 0 0
20000 Asymmetric Spin-wave Dispersion on Fe(110): Di... influence dzyaloshinskiimoriya interaction spi... 0 1 0 0 0 0
20001 Consumption smoothing in the working-class hou... analyze osaka factory worker households early ... 0 0 0 0 0 1
20002 Observations and Modelling of the Pre-Flare Pe... march noaa active region ar produced x flare s... 0 1 0 0 0 0
20003 Wild ramification and K(pi, 1) spaces prove every connected affine scheme positive c... 0 0 1 0 0 0
20004 A Deep Learning Interpretable Classifier for D... deep neural network models proven successful i... 1 0 0 1 0 0
20005 Arabic Multi-Dialect Segmentation: bi-LSTM-CRF... arabic word segmentation essential variety nlp... 1 0 0 0 0 0
20006 Iterative bidding in electricity markets: rati... paper studies electricity market consisting in... 1 0 1 0 0 0
20007 Short-baseline electron antineutrino disappear... investigate existence sterile neutrino propose... 0 1 0 0 0 0
20008 Temperature-dependent non-covalent protein-pro... protein crystal production major bottleneck st... 0 0 0 0 1 0
20009 Planetary Candidates Observed by Kepler. VIII.... present kepler object interest koi catalog tra... 0 1 0 0 0 0
20010 Dark Photons from Captured Inelastic Dark Matt... dark sector may contain dark photon kineticall... 0 1 0 0 0 0
20011 A Polya Contagion Model for Networks network epidemics model based classical polya ... 1 1 1 0 0 0
20012 Compressive Statistical Learning with Random F... describe general framework compressive statist... 1 0 1 1 0 0
20013 Bandit Structured Prediction for Neural Sequen... bandit structured prediction describes stochas... 1 0 0 1 0 0
20014 Dynamic Input Structure and Network Assembly f... ability learn small number examples difficult ... 1 0 0 1 0 0
20015 Face R-CNN faster rcnn one representative successful meth... 1 0 0 0 0 0
20016 Multi-Sensor Data Pattern Recognition for Mult... datatarget pairing important step towards mult... 1 0 0 1 0 0
20017 Calipso: Physics-based Image and Video Editing... present calipso interactive method editing ima... 1 0 0 0 0 0
20018 Maximal (120,8)-arcs in projective planes of o... resolutions maximal sets compatible resolution... 0 0 1 0 0 0
20019 First order sentences about random graphs: sma... spectrum first order sentence set alpha gn nal... 0 0 1 0 0 0
20020 New Methods for Metadata Extraction from Scien... within past decades witnessed digital revoluti... 1 0 0 0 0 0
20021 Unexpected biases in prime factorizations and ... introduce refinement classical liouville funct... 0 0 1 0 0 0
20022 Nonconvection and uniqueness in Navier-Stokes ... presence certain class functions show exists s... 0 0 1 0 0 0
20023 An alternative approach for compatibility of t... conditional specification distributions develo... 0 0 1 1 0 0
20024 System of unbiased representatives for a colle... let mathcalb denote set bicolorings n bicolori... 1 0 0 0 0 0
20025 Stability and instability in saddle point dyna... part considered problem convergence saddle poi... 1 0 1 0 0 0
20026 Refactoring Legacy JavaScript Code to Use Clas... javascript systems becoming increasingly compl... 1 0 0 0 0 0
20027 Parylene-C microfibrous thin films as phononic... phononic bandgaps parylenec microfibrous thin ... 0 1 0 0 0 0
20028 A General Theory for Training Learning Machine though deep learning pushing machine learning ... 1 0 0 1 0 0
20029 Semiparametric spectral modeling of the Drosop... present semiparametric spectral modeling compl... 0 0 0 1 0 0
20030 A Large Term Rewrite System Modelling a Pionee... present term rewrite system formally models me... 1 0 0 0 0 0
20031 Malleability of complex networks complex networks static evolve along time give... 1 0 0 0 0 0
20032 Identifying Critical Risks of Cascading Failur... potential critical risks cascading failures po... 1 0 0 0 0 0
20033 Radiation Hardness Test of Eljen EJ-500 Optica... present comprehensive account proton radiation... 0 1 0 0 0 0
20034 Triviality of the ground-state metastate in lo... consider onedimensional model spin glass indep... 0 1 0 0 0 0
20035 Thermodynamics of BTZ Black Holes in Gravity's... paper deform thermodynamics btz black hole rai... 0 1 0 0 0 0
20036 Nondegeneracy and the Jacobi fields of rotatio... paper study rotationally symmetric solutions c... 0 0 1 0 0 0
20037 Quasiflats in hierarchically hyperbolic spaces rank hierarchically hyperbolic space maximal n... 0 0 1 0 0 0
20038 Learning to Skim Text recurrent neural networks showing much promise... 1 0 0 0 0 0
20039 Using Deep Neural Networks to Automate Large S... statistical analysis sa complex process deduce... 1 0 0 1 0 0
20040 Duty to Delete on Non-Volatile Memory firstly suggest new cache policy applying duty... 1 0 0 0 0 0
20041 Geometry of Log-Concave Density Estimation shapeconstrained density estimation important ... 0 0 0 1 0 0
20042 Antenna Arrays for Line-of-Sight Massive MIMO:... aim paper analyze array synthesis g massive mi... 1 0 0 0 0 0
20043 Gravitational octree code performance evaluati... study gravitational octree code originally opt... 1 0 0 0 0 0
20044 Instanton bundles on the flag variety F(0,1,2) instanton bundles mathbbp core research algebr... 0 0 1 0 0 0
20045 Non-linear motor control by local learning in ... learning weights spiking neural network hidden... 1 0 0 1 0 0
20046 Training Deep Neural Networks via Optimization... work propose train deep neural network distrib... 1 0 0 0 0 0
20047 Calculation of Effective Interaction Potential... analytical expression received effective inter... 0 1 0 0 0 0
20048 The Follower Count Fallacy: Detecting Twitter ... online social networks osn increasingly used p... 1 0 0 0 0 0
20049 Bergman kernel estimates and Toeplitz operator... characterize operatortheoretic properties boun... 0 0 1 0 0 0
20050 HST PanCET program: A Cloudy Atmosphere for th... present results first observations hubble spac... 0 1 0 0 0 0
20051 Quantum gauge symmetry of reducible gauge theory derive gaugeon formalism kalbramond field theo... 0 1 0 0 0 0
20052 The Tian Pseudo-Atom Method work authors give new method phase determinati... 0 1 0 0 0 0
20053 The Phenotypes of Fluctuating Flow: Developmen... complex distribution networks pervasive biolog... 0 1 0 0 0 0
20054 Recent Trends in Deep Learning Based Natural L... deep learning methods employ multiple processi... 1 0 0 0 0 0
20055 Volatile memory forensics for the Robot Operat... increasing impact robotics industry society un... 1 0 0 0 0 0
20056 HYDRA: HYbrid Design for Remote Attestation (U... remote attestation ra allows trusted entity ve... 1 0 0 0 0 0
20057 Social Robots for People with Developmental Di... social robots also known service assistant rob... 1 0 0 0 0 0
20058 Inverse problem for multi-species mean field m... paper solve inverse problem class mean field m... 0 1 0 0 0 0
20059 Inertial Odometry on Handheld Smartphones building complete inertial navigation system u... 1 0 0 1 0 0
20060 Asymptotic network models of subwavelength met... demonstrate photonic phononic crystals consist... 0 1 0 0 0 0
20061 The Hydrogen Epoch of Reionization Array Dish ... experimental efforts detect redshifted cm sign... 0 1 0 0 0 0
20062 Unifying the micro and macro properties of AGN... unify feeding feedback supermassive black hole... 0 1 0 0 0 0
20063 Model-based Iterative Restoration for Binary D... inherent noise observed eg scanned binary docu... 1 0 0 0 0 0
20064 A First Look at Ad Blocking Apps on Google Play online advertisers analytics services trackers... 1 0 0 0 0 0
20065 Nondegeneracy of the traveling lump solution t... consider toda system fracdelta qneqnqneqnqntex... 0 0 1 0 0 0
20066 One side continuity of meromorphic mappings be... prove meromorphic mapping sends peace real ana... 0 0 1 0 0 0
20067 Generic Camera Attribute Control using Bayesia... cameras widely exploited sensor robotics compu... 1 0 0 0 0 0
20068 Far-from-equilibrium energy flow and entanglem... time evolution energy transport triggered stro... 0 1 0 0 0 0
20069 Algebraic Aspects of Conditional Independence ... chapter forthcoming handbook graphical models ... 0 0 1 1 0 0
20070 A Survey of Riccati Equation Results in Negati... paper presents survey new applications algebra... 1 0 1 0 0 0
20071 The circumstellar disk HD$\,$169142: gas, dust... hd excellent target investigate signs planetdi... 0 1 0 0 0 0
20072 Quantitative analysis of the influence of keV ... mechanism ion bombardment induced magnetic pat... 0 1 0 0 0 0
20073 Automatic classification of automorphisms of l... implement two algorithms mathematica classifyi... 0 0 1 0 0 0
20074 Information-Theoretic Understanding of Populat... show model compression improve population risk... 1 0 0 1 0 0
20075 Document Retrieval for Large Scale Content Ana... paper presents procedure retrieve subsets rele... 1 0 0 0 0 0
20076 Cepheids with the eyes of photometric space te... space photometric missions steadily accumulati... 0 1 0 0 0 0
20077 Explicitly correlated formalism for second-ord... present explicitly correlated formalism second... 0 1 0 0 0 0
20078 Relative stability associated to quantised ext... study algebrogeometric consequences quantised ... 0 0 1 0 0 0
20079 Beyond the EULA: Improving consent for data mi... companies academic researchers may collect pro... 1 0 0 0 0 0
20080 Estimating a Separably-Markov Random Field (SM... fundamental problem neuroscience characterize ... 1 0 0 1 0 0
20081 Using Deep Reinforcement Learning for the Cont... deep reinforcement learning enables algorithms... 1 0 0 0 0 0
20082 The First Detection of Gravitational Waves article deals first detection gravitational wa... 0 1 0 0 0 0
20083 Remarkably strong chemisorption of nitric oxid... remarkably strong chemical adsorption behavior... 0 1 0 0 0 0
20084 Knowledge Transfer from Weakly Labeled Audio u... work propose approaches effectively transfer k... 1 0 0 0 0 0
20085 A priori estimates for the free-boundary Euler... derive priori estimates incompressible freebou... 0 0 1 0 0 0
20086 Koszul duality via suspending Lefschetz fibrat... let liouville manifold smooth fiber lefschetz ... 0 0 1 0 0 0
20087 Attractor of Cantor Type with Positive Measure construct iterated function system consisting ... 0 0 1 0 0 0
20088 Generating online social networks based on soc... recent years seen tremendous growth many onlin... 1 1 0 0 0 0
20089 Optimal control of diffuser shapes for confine... model development turbulent shear flows create... 0 1 0 0 0 0
20090 Criteria for Solar Car Optimized Route Estimation paper gives thorough overview solar car optimi... 1 0 1 0 0 0
20091 Dykes for filtering ocean waves using c-shaped... present study investigates way design dykes fi... 0 1 0 0 0 0
20092 Origin of Non-axisymmetric Features of Virgo C... fraction earlytype dwarf galaxies virgo cluste... 0 1 0 0 0 0
20093 First results from the DEAP-3600 dark matter s... paper reports first results direct dark matter... 0 1 0 0 0 0
20094 Camera Calibration by Global Constraints on th... address problem epipolar geometry using motion... 1 0 0 0 0 0
20095 Ann: A domain-specific language for the effect... paper describes new modelling language effecti... 1 0 0 0 0 0
20096 Fréchet ChemNet Distance: A metric for generat... new wave successful generative models machine ... 0 0 0 1 1 0
20097 RANSAC Algorithms for Subspace Recovery and Su... consider ransac algorithm context subspace rec... 0 0 1 1 0 0
20098 Convex Formulations for Fair Principal Compone... though growing body literature fairness superv... 0 0 0 1 0 0
20099 Report: Dynamic Eye Movement Matching and Visu... research impact gestures using lecturer one ch... 1 0 0 0 0 0
20100 Infinite symmetric ergodic index and related e... define infinite measurepreserving transformati... 0 0 1 0 0 0
20101 Exploiting gradients and Hessians in Bayesian ... exciting branch machine learning research focu... 0 0 0 1 0 0
20102 Permanency of the age-structured population mo... consider system nonlinear partial differential... 0 1 1 0 0 0
20103 Rapid laser-induced photochemical conversion o... report development indium oxide ino transistor... 0 1 0 0 0 0
20104 Testing for Change in Stochastic Volatility wi... paper changepoint problems long memory stochas... 0 0 1 1 0 0
20105 Kinematics effects of atmospheric friction in ... gravity assist manoeuvres one succesful techni... 0 1 0 0 0 0
20106 Interval vs. Point Temporal Logic Model Checki... last years model checking interval temporal lo... 1 0 0 0 0 0
20107 Calculations for electron-impact ionization of... next investigations program transition atom co... 0 1 0 0 0 0
20108 An Information Theoretic Approach to Sample Ac... important emerging component planetary explora... 1 1 0 0 0 0
20109 Global solvability of the Navier-Stokes equati... consider motion incompressible viscous fluids ... 0 0 1 0 0 0
20110 The fundamental group of the complement of the... study fundamental group complement singular lo... 0 0 1 0 0 0
20111 Nonconvex Sparse Spectral Clustering by Altern... spectral clustering sc widely used data cluste... 1 0 0 0 0 0
20112 Stable Geodesic Update on Hyperbolic Space and... hyperbolic space shown capable modeling comple... 0 0 0 1 0 0
20113 A Parameterized Approach to Personalized Varia... present parameterized approach produce persona... 1 0 0 0 0 0
20114 Towards Robust Neural Networks via Random Self... recent studies revealed vulnerability deep neu... 1 0 0 1 0 0
20115 Prospects for detection of intermediate-mass b... detection intermediate mass black holes imbhs ... 0 1 0 0 0 0
20116 A Multi-frequency analysis of possible Dark Ma... examine possibility dark matter dm contributio... 0 1 0 0 0 0
20117 Tensor Decompositions for Modeling Inverse Dyn... modeling inverse dynamics crucial accurate fee... 1 0 0 1 0 0
20118 Synthesis and Hydrogen Sorption Characteristic... new ternary mgnimn intermetallics successfully... 0 1 0 0 0 0
20119 Enhancing Network Embedding with Auxiliary Inf... recent advances field network embedding shown ... 1 0 0 1 0 0
20120 Incremental Principal Component Analysis Exact... paper describes applications incremental imple... 1 0 0 1 0 0
20121 More investment in Research and Development fo... question paper whether rd efforts affect educa... 0 0 0 1 0 0
20122 Discriminative Modeling of Social Influence fo... global dynamics event cascades often governed ... 1 0 0 0 0 0
20123 Online codes for analog signals revisit classical scenario communication theor... 1 0 0 0 0 0
20124 Statistical test for fractional Brownian motio... motivated contemporary rich applications anoma... 0 0 0 1 0 0
20125 Fast Radio Map Construction and Position Estim... main limitation constrains fast comprehensive ... 1 0 0 1 0 0
20126 Lagrangian solutions to the Vlasov-Poisson sys... consider cauchy problem repulsive vlasovpoisso... 0 0 1 0 0 0
20127 MITHRIL: Mining Sporadic Associations for Cach... growing pressure cloud application scalability... 1 0 0 0 0 0
20128 On 2-level polytopes arising in combinatorial ... level polytopes naturally appear several areas... 1 0 1 0 0 0
20129 Learned Optimizers that Scale and Generalize learning learn emerged important direction ach... 1 0 0 1 0 0
20130 Toward Optimal Run Racing: Application to Deep... paper aims oneshot learning deep neural nets h... 1 0 0 0 0 0
20131 Bernstein - von Mises theorems for statistical... inverse problem determining unknown potential ... 0 0 1 1 0 0
20132 Tailoring Architecture Centric Design Method w... many engineering processes exist industry text... 1 0 0 0 0 0
20133 Easy High-Dimensional Likelihood-Free Inference introduce framework using generative adversari... 1 0 0 1 0 0
20134 Narrow-line Laser Cooling by Adiabatic Transfer propose demonstrate novel laser cooling mechan... 0 1 0 0 0 0
20135 Assessing the Effect of Stellar Companions fro... report close stellar companions detected highr... 0 1 0 0 0 0
20136 Semi-Supervised Learning via New Deep Network ... exploit recently derived inversion scheme arbi... 1 0 0 1 0 0
20137 Using English as Pivot to Extract Persian-Ital... effectiveness statistical machine translation ... 1 0 0 0 0 0
20138 Intrinsic geometry and analysis of Finsler str... short note prove f weak upper semicontinuous a... 0 0 1 0 0 0
20139 Combining Prediction of Human Decisions with I... monte carlo tree search mcts extended many imp... 1 0 0 0 0 0
20140 The KLASH Proposal propose search galactic axions mass microev us... 0 1 0 0 0 0
20141 Dimensionality-Driven Learning with Noisy Labels datasets significant proportions noisy incorre... 0 0 0 1 0 0
20142 Delving into adversarial attacks on deep policies adversarial examples shown exist variety deep ... 1 0 0 1 0 0
20143 On two functions arising in the study of the E... investigate two arithmetic functions naturally... 0 0 1 0 0 0
20144 Lurking Variable Detection via Dimensional Ana... lurking variables represent hidden information... 0 0 0 1 0 0
20145 System calibration method for Fourier ptychogr... fourier ptychographic microscopy fpm recently ... 0 1 0 0 0 0
20146 Categories for Dynamic Epistemic Logic primary goal paper recast semantics modal logi... 1 0 1 0 0 0
20147 Accurate Pouring with an Autonomous Robot Usin... robotic assistants home environment expected p... 1 0 0 0 0 0
20148 Restriction of Odd Degree Characters of $\math... let n k natural numbers k n study restriction ... 0 0 1 0 0 0
20149 CSGNet: Neural Shape Parser for Constructive S... present neural architecture takes input shape ... 1 0 0 0 0 0
20150 Composite Weyl nodes stabilized by screw symme... classify band degeneracies crystals screw symm... 0 1 0 0 0 0
20151 Deep Neural Networks as 0-1 Mixed Integer Line... deep neural networks dnns popular days subject... 1 0 0 0 0 0
20152 Directionality Fields generated by a Local Hil... propose new approach based local hilbert trans... 0 1 0 0 0 0
20153 Bulk Eigenvalue Correlation Statistics of Rand... paper second chapter three authors undergradua... 0 0 1 1 0 0
20154 A local weighted Axler-Zheng theorem in $\math... wellknown axlerzheng theorem characterizes com... 0 0 1 0 0 0
20155 Spatial modulation of Joule losses to increase... paper presents simple approach increase normal... 0 1 0 0 0 0
20156 Vortex Thermometry for Turbulent Two-Dimension... introduce new method statistical analysis char... 0 1 0 0 0 0
20157 The Hurwitz-type theorem for the regular Coulo... derive closed formula determinant hankel matri... 0 0 1 0 0 0
20158 An Empirical Analysis of Proximal Policy Optim... technical report consider approach combines pp... 0 0 0 1 0 0
20159 On the density of sets avoiding parallelohedro... maximal density measurable subset rn avoiding ... 0 0 1 0 0 0
20160 Adversarial Deep Structured Nets for Mass Segm... mass segmentation provides effective morpholog... 1 0 0 0 0 0
20161 The downward directed grounds hypothesis and v... transitive model zfc called ground universe v ... 0 0 1 0 0 0
20162 A Distributed Control Framework of Multiple Un... wildland fire fighting hazardous job key task ... 1 0 0 0 0 0
20163 Rayleigh-Brillouin light scattering spectrosco... high signaltonoise highresolution light scatte... 0 1 0 0 0 0
20164 Competition between Chaotic and Non-Chaotic Ph... sachdevyekitaev syk model concrete solvable mo... 0 1 0 0 0 0
20165 Symmetry Realization via a Dynamical Inverse H... ward identities associated spontaneously broke... 0 1 0 0 0 0
20166 Growth of strontium ruthenate films by hybrid ... report growth epitaxial srruo films using hybr... 0 1 0 0 0 0
20167 Possible Evidence for the Stochastic Accelerat... antiprotontoproton ratio cosmicray spectrum se... 0 1 0 0 0 0
20168 The Host Galaxy and Redshift of the Repeating ... precise localization repeating fast radio burs... 0 1 0 0 0 0
20169 Thicket Density thicket density new measure complexity set sys... 0 0 1 0 0 0
20170 Uniformizations of stable $(γ,n)$-gonal Rieman... gammangonal pair pair sf closed riemann surfac... 0 0 1 0 0 0
20171 If you are not paying for it, you are the prod... online advertising progressively moving toward... 1 0 0 0 0 0
20172 Circularly polarized vacuum field in three-dim... quantum nature lightmatter interactions circul... 0 1 0 0 0 0
20173 Critical behavior of quasi-two-dimensional sem... critical properties singlecrystalline semicond... 0 1 0 0 0 0
20174 Scale-free Monte Carlo method for calculating ... implement scalefree version pivot algorithm us... 0 1 1 0 0 0
20175 The quadratic M-convexity testing problem mconvex functions generalization valuated matr... 0 0 1 0 0 0
20176 Distributed Bayesian Matrix Factorization with... bayesian matrix factorization bmf powerful too... 1 0 0 1 0 0
20177 Optimized Certificate Revocation List Distribu... successful deployment safe trustworthy connect... 1 0 0 0 0 0
20178 Optical response of highly reflective film use... xenont experiment recent stage xenon dark matt... 0 1 0 0 0 0
20179 On spectral partitioning of signed graphs argue standard graph laplacian preferable spec... 1 0 1 1 0 0
20180 Sensor Fusion for Public Space Utilization Mon... public space utilization crucial urban develop... 1 0 0 1 0 0
20181 Symplectic integrators for second-order linear... two families symplectic methods specially desi... 0 0 1 0 0 0
20182 Deep Reinforcement Learning: Framework, Applic... recent breakthroughs deep reinforcement learni... 1 0 0 0 0 0
20183 Experimental observation of node-line-like sur... dirac nodal line semimetal bulk conduction val... 0 1 0 0 0 0
20184 Manin's conjecture for a class of singular cub... let n positive multiple establish asymptotic f... 0 0 1 0 0 0
20185 A Flexible Approach to Automated RNN Architect... process designing neural architectures require... 1 0 0 1 0 0
20186 Convexification of Neural Graph traditionally complex intelligence architectur... 0 0 0 1 0 0
20187 Pseudogaps in strongly interacting Fermi gases central challenge modern condensed matter phys... 0 1 0 0 0 0
20188 Resolution-Exact Planner for Thick Non-Crossin... consider path planning problem link robot amid... 1 0 0 0 0 0
20189 Easing Embedding Learning by Comprehensive Tra... heterogeneous information networks hins ubiqui... 1 0 0 0 0 0
20190 Generic Dynamical Phase Transition in One-Dime... dynamical phase transitions crucial features f... 0 1 0 0 0 0
20191 Semianalytical calculation of the zonal-flow o... due capability reduce turbulent transport magn... 0 1 0 0 0 0
20192 Geometric phase of a moving dipole under a mag... predict geometric quantum phase shift moving e... 0 1 0 0 0 0
20193 A refined count of Coxeter element factorizations wellgenerated complex reflection groups chapuy... 0 0 1 0 0 0
20194 Tuning the magnetism of the top-layer FeAs on ... magnetic properties bafeas surface studied usi... 0 1 0 0 0 0
20195 Cubature methods to solve BSDEs: Error expansi... obtain explicit error expansion solution backw... 0 0 1 0 0 0
20196 An Earth-mass Planet in a 1-AU Orbit around an... combine spitzer groundbased kmtnet microlensin... 0 1 0 0 0 0
20197 Distributed Statistical Estimation and Rates o... paper presents class new algorithms distribute... 0 0 1 1 0 0
20198 Connecting HL Tau to the Observed Exoplanet Sa... atacama large millimetersubmilimeter array alm... 0 1 0 0 0 0
20199 How Should a Robot Assess Risk? Towards an Axi... endowing robots capability assessing risk maki... 1 0 0 0 0 0
20200 Pitfalls and Best Practices in Algorithm Confi... good parameter settings crucial achieve high p... 1 0 0 0 0 0
20201 Critical behaviors in contagion dynamics study critical behavior general contagion mode... 0 1 1 0 0 0
20202 Machine Learning in Appearance-based Robot Sel... appearancebased robot selflocalization problem... 1 0 0 1 0 0
20203 Towards Communication-Aware Robust Topologies currently witness emergence interesting new ne... 1 0 0 0 0 0
20204 Zero-shot Domain Adaptation without Domain Sem... propose method infer domainspecific models cla... 0 0 0 1 0 0
20205 Network modelling of topological domains using... genomewide chromosome conformation capture tec... 0 0 0 1 0 0
20206 On a Possible Giant Impact Origin for the Colo... proposed substantiated extraterrestrial object... 0 1 0 0 0 0
20207 Reversing Parallel Programs with Blocks and Pr... show reverse language extended blocks local va... 1 0 0 0 0 0
20208 Detection of the Stellar Intracluster Medium i... hubble space telescope photometry acswfc wfpc ... 0 1 0 0 0 0
20209 Binets: fundamental building blocks for phylog... phylogenetic networks generalization evolution... 1 0 1 0 0 0
20210 G-Deformations of maps into projective space gdeformability maps projective space character... 0 0 1 0 0 0
20211 Cloudless atmospheres for young low-gravity su... atmospheric modeling lowgravity vlg young brow... 0 1 0 0 0 0
20212 On the State of the Art of Evaluation in Neura... ongoing innovations recurrent neural network a... 1 0 0 0 0 0
20213 Weakly Supervised Audio Source Separation via ... separating audio mixtures individual instrumen... 1 0 0 0 0 0
20214 Proof of a conjecture of Kløve on permutation ... let positive integer x real number let ad x dt... 1 0 0 0 0 0
20215 Herschel observations of the Galactic HII regi... triggered star formation around hii regions co... 0 1 0 0 0 0
20216 Software-Defined Robotics -- Idea & Approach methodology softwaredefined robotics hierarchi... 1 0 0 0 0 0
20217 Stability interchanges in a curved Sitnikov pr... consider curved sitnikov problem infinitesimal... 0 1 1 0 0 0
20218 Hardy Spaces over Half-strip Domains define hardy spaces hpomegapm halfstrip domain... 0 0 1 0 0 0
20219 An Optimization Framework with Flexible Inexac... recent years numerous vision learning tasks re... 1 0 1 0 0 0
20220 Attitude and angular velocity tracking for a r... control task tracking reference pointing direc... 1 0 1 0 0 0
20221 Miscomputation in software: Learning to live w... computer programs always work expected fact om... 1 0 0 0 0 0
20222 The Combinatorics of Weighted Vector Compositions vector composition vector mathbfell matrix mat... 1 0 1 0 0 0
20223 Fast Linear Model for Knowledge Graph Embeddings paper shows simple baseline based bagofwords b... 1 0 0 1 0 0
20224 Deep learning for plasma tomography using the ... deep learning profound impact many fields espe... 0 1 0 1 0 0
20225 Assembly Bias and Splashback in Galaxy Clusters use publicly available data millennium simulat... 0 1 0 0 0 0
20226 Accelerating Kernel Classifiers Through Border... support vector machines svm kernel techniques ... 1 0 0 1 0 0
20227 Information Criterion for Minimum Cross-Entrop... paper considers problem approximating density ... 0 0 0 1 0 0
20228 Scaling relations in large-Prandtl-number natu... study follow grossmann lohse phys rev lett der... 0 1 0 0 0 0
20229 The renormalization method from continuous to ... renormalization method based taylor expansion ... 0 0 1 0 0 0
20230 A Stress/Displacement Virtual Element Method f... numerical approximation elasticity problems co... 0 0 1 0 0 0
20231 Estimation of the lead-lag parameter between t... paper consider problem estimating leadlag para... 0 0 1 1 0 0
20232 Multi-resolution polymer Brownian dynamics wit... polymer model given terms beads interacting ho... 0 1 0 0 0 0
20233 Learning Theory of Distributed Regression with... distributed learning effective way analyze big... 1 0 0 1 0 0
20234 Cluster-based Kriging Approximation Algorithms... kriging gaussian process regression applied ma... 1 0 0 1 0 0
20235 How to model fake news past three years become evident fake news dang... 1 0 0 0 0 1
20236 Analysis of Dropout in Online Learning deep learning stateoftheart fields visual obje... 1 0 0 1 0 0
20237 TADPOLE Challenge: Prediction of Longitudinal ... alzheimers disease prediction longitudinal evo... 0 0 0 1 1 0
20238 A Deep Cascade of Convolutional Neural Network... acquisition magnetic resonance imaging mri inh... 1 0 0 0 0 0
20239 Advances in Joint CTC-Attention based End-to-E... present stateoftheart endtoend automatic speec... 1 0 0 0 0 0
20240 The Social and Work Structure of an Afterschoo... study focuses social structure interpersonal d... 0 0 1 0 0 0
20241 Fourier Transform of Schwartz Algebras on Grou... wellknown harishchandra transform fmapstomathc... 0 0 1 0 0 0
20242 Mutual Information and Optimality of Approxima... consider estimation signal knowledge noisy lin... 1 1 1 0 0 0
20243 A Memristor-Based Optimization Framework for A... memristors recently received significant atten... 1 0 0 1 0 0
20244 Estimating parameters of a directed weighted g... introduce directed weighted random graph model... 0 0 1 1 0 0
20245 On the Performance of Reduced-Complexity Trans... letter investigate performance multipleinput m... 1 0 0 0 0 0
20246 Internal migration and education: A cross-nati... migration main process shaping patterns human ... 0 0 0 0 0 1
20247 Free differential Lie Rota-Baxter algebras and... establish grbnershirshov bases theory differen... 0 0 1 0 0 0
20248 Conversion Rate Optimization through Evolution... conversion optimization means designing web in... 1 0 0 0 0 0
20249 Emergence of spatial curvature paper investigates phenomenon emergence spatia... 0 1 0 0 0 0
20250 Asymptotic generalized bivariate extreme with ... many biological agricultural military activity... 0 0 1 1 0 0
20251 On problems in the calculus of variations in i... consider minimization problems calculus variat... 0 0 1 0 0 0
20252 Inequalities related to Symmetrized Harmonic C... paper extend hermitehadamard type dotiscan ine... 0 0 1 0 0 0
20253 Parameter estimation for fractional Ornstein-U... paper provides several statistical estimators ... 0 0 1 1 0 0
20254 E-polynomials of $PGL(2,\mathbb{C})$-character... paper compute epolynomials pglmathbbccharacter... 0 0 1 0 0 0
20255 Security Analysis of Cache Replacement Policies modern computer architectures share physical r... 1 0 0 0 0 0
20256 Supercongruences related to ${}_3F_2(1)$ invol... show various supercongruences truncated series... 0 0 1 0 0 0
20257 Dynamic Layer Normalization for Adaptive Neura... layer normalization recently introduced techni... 1 0 0 0 0 0
20258 First-Order vs. Second-Order Encodings for LTL... translating formulas linear temporal logic ltl... 1 0 0 0 0 0
20259 Regularity results and parametrices of semi-li... short note describes benefit one obtains speci... 0 0 1 0 0 0
20260 $\left( β, \varpi \right)$-stability for cross... paper introduce new concept stability crossval... 1 0 1 1 0 0
20261 Directional convexity of harmonic mappings convolution properties discussed complexvalued... 0 0 1 0 0 0
20262 Optimal Non-uniform Deployments in Ultra-Dense... network densification heterogenisation deploym... 1 0 0 0 0 0
20263 Plan, Attend, Generate: Character-level Neural... investigate integration planning mechanism enc... 1 0 0 0 0 0
20264 Deep Recurrent NMF for Speech Separation by Un... paper propose novel recurrent neural network a... 1 0 0 1 0 0
20265 Birth of isolated nested cylinders and limit c... start point piecewise smooth vector field defi... 0 0 1 0 0 0
20266 The difficulty of folding self-folding origami difficult refold previously folded sheet paper... 0 1 0 0 0 0
20267 Integrable Trotterization: Local Conservation ... discuss general procedure construct integrable... 0 1 0 0 0 0
20268 The Multivariate Hawkes Process in High Dimens... hawkes process class point processes whose fut... 0 0 0 1 0 0
20269 Aerial-Ground collaborative sensing: Third-Per... rapid deployment operation key requirements ti... 1 0 0 0 0 0
20270 A universal thin film model for Ginzburg-Landa... present analytical treatment threedimensional ... 0 1 1 0 0 0
20271 LOCATA challenge: speaker localization with a ... document describes submission localization tra... 1 0 0 0 0 0
20272 Less Is More: A Comprehensive Framework for th... number component classifiers chosen ensemble g... 1 0 0 1 0 0
20273 Large-Scale Low-Rank Matrix Learning with Nonc... lowrank modeling many important applications c... 1 0 0 1 0 0
20274 Computational Eco-Systems for Handwritten Digi... inspired importance diversity biological syste... 0 0 0 1 0 0
20275 Compressing networks with super nodes community detection commonly used technique id... 1 1 0 0 0 0
20276 Mode specific electronic friction in dissociat... electronic friction ensuing nonadiabatic energ... 0 1 0 0 0 0
20277 The quantum auxiliary linear problem & quantum... explore notion quantum auxiliary linear proble... 0 1 0 0 0 0
20278 Simplified Minimal Gated Unit Variations for R... recurrent neural networks various types hidden... 1 0 0 1 0 0
20279 Parallel G-duplex and C-duplex DNA with Uninte... hydrogen bonding nucleobases produces diverse ... 0 0 0 0 1 0
20280 Constraints on Vacuum Energy from Structure Fo... paper derives upper limit density rhoscriptsty... 0 1 0 0 0 0
20281 Dynamic Mobile Edge Caching with Location Diff... mobile edge caching enables content delivery d... 1 0 0 0 0 0
20282 Online Learning for Distribution-Free Prediction develop online learning method prediction impo... 1 0 0 1 0 0
20283 Thermal transitions, pseudogap behavior and BC... study mass imbalanced fermifermi mixture withi... 0 1 0 0 0 0
20284 Spectral Approximation for Ergodic CMV Operato... establish concrete criteria fully supported ab... 0 0 1 0 0 0
20285 Quantitative Photoacoustic Imaging in the Acou... standard photoacoustic imaging propagation sou... 0 0 1 0 0 0
20286 Integrated Deep and Shallow Networks for Salie... deep convolutional neural network cnn based sa... 1 0 0 0 0 0
20287 Feedback Capacity over Networks paper investigate fundamental limitations feed... 1 0 0 0 0 0
20288 Flexural phonons in supported graphene: from p... identify graphene layer disordered substrate p... 0 1 0 0 0 0
20289 Test them all, is it worth it? Assessing confi... many approaches testing configurable software ... 1 0 0 0 0 0
20290 Q-Learning Algorithm for VoLTE Closed-Loop Pow... propose reinforcement learning rl based closed... 1 0 0 1 0 0
20291 Ancient shrinking spherical interfaces in the ... consider parabolic allencahn equation mathbbrn... 0 0 1 0 0 0
20292 Measuring the Eccentricity of Items longtail phenomenon tells us many items tail h... 1 0 0 0 0 0
20293 Dataset: Rare Event Classification in Multivar... realworld dataset provided pulpandpaper manufa... 0 0 0 1 0 0
20294 Experimental verification of stopping-power pr... experimental setup consecutive measurement ion... 0 1 0 0 0 0
20295 How to Beat Science and Influence People: Poli... recent book merchants doubt new yorkbloomsbury... 1 0 0 0 0 0
20296 A complete and partial integrability technique... paper deal wellknown nonlinear lorenz system d... 0 1 0 0 0 0
20297 Comparision of the definitions of generalized ... preprint consider compare different definition... 0 0 1 0 0 0
20298 On The Complexity of Sparse Label Propagation paper investigates computational complexity sp... 0 0 0 1 0 0
20299 Detecting Qualia in Natural and Artificial Agents hard problem consciousness dismissed illusion ... 1 0 0 0 0 0
20300 The interplay between Steinberg algebras and p... study interplay steinberg algebras partial ske... 0 0 1 0 0 0
20301 Type-II Dirac Photons dirac equation relativistic electron waves par... 0 1 0 0 0 0
20302 Improving Network Robustness against Adversari... though convolutional neural networks cnns surp... 1 0 0 1 0 0
20303 From sudden quench to adiabatic dynamics in th... study crossover sudden quench limit adiabatic ... 0 1 0 0 0 0
20304 Strongly exchange-coupled and surface-state-mo... report strong interfacial exchange coupling bi... 0 1 0 0 0 0
20305 Survivable Probability of SDN-enabled Cloud Ne... softwaredriven cloud networking new paradigm o... 1 0 0 0 0 0
20306 Model-Based Policy Search for Automatic Tuning... pid control architectures widely used industri... 1 0 0 1 0 0
20307 Engineering a Simplified 0-Bit Consistent Weig... minhashing approach sketching become important... 0 0 0 1 0 0
20308 Quantifying macroeconomic expectations in stoc... among macroeconomic indicators monthly release... 0 0 0 0 0 1
20309 Effects of Incomplete Ionization on Beta - Ga2... understanding origin unintentional doping gao ... 0 1 0 0 0 0
20310 A single coordinate framework for optic flow a... optic flow two dimensional special qualities a... 0 0 0 0 1 0
20311 Gain control with A-type potassium current: IA... neurons process information transforming barra... 0 0 0 0 1 0
20312 Cyclic Datatypes modulo Bisimulation based on ... cyclic data structures cyclic lists functional... 1 0 0 0 0 0
20313 High-order harmonic generation from highly-exc... highorder harmonic generation hhg aligned acet... 0 1 0 0 0 0
20314 Cellulyzer - Automated analysis and interactiv... report set programs developed zmbh bioimaging ... 1 1 0 0 0 0
20315 Vprop: Variational Inference using RMSprop many computationallyefficient methods bayesian... 1 0 0 1 0 0
20316 Hidden symmetries in $N$-layer dielectric stacks optical properties multilayer system dielectri... 0 1 0 0 0 0
20317 Solvability regions of affinely parameterized ... quadratic systems equations appear several app... 1 0 1 0 0 0
20318 Mid-price estimation for European corporate bo... illiquid markets obvious proxy market price as... 0 0 0 0 0 1
20319 Matching RGB Images to CAD Models for Object P... propose novel method object pose estimation rg... 1 0 0 0 0 0
20320 A Model for Paired-Multinomial Data and Its Ap... human microbiome studies sequencing reads data... 0 0 0 1 0 0
20321 Adhesion-induced Discontinuous Transitions and... transition points mark qualitative changes mac... 1 0 0 0 0 0
20322 Numerical simulation of polynomial-speed conve... provide hybrid method captures polynomial spee... 0 0 1 0 0 0
20323 Efficient determination of optimised multi-arm... primarily motivated drug development process s... 0 0 0 1 0 0
20324 Application of the Waveform Relaxation Techniq... paper present cosimulation pid class power con... 1 1 0 0 0 0
20325 Some Investigations about the Properties of Ma... paper considered sub family exponential family... 0 0 1 1 0 0
20326 Some Insights on Synthesizing Optimal Linear Q... paper revisits problem optimal control law des... 1 0 0 0 0 0
20327 Schumann resonance transients and the search f... schumann resonance transients propagate around... 0 1 0 0 0 0
20328 Learning to Fly by Crashing learn navigate unmanned aerial vehicle uav avo... 1 0 0 0 0 0
20329 Estimating Graphlet Statistics via Lifting exploratory analysis network data often limite... 0 0 0 1 0 0
20330 Calibration for the (Computationally-Identifia... algorithms increasingly inform influence decis... 1 0 0 1 0 0
20331 The distribution of old stars around the Milky... abridged paper revisit problem inferring inner... 0 1 0 0 0 0
20332 On infinite order differential operators in fr... paper discuss general properties viscoelastic ... 0 1 1 0 0 0
20333 Gap structure of FeSe determined by field-angl... quasiparticle excitations fese studied means s... 0 1 0 0 0 0
20334 Recurrent Neural Networks for anomaly detectio... paper presents model based deep learning algor... 0 1 0 0 0 0
20335 Electro-Oxidation of Ni42 Steel: A highly Acti... janus type watersplitting catalysts attracted ... 0 1 0 0 0 0
20336 Shape-constrained partial identification of a ... prevailing challenge biomedical social science... 0 0 1 1 0 0
20337 Warped metrics for location-scale models paper argues class riemannian metrics called w... 0 0 1 1 0 0
20338 Detecting Changes in Time Series Data using Vo... work develops techniques sequential detection ... 1 0 0 0 0 0
20339 A minimax and asymptotically optimal algorithm... propose klucb algorithm regret minimization st... 0 0 1 1 0 0
20340 Eigenfunctions of Periodic Differential Operat... ordinary differential operators periodic coeff... 0 0 1 0 0 0
20341 Infinite ergodic index of the ehrenfest wind-t... set possible configurations ehrenfest windtree... 0 0 1 0 0 0
20342 Arrays of strongly-coupled atoms in a one-dime... study cooperative optical coupling regularly s... 0 1 0 0 0 0
20343 MEG-Derived Functional Tractography, Results f... measures neuroelectric activity automatically ... 0 0 0 0 1 0
20344 Coincidence of magnetic and valence quantum cr... present accurate electrical resistivity measur... 0 1 0 0 0 0
20345 Sequential Inverse Approximation of a Regulari... one goals scaling sequential machine learning ... 0 0 0 1 0 0
20346 Sesqui-arrays, a generalisation of triple arrays triple array rectangular array containing lett... 0 0 1 1 0 0
20347 Investigating how well contextual features are... learning algorithms natural language processin... 1 0 0 0 0 0
20348 A Hybridizable Discontinuous Galerkin solver f... axisymmetric fusion reactors equilibrium magne... 0 1 0 0 0 0
20349 Sketching Linear Classifiers over Data Streams introduce new sublinear space sketchthe weight... 1 0 0 1 0 0
20350 Tamed to compatible when b^(2+) = 1 and b^1 = 2 weiyi zhang noticed recently gap proof main th... 0 0 1 0 0 0
20351 The Mass Transference Principle: Ten Years On article discuss mass transference principle du... 0 0 1 0 0 0
20352 Ground-state properties of Ca$_2$ from narrow ... twocolor photoassociation ca four weakly bound... 0 1 0 0 0 0
20353 On the semisimplicity of the cyclotomic quiver... provide criteria cyclotomic quiver hecke algeb... 0 0 1 0 0 0
20354 On the origin of the shallow and "replica" ban... compare electronic structures single fese laye... 0 1 0 0 0 0
20355 A Matrix Factorization Approach for Learning S... regularization techniques widely employed opti... 1 0 1 1 0 0
20356 A Bootstrap Method for Goodness of Fit and Mod... network models applied numerous domains data r... 0 0 0 1 0 0
20357 Nonlinear Acceleration of Stochastic Algorithms extrapolation methods use last iterates optimi... 0 0 1 0 0 0
20358 Motion of Massive Particles in Rindler Space a... motion massive particle rindler space studied ... 0 1 0 0 0 0
20359 Measuring Sample Quality with Kernels approximate markov chain monte carlo mcmc offe... 1 0 0 1 0 0
20360 Diversity of preferences can increase collecti... search engines online marketplaces humancomput... 1 0 0 0 0 0
20361 Epidemic spread in interconnected directed net... real world many complex systems interact syste... 0 1 0 0 0 0
20362 Controllability and maximum matchings of compl... previously controllability problem linear time... 1 0 0 0 0 0
20363 Dimers, crystals and quantum Kostka numbers relate counting honeycomb dimer configurations... 0 0 1 0 0 0
20364 Generalized Task-Parameterized Skill Learning programming demonstration recently gained much... 1 0 0 0 0 0
20365 Nonparametric Bayesian volatility learning und... aiming financial applications study problem le... 0 0 0 0 0 1
20366 Multi-Speaker DOA Estimation Using Deep Convol... supervised learning based methods source local... 1 0 0 0 0 0
20367 Follow-up of eROSITA and Euclid Galaxy Cluster... revolution galaxy cluster science years away s... 0 1 0 0 0 0
20368 Effect of viscosity ratio on the self-sustaine... previous studies shown intermediate surface te... 0 1 0 0 0 0
20369 On the Effects of Batch and Weight Normalizati... generative adversarial networks gans highly ef... 1 0 0 1 0 0
20370 A noise-immune cavity-assisted non-destructive... present implement nondestructive detection sch... 0 1 0 0 0 0
20371 Remarks on planar edge-chromatic critical graphs open case vizings conjecture every planar grap... 0 0 1 0 0 0
20372 The LOFAR window on star-forming galaxies and ... present study lowfrequency radio properties st... 0 1 0 0 0 0
20373 Interplay between the Inverse Scattering Metho... known initialboundary value problem certain in... 0 1 1 0 0 0
20374 GNC of the SphereX Robot for Extreme Environme... wheeled ground robots limited exploring extrem... 1 1 0 0 0 0
20375 Stable Signatures for Dynamic Graphs and Dynam... studying flockingswarming behaviors animals on... 0 0 1 0 0 0
20376 A Data-driven Approach Towards Human-robot Col... developing system humanrobot communication ena... 1 0 0 0 0 0
20377 Discursive Landscapes and Unsupervised Topic M... recent turn towards quantitative textasdata ap... 1 0 0 0 0 0
20378 Lattice Gas with Molecular Dynamics Collision ... introduce lattice gas implementation based coa... 0 1 0 0 0 0
20379 From dynamical systems with time-varying delay... present paper investigate influence retarded a... 0 1 1 0 0 0
20380 Engineering Frequency-dependent Superfluidity ... unconventional superconductivity superfluidity... 0 1 0 0 0 0
20381 In-Silico Proportional-Integral Moment Control... problem controlling mean variance species inte... 1 0 0 0 1 0
20382 Big enterprise registration data imputation: S... big finegrained enterprise registration data i... 1 0 0 0 0 0
20383 Fast Simulation of Vehicles with Non-deformabl... paper presents novel technique allows computat... 1 0 0 0 0 0
20384 Persistent Hidden States and Nonlinear Transfo... recurrent neural networks rnns drawing much at... 0 0 0 1 0 0
20385 Satellite Image-based Localization via Learned... propose visionbased method localizes ground ve... 1 0 0 0 0 0
20386 Optimality of codes with respect to error prob... consider geometrical optimization problems rel... 1 0 1 0 0 0
20387 Improved TDNNs using Deep Kernels and Frequenc... time delay neural networks tdnns effective aco... 0 0 0 1 0 0
20388 A Structured Self-attentive Sentence Embedding paper proposes new model extracting interpreta... 1 0 0 0 0 0
20389 When Neurons Fail view neural network distributed system neurons... 0 0 0 1 0 0
20390 Heavy Traffic Limit for a Tandem Queue with Id... consider twonode tandem queueing network upstr... 0 0 1 0 0 0
20391 Autonomous Sweet Pepper Harvesting for Protect... letter present new robotic harvester harvey au... 1 0 0 0 0 0
20392 AMI SZ observation of galaxy-cluster merger CI... ami observations towards ciza j comparison obs... 0 1 0 0 0 0
20393 Development of a computer-aided design softwar... orthognathic surgery dental splints important ... 1 1 0 0 0 0
20394 Energy-transport systems for optical lattices:... energytransport equations transport fermions o... 0 0 1 0 0 0
20395 First principles study of structural, magnetic... report ab initio density functional calculatio... 0 1 0 0 0 0
20396 Subspace Robust Wasserstein distances making sense wasserstein distances discrete me... 1 0 0 1 0 0
20397 Wind accretion onto compact objects xray emission associated accretion onto compac... 0 1 0 0 0 0
20398 Riemannian Stein Variational Gradient Descent ... develop riemannian stein variational gradient ... 0 0 0 1 0 0
20399 Suspension-thermal noise in spring-antispring ... springantispring systems investigated possible... 0 1 0 0 0 0
20400 Fooling Sets and the Spanning Tree Polytope study extensions polytopes combinatorial optim... 1 0 1 0 0 0
20401 From Azéma supermartingales of finite honest t... given finite honest time derive representation... 0 0 0 0 0 1
20402 Single versus Double Blind Reviewing at WSDM 2017 paper study implications conference program co... 1 0 0 0 0 0
20403 Scale-variant Topological Information for Char... realworld networks difficult characterize vari... 1 0 0 0 0 0
20404 Topological orbital superfluid with chiral d-w... topological superfluid exotic state quantum ma... 0 1 0 0 0 0
20405 Optimal client recommendation for market maker... process liquidity provision financial markets ... 0 0 0 1 0 0
20406 Design of an Audio Interface for Patmos paper describes design implementation audio in... 1 0 0 0 0 0
20407 A Classifying Variational Autoencoder with App... variational autoencoder vae popular probabilis... 1 0 0 1 0 0
20408 On Estimation of Isotonic Piecewise Constant S... consider sequence real data points xldots xn u... 0 0 1 1 0 0
20409 Deep Stacked Stochastic Configuration Networks... concept stochastic configuration networks scns... 0 0 0 1 0 0
20410 Extracting Syntactic Patterns from Databases many database columns contain string numerical... 1 0 0 0 0 0
20411 Aggressive Sampling for Multi-class to Binary ... address problem multiclass classification case... 1 0 0 1 0 0
20412 Understanding and predicting travel time with ... travel time route varies substantially time da... 0 0 0 1 0 0
20413 The power of sum-of-squares for detecting hidd... study planted problemsfinding hidden structure... 1 0 0 0 0 0
20414 An active-learning algorithm that combines spa... polynomial chaos expansions pce seen widesprea... 0 0 0 1 0 0
20415 Experimental Tests of Spirituality currently harness technologies could shed new ... 0 0 0 0 1 0
20416 Chern classes and Gromov--Witten theory of pro... prove gromovwitten theory gwt projective bundl... 0 0 1 0 0 0
20417 Numerical Gaussian Processes for Time-dependen... introduce concept numerical gaussian processes... 1 0 1 1 0 0
20418 Learning from Experience: A Dynamic Closed-Loo... quality experience qoe known subjective contex... 1 0 0 0 0 0
20419 Deep CNN based feature extractor for text-prom... deep learning still common tool speaker verifi... 0 0 0 1 0 0
20420 Data-Injection Attacks in Stochastic Control S... consider stochastic process controlled across ... 1 0 1 0 0 0
20421 Efficient Version-Space Reduction for Visual T... discrminative trackers employ classification a... 1 0 0 0 0 0
20422 Context2Name: A Deep Learning-Based Approach t... javascript code deployed wild minified process... 1 0 0 1 0 0
20423 Reconstructing fluid dynamics with micro-finit... theory navierstokes equations viscous fluid in... 0 1 0 0 0 0
20424 Towards Black-box Iterative Machine Teaching paper make important step towards blackbox mac... 1 0 0 1 0 0
20425 On Generalization and Regularization in Deep L... large neural network generalize well complex t... 0 0 1 1 0 0
20426 Nonparametric Inference for Auto-Encoding Vari... would like learn latent representations lowdim... 1 0 0 1 0 0
20427 Imbalanced Malware Images Classification: a CN... deep convolutional neural networks cnns applie... 1 0 0 1 0 0
20428 Integrated optical force sensors using focusin... mechanical oscillators heart many sensor appli... 0 1 0 0 0 0
20429 Comparison of Signaling and Media Approaches t... ip networks became dominant type information n... 1 0 0 0 0 0
20430 Coupling functions: Universal insights into dy... dynamical systems found nature rarely isolated... 0 1 0 0 0 0
20431 Uncertainty quantification for radio interfero... uncertainty quantification critical missing co... 0 1 0 1 0 0
20432 Semialgebraic Invariant Synthesis for the Kann... emphorbit problem consists determining given l... 1 0 1 0 0 0
20433 Design and characterization of the Large-Apert... largeaperture experiment detect dark age leda ... 0 1 0 0 0 0
20434 Automatic Bayesian Density Analysis making sense dataset automatic unsupervised fa... 0 0 0 1 0 0
20435 MLCapsule: Guarded Offline Deployment of Machi... widespread use machine learning ml techniques ... 0 0 0 1 0 0
20436 Brownian forgery of statistical dependences balance held brownian motion temporal regulari... 0 0 1 1 0 0
20437 Internal sizes in $μ$-abstract elementary classes working context muabstract elementary classes ... 0 0 1 0 0 0
20438 Seasonal forecasts of the summer 2016 Yangtze ... yangtze river subject heavy flooding throughou... 0 1 0 0 0 0
20439 Modeling Interference Via Symmetric Treatment ... classical causal inference assumes treatment m... 0 0 0 1 0 0
20440 A Bayesian algorithm for distributed network l... reliable accurate affordable positioning servi... 1 0 0 1 0 0
20441 Bounds for multivariate residues and for the p... present several upper bounds height global res... 0 0 1 0 0 0
20442 An adsorbed gas estimation model for shale gas... shale gas plays important role reducing pollut... 0 1 0 1 0 0
20443 A Semantic Loss Function for Deep Learning wit... paper develops novel methodology using symboli... 1 0 0 1 0 0
20444 Chaotic properties of a turbulent isotropic fluid tracking divergence two initially close trajec... 0 1 0 0 0 0
20445 White light emission from silicon nanoparticles one important semiconductors silicon si used f... 0 1 0 0 0 0
20446 The collapse of ecosystem engineer populations humans ultimate ecosystem engineers profoundly... 0 1 0 0 0 0
20447 Highly Viscous Microjet Generator paper describes simple yet novel system genera... 0 1 0 0 0 0
20448 Section problems for configuration spaces of s... paper give closetosharp answer basic questions... 0 0 1 0 0 0
20449 Odd-triplet superconductivity in single-level ... study interplay spin charge coherence singlele... 0 1 0 0 0 0
20450 From Neuronal Models to Neuronal Dynamics and ... paper introduction membrane potential equation... 0 0 0 0 1 0
20451 A compilation of LEGO Technic parts to support... present compilation lego technic parts provide... 0 0 1 0 0 0
20452 On the Casas-Alvero conjecture conjecture formulated affine structure linked ... 0 0 1 0 0 0
20453 Effect of compressibility and aspect ratio on ... recent experiments show statistical impact sea... 0 1 0 0 0 0
20454 Integral models of reductive groups and integr... let g reductive algebraic group padic field nu... 0 0 1 0 0 0
20455 A proof of Boca's Theorem give general method extending unital completel... 0 0 1 0 0 0
20456 Vico-Greengard-Ferrando quadratures in the ten... convolution greens function differential opera... 1 0 0 0 0 0
20457 Mott insulators of hardcore bosons in 1D: many... manybody phenomena always integral part physic... 0 1 0 0 0 0
20458 Fast Monte Carlo Markov chains for Bayesian sh... performing bayesian data analysis using genera... 0 0 1 1 0 0
20459 Distributed Optimal Vehicle Grid Integration S... increasing electric vehicle ev adoption recent... 1 0 1 0 0 0
20460 Horcrux: A Password Manager for Paranoids vulnerabilities password managers unremitting ... 1 0 0 0 0 0
20461 Cross-validation text survey crossvalidation define classical c... 0 0 1 1 0 0
20462 Learning from Label Proportions in Brain-Compu... objective using traditional approaches brainco... 1 0 0 1 0 0
20463 Generalized Index Coding Problem and Discrete ... index coding problem generalized recently acco... 1 0 1 0 0 0
20464 Reconstruction via the intrinsic geometric str... concerned inverse scattering problem extractin... 0 0 1 0 0 0
20465 Thermoelectric phase diagram of the SrTiO3-SrN... thermoelectric energy conversion exploitation ... 0 1 0 0 0 0
20466 AMPA, NMDA and GABAA receptor mediated network... work study excitatory ampa nmda inhibitory gab... 0 0 0 0 1 0
20467 Coarse fundamental groups and box spaces use coarse version fundamental group first int... 0 0 1 0 0 0
20468 Algebraic entropy of (integrable) lattice equa... study growth degrees many autonomous nonautono... 0 1 0 0 0 0
20469 Measurement of mirror birefringence with laser... laser heterodyne polarimeter lhp designed meas... 0 1 0 0 0 0
20470 Individual position diversity in dependence so... availability big data recorded massively multi... 1 1 0 0 0 0
20471 A formula for the nonsymmetric Opdam's hyperge... aim paper give explicit formula nonsymmetric h... 0 0 1 0 0 0
20472 A new algorithm for irreducible decomposition ... algorithm irreducible decomposition representa... 1 0 0 0 0 0
20473 Stability and Grothendieck note commentary modeltheoretic interpretation ... 0 0 1 0 0 0
20474 Visual Analogies between Atari Games for Study... work ask following question visual analogies l... 0 0 0 1 0 0
20475 Learning in the Repeated Secretary Problem classical secretary problem one attempts find ... 1 0 0 0 0 0
20476 Flexible Mixture Modeling on Constrained Spaces paper addresses challenges flexibly modeling m... 0 0 0 1 0 0
20477 Universal equilibrium scaling functions at sho... analyzing spinspin correlation functions relat... 0 1 0 0 0 0
20478 First Results from CUORE: A Search for Lepton ... cuore experiment tonscale cryogenic bolometer ... 0 1 0 0 0 0
20479 Bernoulli-Carlitz and Cauchy-Carlitz numbers w... recently cauchycarlitz number defined counterp... 0 0 1 0 0 0
20480 Irreducible network backbones: unbiased graph ... networks provide informative yet nonredundant ... 1 1 0 0 0 0
20481 Synkhronos: a Multi-GPU Theano Extension for D... present synkhronos extension theano multigpu c... 1 0 0 0 0 0
20482 The PomXYZ Proteins Self-Organize on the Bacte... cell division site positioning precisely regul... 0 0 0 0 1 0
20483 Quantitative Results on Diophantine Equations ... consider system polynomials fldots frin mathbb... 0 0 1 0 0 0
20484 Generalized Springer correspondence for symmet... let g gln algebraically closed field odd chara... 0 0 1 0 0 0
20485 An Ensemble Boosting Model for Predicting Tran... work focuses problem predicting transfer pedia... 1 0 0 1 0 0
20486 Effects of Network Structure on the Performanc... propose minority route choice game investigate... 1 1 0 0 0 0
20487 Sneak into Devil's Colony- A study of Fake Pro... massive content users social personal professi... 1 0 0 0 0 0
20488 Preserving Data-Privacy with Added Noises: Opt... networked system often relies distributed algo... 1 0 0 0 0 0
20489 Geometric tuning of self-propulsion for Janus ... catalytic swimmers attracted much attention al... 0 1 0 0 0 0
20490 On the Bogolubov-de Gennes Equations consider bogolubovde gennes equations giving e... 0 0 1 0 0 0
20491 High-dimensional regression in practice: an em... penalized likelihood methods widely used highd... 0 0 0 1 0 0
20492 Using Human Brain Activity to Guide Machine Le... machine learning field computer science builds... 1 0 0 0 0 0
20493 Anesthesiologist-level forecasting of hypoxemi... use deep learning model trained patients blood... 1 0 0 1 0 0
20494 Merging fragments of classical logic investigate possibility extending nonfunctiona... 1 0 1 0 0 0
20495 Variational Bayes Estimation of Discrete-Margi... propose new variational bayes estimator highdi... 0 0 0 1 0 0
20496 COSMO: Contextualized Scene Modeling with Bolt... scene modeling crucial robots need perceive re... 1 0 0 0 0 0
20497 Learning Large-Scale Topological Maps Using Su... order perform complex actions human environmen... 1 0 0 0 0 0
20498 Entanglement scaling and spatial correlations ... study numerically entanglement entropy spatial... 0 1 0 0 0 0
20499 Anyonic excitations of hardcore anyons strongly interacting manybody systems consisti... 0 1 0 0 0 0
20500 Chaotic behavior in Casimir oscillators: A cas... casimir forces material surfaces close proximi... 0 1 0 0 0 0
20501 Confluence in Probabilistic Rewriting driven interest reasoning probabilistic progra... 1 0 0 0 0 0
20502 Structure preserving schemes for mean-field eq... paper consider development numerical schemes m... 0 1 0 0 0 0
20503 Localization optoacoustic tomography localizationbased imaging revolutionized fluor... 0 1 0 0 0 0
20504 Reduced-basis approach to many-body localization within standard model manybody localization ie... 0 1 0 0 0 0
20505 Electron-correlation study of Y III-Tc VII ion... spectroscopic properties useful plasma diagnos... 0 1 0 0 0 0
20506 Align and Copy: UZH at SIGMORPHON 2017 Shared ... paper presents submissions university zurich s... 1 0 0 0 0 0
20507 Krylov methods for low-rank commuting generali... consider generalizations sylvester matrix equa... 0 0 1 0 0 0
20508 Atomic-scale origin of dynamic viscoelastic re... viscoelasticity described since time maxwell i... 0 1 0 0 0 0
20509 On-sky closed loop correction of atmospheric d... adaptive optic ao systems delivering high leve... 0 1 0 0 0 0
20510 Experimental observations and modelling of int... progress made understanding spontaneous toroid... 0 1 0 0 0 0
20511 Where, When, and How mmWave is Used in 5G and ... wireless engineers business planners commonly ... 1 0 0 0 0 0
20512 A simple script language for choreography of m... scripting language described document first pl... 1 0 0 0 0 0
20513 Stability results for abstract evolution equat... consider abstract evolution equations onoff ti... 0 0 1 0 0 0
20514 Solar wind turbulent cascade from MHD to sub-i... spectral properties turbulent cascade fluid ki... 0 1 0 0 0 0
20515 Blind source separation of tensor-valued time ... blind source separation model multivariate tim... 0 0 1 1 0 0
20516 Mixed Cages introduce notion z r gmixed cage z r gmixed ca... 0 0 1 0 0 0
20517 Single-beam dielectric-microsphere trapping wi... technique levitate measure threedimensional po... 0 1 0 0 0 0
20518 An Empirical Analysis of Traceability in the M... monero privacycentric cryptocurrency allows us... 1 0 0 0 0 0
20519 Automatic Face Image Quality Prediction face image quality defined measure utility fac... 1 0 0 0 0 0
20520 Stochastic Block Models are a Discrete Surface... networks represent agents interactions arise m... 1 0 0 1 0 0
20521 Robust d-wave pairing symmetry in multi-orbita... pairing symmetry newly proposed cobalt high te... 0 1 0 0 0 0
20522 Thermodynamic properties of Ba$_2$CoSi$_2$O$_6... search flatband solidstate realizations crucia... 0 1 0 0 0 0
20523 Fisher Information and Natural Gradient Learni... deep neural network hierarchical nonlinear mod... 0 0 0 1 0 0
20524 Dynamic of plumes and scaling during the melti... identify describe main dynamic regimes occurri... 0 1 0 0 0 0
20525 Parallel mean curvature surfaces in four-dimen... survey different classification results surfac... 0 0 1 0 0 0
20526 Recent implementations, applications, and exte... since introduction knyazev toward optimal prec... 1 0 0 1 0 0
20527 An evaluation of cosmological models from expa... compare large suite theoretical cosmological m... 0 1 0 0 0 0
20528 The variety of $2$-dimensional algebras over a... work devoted variety dimensional algebras alge... 0 0 1 0 0 0
20529 A Variational Observation Model of 3D Object f... present bayesian object observation model comp... 1 0 0 0 0 0
20530 Generation of optical frequency combs via four... investigate generation optical frequency combs... 0 1 0 0 0 0
20531 Cross-referencing Social Media and Public Surv... physical media like surveillance cameras socia... 1 0 0 0 0 0
20532 Nonlinear Dynamics of a Viscous Bubbly Fluid physical model threedimensional flow viscous b... 0 1 0 0 0 0
20533 ConvNet-Based Localization of Anatomical Struc... localization anatomical structures prerequisit... 1 0 0 0 0 0
20534 Gradient estimates for heat kernels and harmon... let xdmu doubling metric measure space endowed... 0 0 1 0 0 0
20535 The Deep Underground Neutrino Experiment -- DU... last decade remarkable neutrino physics partic... 0 1 0 0 0 0
20536 Variations of $q$-Garnier system study several variants qgarnier system corresp... 0 1 1 0 0 0
20537 Quantum Quench dynamics in Non-local Luttinger... investigate luttinger model fixed box potentia... 0 0 1 0 0 0
20538 Dynamics of Relaxed Inflation cosmological relaxation electroweak scale prop... 0 1 0 0 0 0
20539 Clustering is semidefinitely not that hard: No... solving hard computational problems semidefini... 1 0 0 0 0 0
20540 Dispersive optical detection of magnetic Feshb... magnetically tunable feshbach resonances ultra... 0 1 0 0 0 0
20541 Unveiling Bias Compensation in Turbo-Based Alg... compressed sensing realvalued sparse vector re... 1 0 0 0 0 0
20542 Accelerated Linear Convergence of Stochastic M... momentum methods polyaks heavy ball hb method ... 1 0 0 1 0 0
20543 Compressed sensing with sparse corruptions: Fa... recovery approximately sparse compressible coe... 0 0 1 0 0 0
20544 Learning to Remember Rare Events despite recent advances memoryaugmented deep n... 1 0 0 0 0 0
20545 Stacking-dependent electronic structure of tri... crystallographic stacking order multilayer gra... 0 1 0 0 0 0
20546 Interaction energy between vortices of vector ... study variational ginzburglandau type model de... 0 0 1 0 0 0
20547 Multimodal Nonlinear Microscope based on a Com... present multimodal nonlinear optical nlo laser... 0 1 0 0 0 0
20548 The Diffuse Light of the Universe - On the mic... discovery new type uniform radiation located r... 0 1 0 0 0 0
20549 Classification of $5$-Dimensional Complex Nilp... leibniz algebras certain generalization lie al... 0 0 1 0 0 0
20550 Haptics of Screwing and Unscrewing for its App... reconstruction skilled humans sensation contro... 1 0 0 0 0 0
20551 $G$-invariant Szegö kernel asymptotics and CR ... let x tx compact connected orientable cr manif... 0 0 1 0 0 0
20552 Self-similar resistive circuits as fractal-lik... present work explore resistive circuits indivi... 0 1 0 0 0 0
20553 DynaPhoPy: A code for extracting phonon quasip... developed computational code dynaphopy allow u... 0 1 0 0 0 0
20554 Lower Bounds for Two-Sample Structural Change ... change detection problem determine markov netw... 1 0 1 0 0 0
20555 How Usable are Rust Cryptography APIs? context poor usability cryptographic apis seve... 1 0 0 0 0 0
20556 Augmenting End-to-End Dialog Systems with Comm... building dialog agents converse naturally huma... 1 0 0 0 0 0
20557 A framework for Multi-A(rmed)/B(andit) testing... propose alternative framework existing setups ... 1 0 0 1 0 0
20558 Statistical Speech Enhancement Based on Probab... paper presents statistical method singlechanne... 1 0 0 1 0 0
20559 BPGrad: Towards Global Optimality in Deep Lear... understanding global optimality deep learning ... 1 0 0 1 0 0
20560 Lagrangian Flow Network approach to an open fl... concepts tools network theory socalled lagrang... 0 1 0 0 0 0
20561 Some new gradient estimates for two nonlinear ... paper maximum principle cutoff function invest... 0 0 1 0 0 0
20562 On the pointwise iteration-complexity of a dyn... paper extend improved pointwise iterationcompl... 0 0 1 0 0 0
20563 DeepBrain: Functional Representation of Neural... paper presents novel deep learningbased method... 1 0 0 1 0 0
20564 Nonlocal heat equations in the Heisenberg group study following nonlocal diffusion equation he... 0 0 1 0 0 0
20565 Motion Planning Networks fast efficient motion planning algorithms cruc... 1 0 0 1 0 0
20566 Query Expansion Techniques for Information Ret... ever increasing size web relevant information ... 1 0 0 0 0 0
20567 Method for Aspect-Based Sentiment Annotation U... paper fills gap aspectbased sentiment analysis... 1 0 0 0 0 0
20568 Commutativity of integral quasi-arithmetic mea... let x mathscrl lambda mathscrm mu finite measu... 0 0 1 0 0 0
20569 Moderate Deviation for Random Elliptic PDEs wi... partial differential equations random inputs b... 0 0 1 0 0 0
20570 Music Transformer music relies heavily repetition build structur... 1 0 0 1 0 0
20571 Residual-Based Detections and Unified Architec... massive multipleinput multipleoutput mmimo tec... 1 0 0 0 0 0
20572 Sparsity constrained split feasibility for dos... split feasibility formulation inverse problem ... 0 1 1 0 0 0
20573 On 2-Verma modules for quantum $\mathfrak{sl}_2$ paper study superalgebra introduced authors pr... 0 0 1 0 0 0
20574 On the Number of Single-Peaked Narcissistic or... investigate preference profiles set mathcalv v... 0 0 1 0 0 0
20575 Planet formation and disk-planet interactions review based lectures given th saasfee advance... 0 1 0 0 0 0
20576 Cherednik algebras and Calogero-Moser cells using representation theory cherednik algebras... 0 0 1 0 0 0
20577 Khovanov complexes of rational tangles show khovanov complex rational tangle simple r... 0 0 1 0 0 0
20578 Asymmetric Connectedness of Fears in the U.S. ... study shocks forwardlooking expectations inves... 0 0 0 0 0 1
20579 Neural Network Based Speaker Classification an... work presents novel framework based feedforwar... 1 0 0 0 0 0
20580 Slimness of graphs slimness graph measures local deviation metric... 1 0 0 0 0 0
20581 SirenAttack: Generating Adversarial Audio for ... despite immense popularity deep learningbased ... 1 0 0 0 0 0
20582 k-server via multiscale entropic regularization present olog kcompetitive randomized algorithm... 1 0 1 0 0 0
20583 Some Large Sample Results for the Method of Re... present general framework studying regularized... 0 0 1 0 0 0
20584 Coregionalised Locomotion Envelopes - A Qualit... sharing statistical strength phrase often empl... 1 0 0 1 0 0
20585 Optimal Invariant Tests in an Instrumental Var... paper uses model symmetries instrumental varia... 0 0 1 1 0 0
20586 Longitudinal electric field: from Maxwell equa... paper use classical electrodynamics show loren... 0 1 0 0 0 0
20587 Estimating linear functionals of a sparse fami... assume observe sample size n composed pdimensi... 0 0 1 1 0 0
20588 Fabrication of porous microrings via laser pri... pulsedlaser dry printing noblemetal microrings... 0 1 0 0 0 0
20589 Performance Measurements of Supercomputing and... increasing amounts data varied sources particu... 1 1 0 0 0 0
20590 Multi-Objective Event-triggered Consensus of L... paper proposes distributed consensus algorithm... 1 0 0 0 0 0
20591 Private and Secure Coordination of Match-Makin... secure private framework interagent communicat... 1 0 1 0 0 0
20592 Kernel Robust Bias-Aware Prediction under Cova... covariate shift training source data testing t... 1 0 0 1 0 0
20593 Degeneration in VAE: in the Light of Fisher In... enormous progress made variational autoencoder... 0 0 0 1 0 0
20594 Room-temperature spin transport in n-Ge probed... demonsrtate electrical spin injection detectio... 0 1 0 0 0 0
20595 Synthesizing Neural Network Controllers with P... present algorithm rapidly learning controllers... 1 0 0 0 0 0
20596 Stealthy Deception Attacks Against SCADA Systems scada protocols industrial control systems ics... 1 0 0 0 0 0
20597 Beta-rhythm oscillations and synchronization t... despite significant functional roles betaband ... 0 0 0 0 1 0
20598 Renyi Differential Privacy propose natural relaxation differential privac... 1 0 0 0 0 0
20599 Enhancing Quality for VVC Compressed Videos by... paper propose quality enhancement network vers... 1 0 0 0 0 0
20600 Discrete CMC surfaces in R^3 and discrete mini... main result paper discrete lawson corresponden... 0 1 1 0 0 0
20601 Network Model Selection Using Task-Focused Min... networks fundamental models data used practica... 1 0 0 0 0 0
20602 Concentration of curvature and Lipschitz invar... combining analytic geometric viewpoints concen... 0 0 1 0 0 0
20603 Beam tuning and bunch length measurement in th... realization short bunch beam manipulating long... 0 1 0 0 0 0
20604 Long-Lived Ultracold Molecules with Electric a... create fermionic dipolar nali molecules triple... 0 1 0 0 0 0
20605 Bilinear generalized Radon transforms in the p... let sigma arclength measure ssubset mathbb r t... 0 0 1 0 0 0
20606 Diffusion of new products with recovering cons... consider diffusion new products discrete basss... 1 1 0 0 0 0
20607 Answering Complex Questions Using Open Informa... substantial progress factoid questionanswering... 1 0 0 0 0 0
20608 On Testing Quantum Programs quantum computer qc solve many computational p... 1 0 0 0 0 0
20609 Degree weighted recurrence networks for the an... recurrence networks powerful tools used effect... 0 1 0 0 0 0
20610 Parcels v0.9: prototyping a Lagrangian Ocean A... ocean general circulation models ogcms move pe... 1 1 0 0 0 0
20611 TFLMS: Large Model Support in TensorFlow by Gr... accelerators gpus limited memory deep neural n... 0 0 0 1 0 0
20612 Machine Learning for Quantum Dynamics: Deep Le... understanding relationship structure lightharv... 0 1 0 1 0 0
20613 Multi-Player Bandits: A Trekking Approach study stochastic multiarmed bandits many playe... 0 0 0 1 0 0
20614 High-resolution investigation of spinal cord a... highresolution noninvasive study intact spine ... 0 1 0 0 0 0
20615 Bohr--Rogosinski radius for analytic functions number articles deal bohrs phenomenon whereas ... 0 0 1 0 0 0
20616 Methods to locate Saddle Points in Complex Lan... present class simple algorithms allows find re... 0 1 0 0 0 0
20617 On the Complexity of Opinions and Online Discu... increasingly polarized world demagogues reduce... 1 0 0 1 0 0
20618 Free energy distribution of the stationary O'C... study semidiscrete directed polymer model intr... 0 1 1 0 0 0
20619 Personalized Gaussian Processes for Forecastin... paper introduce use personalized gaussian proc... 0 0 0 1 0 0
20620 Analysis and Control of a Non-Standard Hyperbo... paper provides results nonstandard hyperbolic ... 1 0 1 0 0 0
20621 Learning Robust Representations for Computer V... unsupervised learning techniques computer visi... 1 0 0 1 0 0
20622 Detection Estimation and Grid matching of Mult... work explore problems detecting number narrowb... 0 0 0 1 0 0
20623 Small-Variance Asymptotics for Nonparametric B... latent feature relational model lfrm generativ... 0 0 0 1 0 0
20624 Towards a Science of Mind ancient mindbody problem continues one deepest... 1 0 0 0 1 0
20625 Resistance distance criterion for optimal slac... investigate dependence transmission losses cho... 1 1 0 0 0 0
20626 Interpolation in the Presence of Domain Inhomo... standard interpolation techniques implicitly b... 0 0 1 0 0 0
20627 Lectures on the mean values of functionals -- ... elementary introduction infinitedimensional pr... 0 1 1 1 0 0
20628 Synthesis of Optimal Resilient Control Strategies repair mechanisms important within resilient s... 1 0 0 0 0 0
20629 Limits of the Kucera-Gacs coding method every real computable martinloef random real w... 0 0 1 0 0 0
20630 Subspace Tracking Algorithms for Millimeter Wa... paper proposes use subspace tracking algorithm... 1 0 0 0 0 0
20631 Thomas Precession for Dressed Particles consider particle dressed boundary gravitons t... 0 1 1 0 0 0
20632 Exponential random graphs behave like mixtures... study behavior exponential random graphs spars... 1 0 1 1 0 0
20633 Certificate Enhanced Data-Flow Analysis proofcarryingcode proposed solution ensure tru... 1 0 0 0 0 0
20634 Small cells in a Poisson hyperplane tessellation little known properties small cells poisson hy... 0 0 1 0 0 0
20635 Privacy-Aware Guessing Efficiency investigate problem guessing discrete random v... 1 0 1 1 0 0
20636 Positioning services of a travel agency in soc... paper methods forming travel company customer ... 1 0 0 0 0 0
20637 Inverse Mapping for Rainfall-Runoff Models usi... paper consider two rainfallrunoff computer mod... 0 0 0 1 0 0
20638 Geometric SMOTE: Effective oversampling for im... classification imbalanced datasets challenging... 1 0 0 0 0 0
20639 Liveness Verification and Synthesis: New Algor... consider problems liveness verification livene... 1 0 0 0 0 0
20640 A semiparametric approach for bivariate extrem... inference tails performed applying results ext... 0 0 0 1 0 0
20641 Prolongation of SMAP to Spatio-temporally Seam... soil moisture active passive smap mission deli... 0 0 0 1 0 0
20642 Note on Green Function Formalism and Topologic... discovered previously topological order parame... 0 0 1 0 0 0
20643 Unsupervised Document Embedding With CNNs propose new model unsupervised document embedd... 1 0 0 1 0 0
20644 A metric model for the functional architecture... purpose work construct model functional archit... 0 0 0 0 1 0
20645 Bayesian parameter identification in Cahn-Hill... consider inverse problem parameter estimation ... 0 0 0 1 0 0
20646 Transport Phase Diagram and Anderson Localizat... hyperuniform disordered photonic materials hdp... 0 1 0 0 0 0
20647 Nearly Maximally Predictive Features and Their... scientific explanation often requires inferrin... 1 1 0 1 0 0
20648 A Survey Of Cross-lingual Word Embedding Models crosslingual representations words enable us r... 1 0 0 0 0 0
20649 Space-efficient classical and quantum algorith... lattice integer span linearly independent vect... 1 0 0 0 0 0
20650 Low Power SI Class E Power Amplifier and RF Sw... research design ghz class e power amplifier pa... 1 0 0 0 0 0
20651 Improved approximation algorithm for the Dense... study densesubhypergraph problem initiated chl... 1 0 0 0 0 0
20652 A Survey of Security Assessment Ontologies literature survey ontologies concerning securi... 1 0 0 0 0 0
20653 Distributed Online Learning of Event Definitions logicbased event recognition systems infer occ... 1 0 0 0 0 0
20654 Solving Graph Isomorphism Problem for a Specia... graph isomorphism important computer science p... 1 0 0 0 0 0
20655 Selective inference for effect modification vi... effect modification occurs effect treatment ou... 0 0 1 1 0 0
20656 Is Climate Change Controversial? Modeling Cont... growing body research focuses computationally ... 1 1 0 0 0 0
20657 Defending Against Adversarial Attacks by Lever... recent work shown stateoftheart models highly ... 0 0 0 1 0 0
20658 Spectral Graph Convolutions for Population-bas... exploiting wealth imaging nonimaging informati... 1 0 0 1 0 0
20659 An independence system as knot invariant independence system respect unknotting number ... 0 0 1 0 0 0
20660 A cavity-induced artificial gauge field in a B... consider theoretically ultracold interacting b... 0 1 0 0 0 0
20661 A Review of Laser-Plasma Ion Acceleration overview research laserplasma based accelerati... 0 1 0 0 0 0
20662 Minimax Optimal Estimators for Additive Scalar... paper consider estimators additive functional ... 1 0 1 1 0 0
20663 Van der Waals Heterostructures Based on Allotr... van der waals heterostructures allotropes phos... 0 1 0 0 0 0
20664 On separated solutions of logistic population ... provide surprising answer question raised ahma... 0 0 1 0 0 0
20665 Nonreciprocal Electromagnetic Scattering from ... scattering obliquely incident electromagnetic ... 0 1 0 0 0 0
20666 Story Cloze Ending Selection Baselines and Dat... paper describes two supervised baseline system... 1 0 0 0 0 0
20667 Linear Quadratic Optimal Control Problems with... paper concerned linear quadratic lq short opti... 0 0 1 0 0 0
20668 A new sampling density condition for shift-inv... let xxiiinmathbbz dotsxixixidots sampling set ... 0 0 1 0 0 0
20669 Experimental Design via Generalized Mean Objec... mean objective cost uncertainty mocu quantifie... 0 0 0 1 0 0
20670 Parallelizing Over Artificial Neural Network T... artificial neural networks popular effective m... 1 0 0 0 0 0
20671 Learning the Structure of Generative Models wi... curating labeled training data become primary ... 1 0 0 1 0 0
20672 Robust Loss Functions under Label Noise for De... many applications classifier learning training... 1 0 0 1 0 0
20673 A quality model for evaluating and choosing a ... today deal many data big data need make decisi... 1 0 0 0 0 0
20674 On the Hardness of Inventory Management with C... consider repeated newsvendor problem inventory... 1 0 0 1 0 0
20675 Social Media Analysis For Organizations: Us No... social networking sites twitter provided great... 1 0 0 1 0 0
20676 Weakly tripotent rings study class rings r property xin r least one e... 0 0 1 0 0 0
20677 ML for Flood Forecasting at Scale effective riverine flood forecasting scale hin... 1 0 0 1 0 0
20678 Spectral proper orthogonal decomposition and i... consider frequency domain form proper orthogon... 0 1 0 0 0 0
20679 An optimal transportation approach for assessi... stochastic dominance fleqstg hold improve agre... 0 0 0 1 0 0
20680 The Effect of Electron Lens as Landau Damping ... electron lens serve effective mechanism suppre... 0 1 0 0 0 0
20681 Search for sterile neutrinos in holographic da... search sterile neutrinos holographic dark ener... 0 1 0 0 0 0
20682 Simulation of high temperature superconductors... work present parallel fullydistributed finite ... 1 1 0 0 0 0
20683 Hardware Translation Coherence for Virtualized... improve system performance modern operating sy... 1 0 0 0 0 0
20684 MotifMark: Finding Regulatory Motifs in DNA Se... interaction proteins dna key driving force sig... 1 0 0 0 0 0
20685 Discovery of Latent 3D Keypoints via End-to-en... paper presents keypointnet endtoend geometric ... 0 0 0 1 0 0
20686 Multi-State Trajectory Approach to Non-Adiabat... general theoretical framework derived recently... 0 1 0 0 0 0
20687 Combining Homotopy Methods and Numerical Optim... paper presents systematic approach computing l... 0 0 1 0 0 0
20688 High quality atomically thin PtSe2 films grown... atomically thin ptse films attracted extensive... 0 1 0 0 0 0
20689 NAVREN-RL: Learning to fly in real environment... present navrenrl approach navigate unmanned ae... 1 0 0 1 0 0
20690 Fast, Accurate and Fully Parallelizable Digita... digital image correlation dic widely used opti... 0 1 0 0 0 0
20691 Discovering the effect of nonlocal payoff calc... classical idea evolutionarily stable strategy ... 0 0 0 0 1 0
20692 Analysis of the measurements of anisotropic a.... measurements highfrequency complex resistivity... 0 1 0 0 0 0
20693 Deep Convolutional Neural Network to Detect J-... paper presents empirical study applying convol... 1 0 0 0 0 0
20694 Observing Power-Law Dynamics of Position-Veloc... letter present measurement phasespace density ... 0 1 0 0 0 0
20695 Modular curves, invariant theory and $E_8$ e root lattice constructed modular curve x inv... 0 0 1 0 0 0
20696 Analysis of Approximate Stochastic Gradient Us... present convergence rate analysis approximate ... 0 0 0 1 0 0
20697 Invariant holomorphic discs in some non-convex... give description complex geodesics study struc... 0 0 1 0 0 0
20698 MIMIX: a Bayesian Mixed-Effects Model for Micr... recent advances bioinformatics made highthroug... 0 0 0 1 0 0
20699 SpatEntropy: Spatial Entropy Measures in R article illustrates measure heterogeneity spat... 0 0 0 1 0 0
20700 Evidence for universality in the initial plane... planetesimals may form gravitational collapse ... 0 1 0 0 0 0
20701 On covering systems of integers covering system integers finite collection mod... 0 0 1 0 0 0
20702 Asymptotically safe cosmology - a status report asymptotic safety based nongaussian fixed poin... 0 1 0 0 0 0
20703 Generalized Earley Parser: Bridging Symbolic G... future predictions sequence data eg videos aud... 0 0 0 1 0 0
20704 COCrIP: Compliant OmniCrawler In-pipeline Robot paper presents modular inpipeline climbing rob... 1 0 0 0 0 0
20705 An Inversion-Based Learning Approach for Impro... paper presents learningbased approach imprompt... 1 0 0 0 0 0
20706 Decay Estimates for 1-D Parabolic PDEs with Bo... work decay estimates derived solutions linear ... 1 0 1 0 0 0
20707 GEANT4 Simulation of Nuclear Interaction Induc... simple selfconsistent approach proposed simula... 0 1 0 0 0 0
20708 Analysis and Measurement of the Transfer Matri... superconducting linacs capable producing inten... 0 1 0 0 0 0
20709 Size-aware Sharding For Improving Tail Latenci... paper introduces concept sizeaware sharding im... 1 0 0 0 0 0
20710 Abell 2744 may be a supercluster aligned along... explain unusual richness compactness abell pro... 0 1 0 0 0 0
20711 Classification of Pressure Gradient of Human C... current work done see artery chance cardiovasc... 0 1 0 0 0 0
20712 Second-order and local characteristics of netw... last decade witnessed increase interest spatia... 0 0 0 1 0 0
20713 Modeling of hysteresis loop and its applicatio... order understand physical hysteresis loops cle... 0 1 0 0 0 0
20714 Online Factorization and Partition of Complex ... finding reduceddimensional structure critical ... 1 0 1 1 0 0
20715 Powerful genome-wide design and robust statist... twosample summarydata mendelian randomization ... 0 0 0 1 0 0
20716 A Benchmark on Reliability of Complex Discrete... paper contains two parts description real elec... 1 0 0 0 0 0
20717 Riemannian Gaussian distributions on the space... recently riemannian gaussian distributions def... 0 0 1 1 0 0
20718 Analisis of the power flow in Low Voltage DC g... power flow low voltage direct current grid lvd... 0 0 1 0 0 0
20719 Multi-scale bilinear restriction estimates for... prove adjoint bilinear restriction estimates g... 0 0 1 0 0 0
20720 Program algebra for Turing-machine programs note presents algebraic theory instruction seq... 1 0 0 0 0 0
20721 CTD: Fast, Accurate, and Interpretable Method ... find patterns anomalies tensor multidimensiona... 1 0 0 1 0 0
20722 Memory Augmented Control Networks planning problems partially observable environ... 1 0 0 0 0 0
20723 Community Recovery in a Preferential Attachmen... message passing algorithm derived recovering c... 1 0 0 1 0 0
20724 The descriptive look at the size of subsets of... explore borel complexity basic families subset... 0 0 1 0 0 0
20725 The Impact of Antenna Height Difference on the... capable significantly reducing cell size enhan... 1 0 0 0 0 0
20726 Spin-wave propagation in cubic anisotropic mat... information carrier modern technologies electr... 0 1 0 0 0 0
20727 Relaxing Exclusive Control in Boolean Games typical framework boolean games bg player chan... 1 0 0 0 0 0
20728 Representing de Rham cohomology classes on an ... let x connected open riemann surface let oka d... 0 0 1 0 0 0
20729 Unidirectional control of optically induced sp... unidirectional control optically induced spin ... 0 1 0 0 0 0
20730 Value Prediction Network paper proposes novel deep reinforcement learni... 1 0 0 0 0 0
20731 Scalable Generalized Linear Bandits: Online Co... generalized linear bandits glbs natural extens... 1 0 0 1 0 0
20732 Dome of magnetic order inside the nematic phas... pressure dependence structural magnetic superc... 0 1 0 0 0 0
20733 ConceptNet at SemEval-2017 Task 2: Extending W... paper describes luminosos participation semeva... 1 0 0 0 0 0
20734 The symmetrized topological complexity of the ... determine symmetrized topological complexity c... 0 0 1 0 0 0
20735 Intertwining operators among twisted modules a... introduce intertwining operators among twisted... 0 0 1 0 0 0
20736 Enabling Visual Design Verification Analytics ... everincreasing architectural complexity contem... 1 0 0 0 0 0
20737 Self-regulation promotes cooperation in social... cooperative behavior real social dilemmas ofte... 1 0 0 0 0 0
20738 Magnetic properties of nanoparticles compacts ... binary random compacts different proportions s... 0 1 0 0 0 0
20739 A Generative Model for Exploring Structure Reg... many realworld networks known attributed netwo... 1 0 0 0 0 0
20740 On the maximal halfspace depth of permutation-... compute maximal halfspace depth class permutat... 0 0 1 1 0 0
20741 Theoretical Evaluation of Li et al.'s Approach... letter principal weakness published article li... 1 0 0 0 0 0
20742 Bioinformatics and Medicine in the Era of Deep... many current scientific advances life sciences... 0 0 0 1 1 0
20743 A Weakly Supervised Approach to Train Temporal... capabilities detecting temporal relations two ... 1 0 0 0 0 0
20744 Privacy with Estimation Guarantees study central problem data privacy share data ... 1 0 0 0 0 0
20745 A line of CFTs: from generalized free fields t... point simple variant syk model call csyk slr i... 0 1 0 0 0 0
20746 Miura transformations for discrete Painlevé eq... derive integrable equations starting autonomou... 0 1 1 0 0 0
20747 Virtual Molecular Dynamics molecular dynamics based solving newtons equat... 0 1 0 0 0 0
20748 Regression with genuinely functional errors-in... contamination covariates measurement error cla... 0 0 0 1 0 0
20749 The distance between a naive cumulative estima... consider process widehatlambdanlambdan lambdan... 0 0 1 1 0 0
20750 Controllability of impulse controlled systems ... paper studies approximate null controllability... 0 0 1 0 0 0
20751 Nearly Optimal Constructions of PIR and Batch ... work study two families codes availability nam... 1 0 0 0 0 0
20752 Submillimeter Array CO(2-1) Imaging of the NGC... present co mosaic map spiral galaxy ngc combin... 0 1 0 0 0 0
20753 Optical and Near-Infrared Spectra of sigma Ori... obtained lowresolution optical micron nearinfr... 0 1 0 0 0 0
20754 The Blackbird Dataset: A large-scale dataset f... blackbird unmanned aerial vehicle uav dataset ... 1 0 0 0 0 0
20755 An integration of fast alignment and maximum-l... motivation cellular electron cryotomography ce... 0 0 0 1 1 0
20756 Local and global existence of solutions to a s... article focuses quasilinear wave equation plap... 0 0 1 0 0 0
20757 Quasi-flat representations of uniform groups a... given discrete group gammagldotsgm number kinm... 0 0 1 0 0 0
20758 Nonparametric Preference Completion consider task collaborative preference complet... 1 0 0 1 0 0
20759 Real-Time Reconstruction of Counting Process t... emerging internet things iot one critical prob... 1 0 0 0 0 0
20760 Discrepancy-Based Algorithms for Non-Stationar... study multiarmed bandit problem rewards realiz... 1 0 0 0 0 0
20761 Kondo lattice heavy fermion behavior in CeRh2Ga2 physical properties intermetallic compound cer... 0 1 0 0 0 0
20762 Khovanov homology and periodic links based results second author define equivariant... 0 0 1 0 0 0
20763 A Note on Spectral Clustering and SVD of Graph... spectral clustering singular value decompositi... 1 0 0 0 0 0
20764 An explicit analysis of the entropic penalty i... solving linear programs using entropic penaliz... 0 0 0 1 0 0
20765 Deconstructing the Tail at Scale Effect Across... network latencies become increasingly importan... 1 0 0 0 0 0
20766 Deep Neural Generative Model of Functional MRI... accurate diagnosis psychiatric disorders plays... 1 0 0 1 0 0
20767 Deep Learning for Patient-Specific Kidney Graf... accurate model patientspecific kidney graft su... 1 0 0 1 0 0
20768 When is a Network a Network? Multi-Order Graph... introduce framework modeling sequential data c... 1 1 0 0 0 0
20769 Outlier-robust moment-estimation via sum-of-sq... develop efficient algorithms estimating lowdeg... 1 0 0 1 0 0
20770 Clustering High Dimensional Dynamic Data Streams present data streaming algorithms kmedian prob... 1 0 0 0 0 0
20771 Edge contact angle and modified Kelvin equatio... consider capillary condensation transitions oc... 0 1 0 0 0 0
20772 Thresholds for hanger slackening and cable sho... melan equation suspension bridges derived assu... 0 1 1 0 0 0
20773 Bendable Cuboid Robot Path Planning with Colli... optimal path planning problems rigid deformabl... 1 0 0 0 0 0
20774 Quotients of triangulated categories and Equiv... give sufficient condition verdier quotient ctc... 0 0 1 0 0 0
20775 Sorting sums of binary decision summands sum n summands independently chosen two choice... 1 0 0 0 0 0
20776 A Pursuit of Temporal Accuracy in General Acti... detecting activities untrimmed videos importan... 1 0 0 0 0 0
20777 Adjusting systematic bias in high dimensional ... principal component analysis continues powerfu... 0 0 1 1 0 0
20778 Dynamical Exploration of Amplitude Bistability... nonlinear systems whose outputs directly propo... 0 1 0 0 0 0
20779 Map Memorization and Forgetting in the IARA Au... work present novel strategy correcting imperfe... 1 0 0 0 0 0
20780 Effective Subgroup Separability of Finitely Ge... paper studies effective separability subgroups... 0 0 1 0 0 0
20781 External Prior Guided Internal Prior Learning ... existing image denoising methods learn image p... 1 0 0 0 0 0
20782 A Study of MAC Address Randomization in Mobile... mac address randomization privacy technique wh... 1 0 0 0 0 0
20783 Completion of the integrable coupling systems paper proposed procedure construct completion ... 0 1 0 0 0 0
20784 On the wildness of cambrian lattices note investigate representation type cambrian ... 0 0 1 0 0 0
20785 Random Projections For Large-Scale Regression fitting linear regression models computational... 0 0 1 1 0 0
20786 Properties of linear groups with restricted un... consider linear groups contain unipotent eleme... 0 0 1 0 0 0
20787 Sparse Approximation of 3D Meshes using the Sp... discrete laplace operator ubiquitous spectral ... 1 0 0 0 0 0
20788 Improved Convergence Rates for Distributed Res... paper develop class decentralized algorithms s... 1 0 1 0 0 0
20789 Sensory Metrics of Neuromechanical Trust today digital sources supply unprecedented com... 0 1 0 0 0 0
20790 Quantum algorithms for training Gaussian Proce... gaussian processes gps important models superv... 0 0 0 1 0 0
20791 Detecting Oriented Text in Natural Images by L... stateoftheart text detection methods specific ... 1 0 0 0 0 0
20792 Factorizable Module Algebras aim paper introduce study large class mathfrak... 0 0 1 0 0 0
20793 Simultaneous Feature and Body-Part Learning fo... robot awareness human actions essential resear... 1 0 0 0 0 0
20794 Off-diagonal estimates of some Bergman-type op... obtain necessary sufficient conditions bounded... 0 0 1 0 0 0
20795 Provenance and Pseudo-Provenance for Seeded Le... many methods automated software test generatio... 1 0 0 1 0 0
20796 Learning Solving Procedure for Artificial Neur... expected progress toward true artificial intel... 1 0 0 0 0 0
20797 On primordial black holes from an inflection p... recently claimed inflationary models inflectio... 0 1 0 0 0 0
20798 Dropout as a Low-Rank Regularizer for Matrix F... regularization matrix factorization mf approxi... 1 0 0 1 0 0
20799 Introduction to a Temporal Graph Benchmark temporal graph data structure consisting nodes... 1 1 0 0 0 0
20800 Orbifold equivalence: structure and new examples orbifold equivalence notion symmetry rely grou... 0 0 1 0 0 0
20801 Efficient Attention using a Fixed-Size Memory ... standard contentbased attention mechanism typi... 1 0 0 0 0 0
20802 Multiplicities of bifurcation sets of Pham sin... local multiplicities maxwell sets spaces versa... 0 0 1 0 0 0
20803 Fast and scalable Gaussian process modeling wi... growing field largescale time domain astronomy... 0 1 0 1 0 0
20804 Toward perfect reads: self-correction of short... motivations shortread accuracy important downs... 1 0 0 0 0 0
20805 Learning Pain from Action Unit Combinations: A... patient pain detected highly reliably facial e... 1 0 0 1 0 0
20806 A Causal And-Or Graph Model for Visibility Flu... tracking humans interacting subjects environme... 1 0 0 0 0 0
20807 Exact Affine Counter Automata introduce affine generalization counter automa... 1 0 0 0 0 0
20808 Preorder characterizations of lower separation... paper characterize several lower separation ax... 0 0 1 0 0 0
20809 Convergence of row sequences of simultaneous P... consider row sequences vector valued padfaber ... 0 0 1 0 0 0
20810 A Deep Convolutional Neural Network for Backgr... work present novel background subtraction syst... 1 0 0 0 0 0
20811 A second main theorem for holomorphic curve in... paper establish second main theorem holomorphi... 0 0 1 0 0 0
20812 Partially hyperbolic diffeomorphisms with one-... prove partially hyperbolic diffeomorphism one ... 0 0 1 0 0 0
20813 Audio-Visual Speech Enhancement based on Multi... speech enhancement se aims reduce noise speech... 1 0 0 1 0 0
20814 Finding structure in the dark: coupled dark en... reexamine interactions dark sectors cosmology ... 0 1 0 0 0 0
20815 Semantic Autoencoder for Zero-Shot Learning existing zeroshot learning zsl models typicall... 1 0 0 0 0 0
20816 An Information-Theoretic Optimality Principle ... methodologically address problem qvalue overes... 1 0 0 1 0 0
20817 Noise-synchronizability of opinion dynamics analysis noiseinduced synchronization opinion ... 1 0 0 0 0 0
20818 Conformer-selection by matter-wave interference establish matterwave interference nearresonant... 0 1 0 0 0 0
20819 Building a Neural Machine Translation System U... recent works shown synthetic parallel data aut... 1 0 0 0 0 0
20820 Learning to Predict Indoor Illumination from a... propose automatic method infer high dynamic ra... 1 0 0 1 0 0
20821 $H^\infty$-calculus for semigroup generators o... prove negative infinitesimal generator l semig... 0 0 1 0 0 0
20822 A Bayesian Game without epsilon equilibria present three player bayesian game epsilon equ... 1 0 1 0 0 0
20823 Towards Robust Interpretability with Self-Expl... recent work interpretability complex machine l... 0 0 0 1 0 0
20824 Deep Learning Scaling is Predictable, Empirically deep learning dl creates impactful advances fo... 1 0 0 1 0 0
20825 Coupled Self-Organized Hydrodynamics and Stoke... derive macroscopic dynamics selfpropelled part... 0 1 1 0 0 0
20826 Tunable Spin-Orbit Torques in Cu-Ta Binary All... spin hall effect found strong heavy transition... 0 1 0 0 0 0
20827 On Properties of Nests: Some Answers and Quest... considering nests given space explore orderthe... 0 0 1 0 0 0
20828 Differential Characters of Drinfeld Modules an... introduce differential characters drinfeld mod... 0 0 1 0 0 0
20829 Strong submeasures and several applications strong submeasure compact metric space x subli... 0 0 1 0 0 0
20830 Understanding Career Progression in Baseball T... professional baseball players increasingly gua... 1 0 0 1 0 0
20831 Testing the validity of the local and global G... deriving master equation multipartite weaklyin... 0 1 0 0 0 0
20832 Unsupervised Contact Learning for Humanoid Est... work presents method contact state estimation ... 1 0 0 0 0 0
20833 Learning to Sequence Robot Behaviors for Visua... recent literature robotics community focused l... 1 0 0 0 0 0
20834 Evaluation complexity bounds for smooth constr... evaluation complexity convexly constrained opt... 1 0 1 0 0 0
20835 One level density of low-lying zeros of quadra... paper prove one level density results lowlying... 0 0 1 0 0 0
20836 An Online Convex Optimization Approach to Dyna... existing approaches online convex optimization... 1 0 1 1 0 0
20837 Learning causal Bayes networks using intervent... causal discovery empirical data fundamental pr... 1 0 0 1 0 0
20838 The Fredholm alternative for the $p$-Laplacian... investigate fredholm alternative plaplacian ex... 0 0 1 0 0 0
20839 Thermodynamic Stabilization of Precipitates th... precipitation hardening relies high density in... 0 1 0 0 0 0
20840 Wavelength Does Not Equal Pressure: Vertical C... multiband phase variations principle allow us ... 0 1 0 0 0 0
20841 Supervised Learning of Labeled Pointcloud Diff... introduce new algorithm called cder supervised... 1 0 0 1 0 0
20842 Design Considerations for Proposed Fermilab In... integrable optics innovation particle accelera... 0 1 0 0 0 0
20843 Consistent Estimation in General Sublinear Pre... propose empirical estimator preferential attac... 0 0 1 1 0 0
20844 Learned Watershed: End-to-End Learning of Seed... learned boundary maps known outperform hand cr... 1 0 0 0 0 0
20845 MAGIC Contributions to the 35th International ... magic major atmospheric gamma imaging cherenko... 0 1 0 0 0 0
20846 Efficient Hidden Vector Encryptions and Its Ap... predicate encryption new paradigm public key e... 1 0 0 0 0 0
20847 The Galaxy Clustering Crisis in Abundance Matc... galaxy clustering small scales significantly u... 0 1 0 0 0 0
20848 Supplying Dark Energy from Scalar Field Dark M... consider hypothesis dark matter dark energy co... 0 1 0 0 0 0
20849 GHz-Band Integrated Magnetic Inductors demand mobile electronics continue shrink size... 0 1 0 0 0 0
20850 Acylindrical actions on projection complexes simplify construction projection complexes due... 0 0 1 0 0 0
20851 Introducing Geometric Algebra to Geometric Com... designing software systems geometric computing... 1 0 0 0 0 0
20852 Recovering Nonuniform Planted Partitions via I... planted partition problem n vertices random gr... 1 0 0 0 0 0
20853 Data-driven Analytics for Business Architectur... business architecture ba plays significant rol... 0 0 0 1 0 0
20854 Beyond Sparsity: Tree Regularization of Deep M... lack interpretability remains key barrier adop... 1 0 0 1 0 0
20855 Phase-type distributions in population genetics probability modelling dna sequence evolution w... 0 0 0 1 1 0
20856 Robust Wald-type test in GLM with random desig... consider problem robust inference important ge... 0 0 0 1 0 0
20857 Locally Smoothed Neural Networks convolutional neural networks cnn locally conn... 1 0 0 1 0 0
20858 Asymptotic properties of a componentwise ARH(1... paper presents new results prediction linear p... 0 0 1 1 0 0
20859 The Effect of Population Control Policies on S... population control policies proposed places em... 1 1 0 0 0 0
20860 Optimizing Beam Transport in Rapidly Compressi... neutralized drift compression experimentii ndc... 0 1 0 0 0 0
20861 Learn from Your Neighbor: Learning Multi-modal... many structured prediction problems particular... 0 0 0 1 0 0
20862 Direct and indirect seismic inversion: interpr... quantitative methods familiar geophysicists di... 0 1 0 0 0 0
20863 Kan's combinatorial spectra and their sheaves ... define right cartaneilenberg structure categor... 0 0 1 0 0 0
20864 Adiabatic Quantum Computing for Binary Clustering quantum computing machine learning attracts in... 0 0 0 1 0 0
20865 Similarity Search Over Graphs Using Localized ... paper provides new similarity detection algori... 1 0 0 0 0 0
20866 Reminiscences of Julian Schwinger: Late Harvar... reminiscences interactions julian schwinger be... 0 1 0 0 0 0
20867 Site-resolved imaging of a bosonic Mott insula... demonstrate siteresolved imaging strongly corr... 0 1 0 0 0 0
20868 A unified continuum and variational multiscale... develop unified continuum modeling framework v... 0 1 0 0 0 0
20869 Time Assignment System and Its Performance abo... fast timing capability xray observation astrop... 0 1 0 0 0 0
20870 Common fixed points via $λ$-sequences in $G$-m... article use lambdasequences derive common fixe... 0 0 1 0 0 0
20871 Bidirectional Nested Weighted Automata nested weighted automata nwa present robust co... 1 0 0 0 0 0
20872 Uniform Shapiro-Lopatinski conditions and boun... study regularity solutions second order bounda... 0 0 1 0 0 0
20873 A Fourier-Chebyshev Spectral Method for Cavita... fourierchebyshev spectral method proposed pape... 0 0 1 0 0 0
20874 Learning Criticality in an Embodied Boltzmann ... many biological cognitive systems operate deep... 1 1 0 0 0 0
20875 A contemporary look at Hermann Hankel's 1861 p... present paper companion paper villone rampf ti... 0 1 1 0 0 0
20876 A Dynamic Edge Exchangeable Model for Sparse T... propose dynamic edge exchangeable network mode... 0 0 0 1 0 0
20877 Current-mode Memristor Crossbars for Neuromemr... motivated advantages currentmode design brief ... 1 0 0 1 0 0
20878 Incomplete Gauss sums modulo primes obtain new bound incomplete gauss sums modulo ... 0 0 1 0 0 0
20879 FAST Adaptive Smoothing and Thresholding for I... functional magnetic resonance imaging noninvas... 0 0 1 1 0 0
20880 Improper multiferroicity and colossal dielectr... layered cuprate bicuo investigated using magne... 0 1 0 0 0 0
20881 Suppression of plasma echoes and Landau dampin... paper study landau damping weakly collisional ... 0 0 1 0 0 0
20882 Deep Learning for Semantic Segmentation on Min... deep learning revolutionised many fields still... 1 0 0 1 0 0
20883 Overpartition $M2$-rank differences, class num... prove generating function overpartition mrank ... 0 0 1 0 0 0
20884 Communication-Efficient and Decentralized Mult... study decentralized machine learning scenario ... 1 0 0 1 0 0
20885 On the well-posedness of SPDEs with singular d... prove existence uniqueness strong solutions cl... 0 0 1 0 0 0
20886 Trace norm regularization and faster inference... propose evaluate new techniques compressing sp... 1 0 0 1 0 0
20887 Scalable and Robust Sparse Subspace Clustering... sparse subspace clustering ssc one current sta... 0 0 0 1 0 0
20888 Deep Health Care Text Classification health related social media mining valuable ap... 1 0 0 0 0 0
20889 Study of cost functionals for ptychographic ph... recently efforts made improve ptychography pha... 1 1 0 0 0 0
20890 Predicting Native Language from Gaze fundamental question language learning concern... 1 0 0 0 0 0
20891 A form of Schwarz's lemma and a bound for the ... present form schwarzs lemma holomorphic maps c... 0 0 1 0 0 0
20892 The COM-negative binomial distribution: modeli... paper focus comtype negative binomial distribu... 0 0 1 1 0 0
20893 Efficient Contextual Bandits in Non-stationary... contextual bandit algorithms minimize regret b... 1 0 0 1 0 0
20894 Search Engine Drives the Evolution of Social N... search engine tightly coupled social networks ... 1 1 0 0 0 0
20895 End-to-End Learning of Semantic Grasping consider task semantic robotic grasping robot ... 1 0 0 1 0 0
20896 Von Neumann Regular Cellular Automata group g set cellular automaton ca transformati... 1 0 1 0 0 0
20897 A Distance Between Filtered Spaces Via Tripods present simplified treatment stability filtrat... 1 0 1 0 0 0
20898 Robust Shape Estimation for 3D Deformable Obje... existing shape estimation methods deformable o... 1 0 0 0 0 0
20899 Beyond Winning and Losing: Modeling Human Moti... recent years reinforcement learning rl methods... 0 0 0 1 0 0
20900 Genetic Algorithms for Mentor-Assisted Evaluat... paper demonstrate genetic algorithms used reve... 1 0 0 1 0 0
20901 Universal Constraints on the Location of Extre... derive lower bound location global extrema eig... 0 0 1 0 0 0
20902 InScript: Narrative texts annotated with scrip... paper presents inscript corpus narrative texts... 1 0 0 0 0 0
20903 Semimetallic and charge-ordered $α$-(BEDT-TTF)... alphabedtttfi prominent example charge orderin... 0 1 0 0 0 0
20904 Robust Photometric Stereo Using Learned Image ... photometric stereo method estimating normal ve... 0 0 0 1 0 0
20905 Toward Low-Flying Autonomous MAV Trail Navigat... present micro aerial vehicle mav system built ... 1 0 0 0 0 0
20906 Origin of Charge Separation at Organic Photovo... high efficiency charge generation within organ... 0 1 0 0 0 0
20907 Spectral Decimation for Families of Self-Simil... construct oneparameter family laplacians sierp... 0 0 1 0 0 0
20908 Identification of multi-object dynamical syste... learning model parameters multiobject dynamica... 0 0 1 1 0 0
20909 Elliptic curves maximal over extensions of fin... given elliptic curve e finite field mathbbfq s... 0 0 1 0 0 0
20910 CURE: Curvature Regularization For Missing Dat... missing data recovery important yet challengin... 1 0 0 0 0 0
20911 Nonlinear parametric excitation effect induces... microscopic artificial swimmers recently becom... 0 1 0 0 0 0
20912 $L^p$ Mapping Properties for the Cauchy-Rieman... show bounded lipschitz pseudoconvex domains ad... 0 0 1 0 0 0
20913 Fast dose optimization for rotating shield bra... purpose provide fast computational method base... 0 1 1 0 0 0
20914 3D Modeling of Electric Fields in the LUX Dete... work details development threedimensional elec... 0 1 0 0 0 0
20915 Optimal Communication Strategies in Networked ... paper studies optimal communication coordinati... 1 0 0 0 0 0
20916 First- and Second-Order Models of Recursive Ar... study quadruple interrelated subexponential su... 1 0 0 0 0 0
20917 Land Cover Classification via Multi-temporal S... nowadays modern earth observation programs pro... 1 0 0 0 0 0
20918 Disentangling by Factorising define address problem unsupervised learning d... 0 0 0 1 0 0
20919 Symmetries and synchronization in multilayer r... light recently proposed scenario asymmetryindu... 0 1 0 0 0 0
20920 Application of Decision Rules for Handling Cla... part autonomous car driving systems semantic s... 1 0 0 1 0 0
20921 Muchnik degrees and cardinal characteristics provide pair dual results stating coincidence ... 0 0 1 0 0 0
20922 Existence of solutions for a semirelativistic ... prove existence solution semirelativistic hart... 0 0 1 0 0 0
20923 Lattice Operations on Terms over Similar Signa... unification generalization operations two term... 1 0 0 0 0 0
20924 Towards Physically Safe Reinforcement Learning... paper addresses question previously available ... 1 0 0 1 0 0
20925 Complex Valued Risk Diversification risk diversification one dominant concerns por... 0 0 0 0 0 1
20926 An Overview on Application of Machine Learning... todays telecommunication networks become sourc... 0 0 0 1 0 0
20927 Study of Minor Actinides Transmutation in PWR ... management longlived radionuclides spent fuel ... 0 1 0 0 0 0
20928 Undesired parking spaces and contractible piec... two natural simplicial complexes associated no... 0 0 1 0 0 0
20929 Breaking the Nonsmooth Barrier: A Scalable Par... due simplicity excellent performance parallel ... 1 0 1 1 0 0
20930 Sparsity-promoting and edge-preserving maximum... consider inverse problem recovering unknown fu... 0 0 1 1 0 0
20931 Non-LTE line formation of Fe in late-type star... ability model shapes strengths iron lines sola... 0 1 0 0 0 0
20932 Transmission clusters in the HIV-1 epidemic am... background several studies used phylogenetics ... 0 0 0 1 0 0
20933 Conformal blocks attached to twisted groups aim paper generalize notion conformal blocks s... 0 0 1 0 0 0
20934 Statistical study on propagation characteristi... paper shows statistical analysis khz omega bro... 0 1 0 0 0 0
20935 Thermally induced stresses in boulders on airl... work investigates macroscopic thermomechanical... 0 1 0 0 0 0
20936 Some observations about generalized quantifier... analyze definitions generalized quantifiers im... 0 0 1 0 0 0
20937 Predicting Demographics of High-Resolution Geo... paper consider problem predicting demographics... 1 0 0 1 0 0
20938 Text Compression for Sentiment Analysis via Ev... textual data compressed intelligently without ... 1 0 0 1 0 0
20939 Training large margin host-pathogen protein-pr... detection proteinprotein interactions ppis pla... 1 0 0 1 0 0
20940 A Useful Solution of the Coupon Collector's Pr... coupon collectors problem one mathematical pro... 0 0 1 0 0 0
20941 Accretion driven turbulence in filaments I: No... study accretion driven turbulence different in... 0 1 0 0 0 0
20942 Contextual Outlier Interpretation outlier detection plays essential role many da... 1 0 0 1 0 0
20943 Game Theory for Secure Critical Interdependent... citys critical infrastructure gas water power ... 1 0 0 0 0 0
20944 Implicit Entity Linking in Tweets years twitter become one largest communication... 1 0 0 0 0 0
20945 Non-cocompact Group Actions and $π_1$-Semistab... finitely presented ended group g semistable fu... 0 0 1 0 0 0
20946 Robust Distributed Control of DC Microgrids wi... paper addresses problem output voltage regulat... 1 0 1 0 0 0
20947 Quantum Lower Bounds for Tripartite Versions o... paper study quantum query complexity following... 1 0 0 0 0 0
20948 A Parallel Direct Cut Algorithm for High-Order... overset methods commonly employed enable effec... 0 1 0 0 0 0
20949 A data assimilation algorithm: the paradigm of... paper survey various implementations new data ... 0 1 1 0 0 0
20950 Playing a true Parrondo's game with a three st... playing parrondos game qutrit subject paper sh... 1 1 0 0 0 0
20951 Cross-modal Recurrent Models for Weight Object... analyse multimodal timeseries data correspondi... 1 0 0 1 0 0
20952 Spatial Variational Auto-Encoding via Matrix-V... key idea variational autoencoders vaes resembl... 1 0 0 1 0 0
20953 Optimal Ramp Schemes and Related Combinatorial... jackson martin proved strong ideal ramp scheme... 1 0 0 0 0 0
20954 Do Neural Nets Learn Statistical Laws behind N... performance deep learning natural language pro... 1 0 0 0 0 0
20955 Super-speeds with Zero-RAM: Next Generation La... article presents novel breakthrough general pu... 1 0 0 0 0 0
20956 Recoverable Energy of Dissipative Electromagne... ambiguities definition stored energy within di... 0 1 0 0 0 0
20957 Elliptic Hall algebra on $\mathbb{F}_1$ construct hall algebra elliptic curve mathbbf ... 0 0 1 0 0 0
20958 Approximate Bayesian inference with queueing n... queueing networks systems theoretical interest... 1 0 0 1 0 0
20959 Universal features of price formation in finan... using largescale deep learning approach applie... 0 0 0 1 0 1
20960 A New Tracking Algorithm for Multiple Colloida... paper propose new algorithm based radial symme... 0 1 0 0 0 0
20961 Critical Percolation Without Fine Tuning on th... present numerical evidence twodimensional surf... 0 1 0 0 0 0
20962 Low-luminosity stellar wind accretion onto neu... features applications quasispherical settling ... 0 1 0 0 0 0
20963 Faithful Inversion of Generative Models for Ef... inference amortization methods share informati... 1 0 0 1 0 0
20964 A social Network Analysis of the Operations Re... study us operations researchindustrialsystems ... 1 0 0 1 0 0
20965 One-sample aggregate data meta-analysis of med... aggregate data metaanalysis statistical method... 0 0 0 1 0 0
20966 QuickCast: Fast and Efficient Inter-Datacenter... large interdatacenter transfers crucial cloud ... 1 0 0 0 0 0
20967 Contemporary machine learning: a guide for pra... machine learning finding increasingly broad ap... 1 1 0 0 0 0
20968 Uniform diamond coatings on WC-Co hard alloy c... polycrystalline diamond coatings grown cemente... 0 1 0 0 0 0
20969 Analysing Soccer Games with Clustering and Con... present new approach identifying situations be... 1 0 0 0 0 0
20970 On the Efficient Simulation of the Left-Tail o... sum lognormal variates encountered many challe... 0 0 1 1 0 0
20971 Why optional stopping is a problem for Bayesians recently optional stopping subject debate baye... 0 0 1 1 0 0

Saving Cleaned Data

In [16]:
data.to_csv("cleaned_abstract_data.csv", index=False)
In [17]:
data.columns
Out[17]:
Index(['TITLE', 'ABSTRACT', 'Computer Science', 'Physics', 'Mathematics',
       'Statistics', 'Quantitative Biology', 'Quantitative Finance'],
      dtype='object')

Splitting into Training and Testing

In [18]:
data = pd.read_csv('cleaned_abstract_data.csv')
X = data['ABSTRACT']
y = data.drop(columns=['TITLE', 'ABSTRACT'])

X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
In [19]:
print(len(X_train))
print(len(X_test))
16777
4195
In [20]:
X_train.head()
Out[20]:
16466    investigate hybrid quantumclassical solution m...
4021     paper first prove diophantine system fzfxfyfuf...
17248    recent years many research works propose embed...
17239    singleparticle spectral function measures dens...
2966     investigate focusing coupled ptsymmetric nonlo...
Name: ABSTRACT, dtype: object
In [21]:
X_test.head()
Out[21]:
20257    layer normalization recently introduced techni...
482      susceptibility propagation constructed combini...
4189     propose new model formalizing reward collectio...
9838     study covariances positive definite functions ...
16591    modularity maximization using greedy algorithm...
Name: ABSTRACT, dtype: object
In [22]:
y_train.head()
Out[22]:
Computer Science Physics Mathematics Statistics Quantitative Biology Quantitative Finance
16466 0 0 0 0 0 1
4021 0 0 1 0 0 0
17248 1 0 0 0 0 0
17239 0 1 0 0 0 0
2966 0 1 0 0 0 0
In [23]:
y_test.head()
Out[23]:
Computer Science Physics Mathematics Statistics Quantitative Biology Quantitative Finance
20257 1 0 0 0 0 0
482 0 0 1 1 0 0
4189 1 0 1 0 0 0
9838 0 1 0 1 0 0
16591 1 0 0 0 0 0
In [24]:
# Check the shapes to ensure correct splits
print("X_train shape:", X_train.shape)
print("X_test shape:", X_test.shape)
print("y_train shape:", y_train.shape)
print("y_test shape:", y_test.shape)
X_train shape: (16777,)
X_test shape: (4195,)
y_train shape: (16777, 6)
y_test shape: (4195, 6)

Feature Extraction

In [25]:
# Initialize the TfidfVectorizer
vectorizer = TfidfVectorizer(max_features=1000)
In [26]:
# Fit the vectorizer on the training data
vectorizer.fit(X_train)
Out[26]:
TfidfVectorizer(max_features=1000)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
TfidfVectorizer(max_features=1000)
In [27]:
# Transform the training data
X_train_tfidf = vectorizer.transform(X_train)
In [28]:
# Convert the TF-IDF sparse matrix to a DataFrame
X_train_tfidf_df = pd.DataFrame(X_train_tfidf.toarray(), columns=vectorizer.get_feature_names_out())

print("\nTF-IDF Features DataFrame:")
print(X_train_tfidf_df.head())
TF-IDF Features DataFrame:
   ability  able  access  according  account  accuracy  accurate  achieve  \
0      0.0   0.0     0.0        0.0      0.0       0.0       0.0      0.0   
1      0.0   0.0     0.0        0.0      0.0       0.0       0.0      0.0   
2      0.0   0.0     0.0        0.0      0.0       0.0       0.0      0.0   
3      0.0   0.0     0.0        0.0      0.0       0.0       0.0      0.0   
4      0.0   0.0     0.0        0.0      0.0       0.0       0.0      0.0   

   achieved  achieves  across  action  actions  active  activity  adaptive  \
0       0.0       0.0     0.0     0.0      0.0     0.0       0.0       0.0   
1       0.0       0.0     0.0     0.0      0.0     0.0       0.0       0.0   
2       0.0       0.0     0.0     0.0      0.0     0.0       0.0       0.0   
3       0.0       0.0     0.0     0.0      0.0     0.0       0.0       0.0   
4       0.0       0.0     0.0     0.0      0.0     0.0       0.0       0.0   

   addition  additional  address  adversarial  agent  agents  agreement  aim  \
0    0.0000         0.0      0.0          0.0    0.0     0.0        0.0  0.0   
1    0.0000         0.0      0.0          0.0    0.0     0.0        0.0  0.0   
2    0.0000         0.0      0.0          0.0    0.0     0.0        0.0  0.0   
3    0.0000         0.0      0.0          0.0    0.0     0.0        0.0  0.0   
4    0.1582         0.0      0.0          0.0    0.0     0.0        0.0  0.0   

    al  algebra  algebraic  algebras  algorithm  algorithms  allow  allowing  \
0  0.0      0.0        0.0       0.0   0.087962         0.0    0.0       0.0   
1  0.0      0.0        0.0       0.0   0.000000         0.0    0.0       0.0   
2  0.0      0.0        0.0       0.0   0.000000         0.0    0.0       0.0   
3  0.0      0.0        0.0       0.0   0.000000         0.0    0.0       0.0   
4  0.0      0.0        0.0       0.0   0.000000         0.0    0.0       0.0   

   allows  almost  along      also  alternative  although  among  amount  \
0     0.0     0.0    0.0  0.067096          0.0       0.0    0.0     0.0   
1     0.0     0.0    0.0  0.000000          0.0       0.0    0.0     0.0   
2     0.0     0.0    0.0  0.064872          0.0       0.0    0.0     0.0   
3     0.0     0.0    0.0  0.000000          0.0       0.0    0.0     0.0   
4     0.0     0.0    0.0  0.180341          0.0       0.0    0.0     0.0   

   analysis  analytical  analyze  another  application  applications  \
0       0.0         0.0      0.0      0.0     0.000000      0.000000   
1       0.0         0.0      0.0      0.0     0.000000      0.000000   
2       0.0         0.0      0.0      0.0     0.268125      0.047043   
3       0.0         0.0      0.0      0.0     0.000000      0.000000   
4       0.0         0.0      0.0      0.0     0.000000      0.000000   

    applied  apply  applying  approach  approaches  appropriate  approximate  \
0  0.000000    0.0       0.0  0.079431         0.0          0.0          0.0   
1  0.000000    0.0       0.0  0.000000         0.0          0.0          0.0   
2  0.053429    0.0       0.0  0.000000         0.0          0.0          0.0   
3  0.149180    0.0       0.0  0.000000         0.0          0.0          0.0   
4  0.000000    0.0       0.0  0.106749         0.0          0.0          0.0   

   approximation  arbitrary  architecture  architectures  area  around  \
0            0.0        0.0           0.0            0.0   0.0     0.0   
1            0.0        0.0           0.0            0.0   0.0     0.0   
2            0.0        0.0           0.0            0.0   0.0     0.0   
3            0.0        0.0           0.0            0.0   0.0     0.0   
4            0.0        0.0           0.0            0.0   0.0     0.0   

   article  artificial  aspects  associated  assumption  assumptions  \
0      0.0         0.0      0.0         0.0         0.0          0.0   
1      0.0         0.0      0.0         0.0         0.0          0.0   
2      0.0         0.0      0.0         0.0         0.0          0.0   
3      0.0         0.0      0.0         0.0         0.0          0.0   
4      0.0         0.0      0.0         0.0         0.0          0.0   

   asymptotic    atomic  atoms  attacks  attention  automatically  available  \
0         0.0  0.000000    0.0      0.0        0.0            0.0        0.0   
1         0.0  0.000000    0.0      0.0        0.0            0.0        0.0   
2         0.0  0.000000    0.0      0.0        0.0            0.0        0.0   
3         0.0  0.103246    0.0      0.0        0.0            0.0        0.0   
4         0.0  0.000000    0.0      0.0        0.0            0.0        0.0   

    average  background  band     based  basic  basis  bayesian  beam  become  \
0  0.128934         0.0   0.0  0.000000    0.0    0.0       0.0   0.0     0.0   
1  0.000000         0.0   0.0  0.000000    0.0    0.0       0.0   0.0     0.0   
2  0.000000         0.0   0.0  0.035596    0.0    0.0       0.0   0.0     0.0   
3  0.000000         0.0   0.0  0.000000    0.0    0.0       0.0   0.0     0.0   
4  0.000000         0.0   0.0  0.000000    0.0    0.0       0.0   0.0     0.0   

   becomes  behavior  benchmark    best  better  beyond  bias    binary  \
0      0.0       0.0   0.138991  0.1209     0.0     0.0   0.0  0.138086   
1      0.0       0.0   0.000000  0.0000     0.0     0.0   0.0  0.000000   
2      0.0       0.0   0.000000  0.0000     0.0     0.0   0.0  0.000000   
3      0.0       0.0   0.000000  0.0000     0.0     0.0   0.0  0.000000   
4      0.0       0.0   0.000000  0.0000     0.0     0.0   0.0  0.000000   

      bound  boundary  bounded  bounds  brain  build  building  calculations  \
0  0.000000       0.0      0.0     0.0    0.0    0.0       0.0           0.0   
1  0.000000       0.0      0.0     0.0    0.0    0.0       0.0           0.0   
2  0.000000       0.0      0.0     0.0    0.0    0.0       0.0           0.0   
3  0.000000       0.0      0.0     0.0    0.0    0.0       0.0           0.0   
4  0.328109       0.0      0.0     0.0    0.0    0.0       0.0           0.0   

   called    cannot   capture  carlo  case  cases  cell  cells   central  \
0     0.0  0.000000  0.000000    0.0   0.0    0.0   0.0    0.0  0.000000   
1     0.0  0.000000  0.000000    0.0   0.0    0.0   0.0    0.0  0.000000   
2     0.0  0.000000  0.068228    0.0   0.0    0.0   0.0    0.0  0.000000   
3     0.0  0.090792  0.000000    0.0   0.0    0.0   0.0    0.0  0.094063   
4     0.0  0.000000  0.000000    0.0   0.0    0.0   0.0    0.0  0.000000   

   certain  chain  challenge  challenges  challenging  change  changes  \
0      0.0    0.0        0.0         0.0          0.0     0.0      0.0   
1      0.0    0.0        0.0         0.0          0.0     0.0      0.0   
2      0.0    0.0        0.0         0.0          0.0     0.0      0.0   
3      0.0    0.0        0.0         0.0          0.0     0.0      0.0   
4      0.0    0.0        0.0         0.0          0.0     0.0      0.0   

   channel  characteristic  characteristics  characterization  characterize  \
0      0.0             0.0              0.0               0.0      0.000000   
1      0.0             0.0              0.0               0.0      0.000000   
2      0.0             0.0              0.0               0.0      0.000000   
3      0.0             0.0              0.0               0.0      0.000000   
4      0.0             0.0              0.0               0.0      0.190797   

   characterized  charge  choice  class  classes  classical  classification  \
0            0.0     0.0     0.0    0.0      0.0   0.118688             0.0   
1            0.0     0.0     0.0    0.0      0.0   0.000000             0.0   
2            0.0     0.0     0.0    0.0      0.0   0.000000             0.0   
3            0.0     0.0     0.0    0.0      0.0   0.000000             0.0   
4            0.0     0.0     0.0    0.0      0.0   0.000000             0.0   

   classifier  close  closed  cloud  cluster  clustering  clusters  cnn  code  \
0         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   
1         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   
2         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   
3         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   
4         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   

   codes  coefficients  combination  combined  combining  common  \
0    0.0           0.0          0.0       0.0        0.0     0.0   
1    0.0           0.0          0.0       0.0        0.0     0.0   
2    0.0           0.0          0.0       0.0        0.0     0.0   
3    0.0           0.0          0.0       0.0        0.0     0.0   
4    0.0           0.0          0.0       0.0        0.0     0.0   

   communication  community  compact  compare  compared  comparison  complete  \
0            0.0   0.000000      0.0      0.0       0.0         0.0       0.0   
1            0.0   0.000000      0.0      0.0       0.0         0.0       0.0   
2            0.0   0.070239      0.0      0.0       0.0         0.0       0.0   
3            0.0   0.000000      0.0      0.0       0.0         0.0       0.0   
4            0.0   0.000000      0.0      0.0       0.0         0.0       0.0   

   complex  complexity  component  components  computation  computational  \
0      0.0         0.0        0.0         0.0     0.131184            0.0   
1      0.0         0.0        0.0         0.0     0.000000            0.0   
2      0.0         0.0        0.0         0.0     0.000000            0.0   
3      0.0         0.0        0.0         0.0     0.000000            0.0   
4      0.0         0.0        0.0         0.0     0.000000            0.0   

   computationally   compute  computed  computer  computing  concept  \
0              0.0  0.000000   0.00000       0.0        0.0      0.0   
1              0.0  0.000000   0.00000       0.0        0.0      0.0   
2              0.0  0.062863   0.07119       0.0        0.0      0.0   
3              0.0  0.000000   0.00000       0.0        0.0      0.0   
4              0.0  0.000000   0.00000       0.0        0.0      0.0   

   condition  conditional  conditions  confidence  conjecture  connected  \
0        0.0          0.0    0.000000         0.0         0.0        0.0   
1        0.0          0.0    0.000000         0.0         0.0        0.0   
2        0.0          0.0    0.000000         0.0         0.0        0.0   
3        0.0          0.0    0.070703         0.0         0.0        0.0   
4        0.0          0.0    0.000000         0.0         0.0        0.0   

   connection  consider  considered  considering  consistent  consists  \
0         0.0       0.0         0.0          0.0         0.0       0.0   
1         0.0       0.0         0.0          0.0         0.0       0.0   
2         0.0       0.0         0.0          0.0         0.0       0.0   
3         0.0       0.0         0.0          0.0         0.0       0.0   
4         0.0       0.0         0.0          0.0         0.0       0.0   

   constant  constraint  constraints  construct  constructed  construction  \
0       0.0         0.0          0.0        0.0          0.0           0.0   
1       0.0         0.0          0.0        0.0          0.0           0.0   
2       0.0         0.0          0.0        0.0          0.0           0.0   
3       0.0         0.0          0.0        0.0          0.0           0.0   
4       0.0         0.0          0.0        0.0          0.0           0.0   

   contains  content  context  continuous  contrast  contribution  control  \
0       0.0      0.0      0.0         0.0  0.000000           0.0      0.0   
1       0.0      0.0      0.0         0.0  0.000000           0.0      0.0   
2       0.0      0.0      0.0         0.0  0.000000           0.0      0.0   
3       0.0      0.0      0.0         0.0  0.088299           0.0      0.0   
4       0.0      0.0      0.0         0.0  0.000000           0.0      0.0   

   conventional  convergence  convex  convolutional  core  correlation  \
0           0.0          0.0     0.0            0.0   0.0          0.0   
1           0.0          0.0     0.0            0.0   0.0          0.0   
2           0.0          0.0     0.0            0.0   0.0          0.0   
3           0.0          0.0     0.0            0.0   0.0          0.0   
4           0.0          0.0     0.0            0.0   0.0          0.0   

   corresponding  cost  could   coupled  coupling  covariance  critical  \
0       0.115216   0.0    0.0  0.000000       0.0         0.0       0.0   
1       0.000000   0.0    0.0  0.000000       0.0         0.0       0.0   
2       0.000000   0.0    0.0  0.000000       0.0         0.0       0.0   
3       0.000000   0.0    0.0  0.000000       0.0         0.0       0.0   
4       0.000000   0.0    0.0  0.192905       0.0         0.0       0.0   

   crucial  current  curvature  curves      dark      data  dataset  datasets  \
0      0.0      0.0        0.0     0.0  0.000000  0.070084      0.0  0.000000   
1      0.0      0.0        0.0     0.0  0.000000  0.000000      0.0  0.000000   
2      0.0      0.0        0.0     0.0  0.000000  0.033881      0.0  0.054556   
3      0.0      0.0        0.0     0.0  0.000000  0.000000      0.0  0.000000   
4      0.0      0.0        0.0     0.0  0.210187  0.000000      0.0  0.000000   

   decision  decomposition  deep  define  defined  degree  demonstrate  \
0       0.0            0.0   0.0     0.0      0.0     0.0     0.000000   
1       0.0            0.0   0.0     0.0      0.0     0.0     0.000000   
2       0.0            0.0   0.0     0.0      0.0     0.0     0.000000   
3       0.0            0.0   0.0     0.0      0.0     0.0     0.060767   
4       0.0            0.0   0.0     0.0      0.0     0.0     0.000000   

   demonstrated  density  dependence  depends  depth  derive  derived  \
0      0.000000  0.00000         0.0      0.0    0.0     0.0      0.0   
1      0.000000  0.00000         0.0      0.0    0.0     0.0      0.0   
2      0.065003  0.00000         0.0      0.0    0.0     0.0      0.0   
3      0.000000  0.15064         0.0      0.0    0.0     0.0      0.0   
4      0.000000  0.00000         0.0      0.0    0.0     0.0      0.0   

   descent  describe  described  description  design  designed  despite  \
0      0.0       0.0        0.0          0.0     0.0       0.0      0.0   
1      0.0       0.0        0.0          0.0     0.0       0.0      0.0   
2      0.0       0.0        0.0          0.0     0.0       0.0      0.0   
3      0.0       0.0        0.0          0.0     0.0       0.0      0.0   
4      0.0       0.0        0.0          0.0     0.0       0.0      0.0   

   detailed  detect  detection  determine  determined  deterministic  develop  \
0       0.0     0.0   0.000000        0.0         0.0            0.0      0.0   
1       0.0     0.0   0.000000        0.0         0.0            0.0      0.0   
2       0.0     0.0   0.057581        0.0         0.0            0.0      0.0   
3       0.0     0.0   0.000000        0.0         0.0            0.0      0.0   
4       0.0     0.0   0.000000        0.0         0.0            0.0      0.0   

   developed  development  devices  difference  differences  different  \
0        0.0          0.0      0.0         0.0          0.0   0.000000   
1        0.0          0.0      0.0         0.0          0.0   0.000000   
2        0.0          0.0      0.0         0.0          0.0   0.039363   
3        0.0          0.0      0.0         0.0          0.0   0.000000   
4        0.0          0.0      0.0         0.0          0.0   0.000000   

   differential  difficult  diffusion  dimension  dimensional  dimensions  \
0           0.0        0.0   0.000000        0.0          0.0         0.0   
1           0.0        0.0   0.000000        0.0          0.0         0.0   
2           0.0        0.0   0.073084        0.0          0.0         0.0   
3           0.0        0.0   0.000000        0.0          0.0         0.0   
4           0.0        0.0   0.000000        0.0          0.0         0.0   

     direct  direction  directly  discrete  discuss  discussed  disk  \
0  0.000000        0.0       0.0       0.0      0.0        0.0   0.0   
1  0.000000        0.0       0.0       0.0      0.0        0.0   0.0   
2  0.000000        0.0       0.0       0.0      0.0        0.0   0.0   
3  0.088813        0.0       0.0       0.0      0.0        0.0   0.0   
4  0.000000        0.0       0.0       0.0      0.0        0.0   0.0   

   distance  distinct  distributed  distribution  distributions  domain  \
0       0.0       0.0          0.0           0.0            0.0     0.0   
1       0.0       0.0          0.0           0.0            0.0     0.0   
2       0.0       0.0          0.0           0.0            0.0     0.0   
3       0.0       0.0          0.0           0.0            0.0     0.0   
4       0.0       0.0          0.0           0.0            0.0     0.0   

   domains  driven       due  dynamic  dynamical  dynamics  edge  edges  \
0      0.0     0.0  0.000000      0.0        0.0  0.000000   0.0    0.0   
1      0.0     0.0  0.000000      0.0        0.0  0.000000   0.0    0.0   
2      0.0     0.0  0.048497      0.0        0.0  0.000000   0.0    0.0   
3      0.0     0.0  0.000000      0.0        0.0  0.073793   0.0    0.0   
4      0.0     0.0  0.134821      0.0        0.0  0.000000   0.0    0.0   

   effect  effective  effectively  effectiveness   effects  efficiency  \
0     0.0        0.0     0.000000            0.0  0.000000         0.0   
1     0.0        0.0     0.000000            0.0  0.000000         0.0   
2     0.0        0.0     0.070564            0.0  0.000000         0.0   
3     0.0        0.0     0.000000            0.0  0.079495         0.0   
4     0.0        0.0     0.000000            0.0  0.000000         0.0   

   efficient  efficiently        eg  either  electron  electronic  elements  \
0        0.0          0.0  0.000000     0.0  0.000000    0.000000       0.0   
1        0.0          0.0  0.000000     0.0  0.000000    0.000000       0.0   
2        0.0          0.0  0.058747     0.0  0.000000    0.000000       0.0   
3        0.0          0.0  0.000000     0.0  0.194233    0.479359       0.0   
4        0.0          0.0  0.000000     0.0  0.000000    0.000000       0.0   

   embedding  emission  empirical  enable  enables  end    energy  entropy  \
0   0.000000       0.0        0.0     0.0      0.0  0.0  0.000000      0.0   
1   0.000000       0.0        0.0     0.0      0.0  0.0  0.000000      0.0   
2   0.517689       0.0        0.0     0.0      0.0  0.0  0.000000      0.0   
3   0.000000       0.0        0.0     0.0      0.0  0.0  0.214292      0.0   
4   0.000000       0.0        0.0     0.0      0.0  0.0  0.142241      0.0   

   environment  environments  equation  equations  equilibrium  equivalent  \
0          0.0           0.0  0.000000        0.0      0.00000         0.0   
1          0.0           0.0  0.000000        0.0      0.00000         0.0   
2          0.0           0.0  0.000000        0.0      0.00000         0.0   
3          0.0           0.0  0.000000        0.0      0.09891         0.0   
4          0.0           0.0  0.159252        0.0      0.00000         0.0   

   error  errors  especially  establish  established  estimate  estimated  \
0    0.0     0.0         0.0        0.0          0.0       0.0        0.0   
1    0.0     0.0         0.0        0.0          0.0       0.0        0.0   
2    0.0     0.0         0.0        0.0          0.0       0.0        0.0   
3    0.0     0.0         0.0        0.0          0.0       0.0        0.0   
4    0.0     0.0         0.0        0.0          0.0       0.0        0.0   

   estimates  estimating  estimation  estimator  estimators   et  evaluate  \
0        0.0         0.0         0.0        0.0         0.0  0.0       0.0   
1        0.0         0.0         0.0        0.0         0.0  0.0       0.0   
2        0.0         0.0         0.0        0.0         0.0  0.0       0.0   
3        0.0         0.0         0.0        0.0         0.0  0.0       0.0   
4        0.0         0.0         0.0        0.0         0.0  0.0       0.0   

   evaluated  evaluation      even  event  events  every  evidence  evolution  \
0        0.0         0.0  0.000000    0.0     0.0    0.0       0.0        0.0   
1        0.0         0.0  0.203558    0.0     0.0    0.0       0.0        0.0   
2        0.0         0.0  0.000000    0.0     0.0    0.0       0.0        0.0   
3        0.0         0.0  0.000000    0.0     0.0    0.0       0.0        0.0   
4        0.0         0.0  0.000000    0.0     0.0    0.0       0.0        0.0   

      exact  example  examples  exhibit  exist  existence  existing  exists  \
0  0.000000      0.0       0.0      0.0    0.0        0.0  0.000000     0.0   
1  0.000000      0.0       0.0      0.0    0.0        0.0  0.000000     0.0   
2  0.000000      0.0       0.0      0.0    0.0        0.0  0.100416     0.0   
3  0.000000      0.0       0.0      0.0    0.0        0.0  0.000000     0.0   
4  0.177417      0.0       0.0      0.0    0.0        0.0  0.000000     0.0   

   expansion  expected  experiment  experimental  experimentally  experiments  \
0        0.0  0.128772         0.0      0.000000             0.0      0.00000   
1        0.0  0.000000         0.0      0.000000             0.0      0.00000   
2        0.0  0.000000         0.0      0.052885             0.0      0.04722   
3        0.0  0.000000         0.0      0.000000             0.0      0.00000   
4        0.0  0.000000         0.0      0.000000             0.0      0.00000   

   explain  explicit  explicitly  explore  exponential  extend  extended  \
0      0.0       0.0         0.0      0.0          0.0     0.0       0.0   
1      0.0       0.0         0.0      0.0          0.0     0.0       0.0   
2      0.0       0.0         0.0      0.0          0.0     0.0       0.0   
3      0.0       0.0         0.0      0.0          0.0     0.0       0.0   
4      0.0       0.0         0.0      0.0          0.0     0.0       0.0   

   extension  extensive  external  fact  factor  factors    family  far  fast  \
0        0.0   0.000000  0.000000   0.0     0.0      0.0  0.000000  0.0   0.0   
1        0.0   0.000000  0.000000   0.0     0.0      0.0  0.000000  0.0   0.0   
2        0.0   0.065818  0.209761   0.0     0.0      0.0  0.000000  0.0   0.0   
3        0.0   0.000000  0.000000   0.0     0.0      0.0  0.000000  0.0   0.0   
4        0.0   0.000000  0.000000   0.0     0.0      0.0  0.180883  0.0   0.0   

     faster   feature  features  feedback  field    fields  finally      find  \
0  0.142571  0.000000       0.0       0.0    0.0  0.000000      0.0  0.000000   
1  0.000000  0.000000       0.0       0.0    0.0  0.000000      0.0  0.000000   
2  0.000000  0.178106       0.0       0.0    0.0  0.000000      0.0  0.000000   
3  0.000000  0.000000       0.0       0.0    0.0  0.166843      0.0  0.000000   
4  0.000000  0.000000       0.0       0.0    0.0  0.000000      0.0  0.129764   

   finding  findings  finite     first  fixed  flow  flows  flux  focus  \
0      0.0       0.0     0.0  0.000000    0.0   0.0    0.0   0.0    0.0   
1      0.0       0.0     0.0  0.164423    0.0   0.0    0.0   0.0    0.0   
2      0.0       0.0     0.0  0.000000    0.0   0.0    0.0   0.0    0.0   
3      0.0       0.0     0.0  0.000000    0.0   0.0    0.0   0.0    0.0   
4      0.0       0.0     0.0  0.000000    0.0   0.0    0.0   0.0    0.0   

   following  form  formation     forms  formula  formulation     found  four  \
0   0.135872   0.0        0.0  0.144174      0.0          0.0  0.224901   0.0   
1   0.000000   0.0        0.0  0.000000      0.0          0.0  0.000000   0.0   
2   0.000000   0.0        0.0  0.000000      0.0          0.0  0.000000   0.0   
3   0.000000   0.0        0.0  0.000000      0.0          0.0  0.000000   0.0   
4   0.000000   0.0        0.0  0.000000      0.0          0.0  0.000000   0.0   

   framework  free  frequency      full  fully  function  functional  \
0   0.000000   0.0        0.0  0.000000    0.0  0.091329         0.0   
1   0.000000   0.0        0.0  0.000000    0.0  0.000000         0.0   
2   0.046593   0.0        0.0  0.000000    0.0  0.044151         0.0   
3   0.000000   0.0        0.0  0.088067    0.0  0.246547         0.0   
4   0.000000   0.0        0.0  0.000000    0.0  0.000000         0.0   

   functions  fundamental  furthermore  future  galaxies  galaxy  game  gap  \
0   0.000000          0.0          0.0     0.0       0.0     0.0   0.0  0.0   
1   0.000000          0.0          0.0     0.0       0.0     0.0   0.0  0.0   
2   0.000000          0.0          0.0     0.0       0.0     0.0   0.0  0.0   
3   0.070529          0.0          0.0     0.0       0.0     0.0   0.0  0.0   
4   0.000000          0.0          0.0     0.0       0.0     0.0   0.0  0.0   

   gas  gaussian  general  generalization  generalized  generally  generate  \
0  0.0       0.0      0.0             0.0          0.0        0.0  0.131478   
1  0.0       0.0      0.0             0.0          0.0        0.0  0.000000   
2  0.0       0.0      0.0             0.0          0.0        0.0  0.000000   
3  0.0       0.0      0.0             0.0          0.0        0.0  0.000000   
4  0.0       0.0      0.0             0.0          0.0        0.0  0.000000   

   generated  generating  generation  generative  generic  geometric  \
0        0.0         0.0         0.0         0.0      0.0        0.0   
1        0.0         0.0         0.0         0.0      0.0        0.0   
2        0.0         0.0         0.0         0.0      0.0        0.0   
3        0.0         0.0         0.0         0.0      0.0        0.0   
4        0.0         0.0         0.0         0.0      0.0        0.0   

   geometry  give  given  gives    global  goal  good  gradient  graph  \
0       0.0   0.0    0.0    0.0  0.000000   0.0   0.0       0.0    0.0   
1       0.0   0.0    0.0    0.0  0.000000   0.0   0.0       0.0    0.0   
2       0.0   0.0    0.0    0.0  0.060019   0.0   0.0       0.0    0.0   
3       0.0   0.0    0.0    0.0  0.000000   0.0   0.0       0.0    0.0   
4       0.0   0.0    0.0    0.0  0.000000   0.0   0.0       0.0    0.0   

   graphs  ground  group  groups  growth  guarantees  hand  help  hence  \
0     0.0     0.0    0.0     0.0     0.0         0.0   0.0   0.0    0.0   
1     0.0     0.0    0.0     0.0     0.0         0.0   0.0   0.0    0.0   
2     0.0     0.0    0.0     0.0     0.0         0.0   0.0   0.0    0.0   
3     0.0     0.0    0.0     0.0     0.0         0.0   0.0   0.0    0.0   
4     0.0     0.0    0.0     0.0     0.0         0.0   0.0   0.0    0.0   

   hidden  hierarchical  high  highdimensional  higher  highly   however  \
0     0.0           0.0   0.0              0.0     0.0     0.0  0.000000   
1     0.0           0.0   0.0              0.0     0.0     0.0  0.000000   
2     0.0           0.0   0.0              0.0     0.0     0.0  0.041961   
3     0.0           0.0   0.0              0.0     0.0     0.0  0.058580   
4     0.0           0.0   0.0              0.0     0.0     0.0  0.000000   

   human    hybrid  hypothesis  identified  identify   ie   ii  illustrate  \
0    0.0  0.152007         0.0         0.0       0.0  0.0  0.0         0.0   
1    0.0  0.000000         0.0         0.0       0.0  0.0  0.0         0.0   
2    0.0  0.000000         0.0         0.0       0.0  0.0  0.0         0.0   
3    0.0  0.000000         0.0         0.0       0.0  0.0  0.0         0.0   
4    0.0  0.000000         0.0         0.0       0.0  0.0  0.0         0.0   

   image  images  imaging  impact  implementation  implemented  importance  \
0    0.0     0.0      0.0     0.0             0.0          0.0         0.0   
1    0.0     0.0      0.0     0.0             0.0          0.0         0.0   
2    0.0     0.0      0.0     0.0             0.0          0.0         0.0   
3    0.0     0.0      0.0     0.0             0.0          0.0         0.0   
4    0.0     0.0      0.0     0.0             0.0          0.0         0.0   

   important  improve  improved  improvement  improves  include  including  \
0        0.0      0.0       0.0          0.0       0.0      0.0   0.000000   
1        0.0      0.0       0.0          0.0       0.0      0.0   0.000000   
2        0.0      0.0       0.0          0.0       0.0      0.0   0.000000   
3        0.0      0.0       0.0          0.0       0.0      0.0   0.000000   
4        0.0      0.0       0.0          0.0       0.0      0.0   0.140602   

   increase  increases  increasing  independent  index  indicate  individual  \
0       0.0        0.0         0.0          0.0    0.0       0.0         0.0   
1       0.0        0.0         0.0          0.0    0.0       0.0         0.0   
2       0.0        0.0         0.0          0.0    0.0       0.0         0.0   
3       0.0        0.0         0.0          0.0    0.0       0.0         0.0   
4       0.0        0.0         0.0          0.0    0.0       0.0         0.0   

   induced  inference  infinite  influence  information  initial  input  \
0      0.0        0.0       0.0        0.0     0.000000      0.0    0.0   
1      0.0        0.0       0.0        0.0     0.000000      0.0    0.0   
2      0.0        0.0       0.0        0.0     0.045354      0.0    0.0   
3      0.0        0.0       0.0        0.0     0.063316      0.0    0.0   
4      0.0        0.0       0.0        0.0     0.000000      0.0    0.0   

   instead  integral  interaction  interactions  interest  interesting  \
0      0.0       0.0          0.0      0.000000  0.000000          0.0   
1      0.0       0.0          0.0      0.000000  0.000000          0.0   
2      0.0       0.0          0.0      0.000000  0.000000          0.0   
3      0.0       0.0          0.0      0.084102  0.083421          0.0   
4      0.0       0.0          0.0      0.000000  0.000000          0.0   

   interface  introduce  introduced  invariant  inverse  investigate  \
0        0.0        0.0         0.0        0.0      0.0     0.221912   
1        0.0        0.0         0.0        0.0      0.0     0.000000   
2        0.0        0.0         0.0        0.0      0.0     0.000000   
3        0.0        0.0         0.0        0.0      0.0     0.000000   
4        0.0        0.0         0.0        0.0      0.0     0.149115   

   investigated  involving  issue  joint  kernel  key  knowledge  known  \
0           0.0   0.000000    0.0    0.0     0.0  0.0        0.0    0.0   
1           0.0   0.000000    0.0    0.0     0.0  0.0        0.0    0.0   
2           0.0   0.000000    0.0    0.0     0.0  0.0        0.0    0.0   
3           0.0   0.098315    0.0    0.0     0.0  0.0        0.0    0.0   
4           0.0   0.000000    0.0    0.0     0.0  0.0        0.0    0.0   

   labels  language     large  larger  largescale  latent  latter  lattice  \
0     0.0       0.0  0.000000     0.0         0.0     0.0     0.0      0.0   
1     0.0       0.0  0.000000     0.0         0.0     0.0     0.0      0.0   
2     0.0       0.0  0.000000     0.0         0.0     0.0     0.0      0.0   
3     0.0       0.0  0.058916     0.0         0.0     0.0     0.0      0.0   
4     0.0       0.0  0.000000     0.0         0.0     0.0     0.0      0.0   

   law  layer  layers  lead  leading  leads  learn   learned  learning  least  \
0  0.0    0.0     0.0   0.0      0.0    0.0    0.0  0.000000  0.000000    0.0   
1  0.0    0.0     0.0   0.0      0.0    0.0    0.0  0.000000  0.000000    0.0   
2  0.0    0.0     0.0   0.0      0.0    0.0    0.0  0.067416  0.041031    0.0   
3  0.0    0.0     0.0   0.0      0.0    0.0    0.0  0.000000  0.000000    0.0   
4  0.0    0.0     0.0   0.0      0.0    0.0    0.0  0.000000  0.000000    0.0   

   length  less  let  level  levels  lie  light  like  likelihood  limit  \
0     0.0   0.0  0.0    0.0     0.0  0.0    0.0   0.0         0.0    0.0   
1     0.0   0.0  0.0    0.0     0.0  0.0    0.0   0.0         0.0    0.0   
2     0.0   0.0  0.0    0.0     0.0  0.0    0.0   0.0         0.0    0.0   
3     0.0   0.0  0.0    0.0     0.0  0.0    0.0   0.0         0.0    0.0   
4     0.0   0.0  0.0    0.0     0.0  0.0    0.0   0.0         0.0    0.0   

   limited  line  linear  link  literature     local  localization  logic  \
0      0.0   0.0     0.0   0.0         0.0  0.109507           0.0    0.0   
1      0.0   0.0     0.0   0.0         0.0  0.000000           0.0    0.0   
2      0.0   0.0     0.0   0.0         0.0  0.052939           0.0    0.0   
3      0.0   0.0     0.0   0.0         0.0  0.000000           0.0    0.0   
4      0.0   0.0     0.0   0.0         0.0  0.000000           0.0    0.0   

   long  loss  low  lower  machine  made  magnetic  magnitude  main  major  \
0   0.0   0.0  0.0    0.0      0.0   0.0   0.00000        0.0   0.0    0.0   
1   0.0   0.0  0.0    0.0      0.0   0.0   0.00000        0.0   0.0    0.0   
2   0.0   0.0  0.0    0.0      0.0   0.0   0.00000        0.0   0.0    0.0   
3   0.0   0.0  0.0    0.0      0.0   0.0   0.16852        0.0   0.0    0.0   
4   0.0   0.0  0.0    0.0      0.0   0.0   0.00000        0.0   0.0    0.0   

   make  makes  making  manifold  manifolds      many  map  mapping  maps  \
0   0.0    0.0     0.0       0.0        0.0  0.000000  0.0      0.0   0.0   
1   0.0    0.0     0.0       0.0        0.0  0.363332  0.0      0.0   0.0   
2   0.0    0.0     0.0       0.0        0.0  0.045621  0.0      0.0   0.0   
3   0.0    0.0     0.0       0.0        0.0  0.000000  0.0      0.0   0.0   
4   0.0    0.0     0.0       0.0        0.0  0.000000  0.0      0.0   0.0   

   market  markov  mass  massive  matching  material  materials  mathematical  \
0     0.0     0.0   0.0      0.0       0.0  0.000000   0.000000           0.0   
1     0.0     0.0   0.0      0.0       0.0  0.000000   0.000000           0.0   
2     0.0     0.0   0.0      0.0       0.0  0.000000   0.000000           0.0   
3     0.0     0.0   0.0      0.0       0.0  0.192556   0.096396           0.0   
4     0.0     0.0   0.0      0.0       0.0  0.000000   0.000000           0.0   

   matrices  matrix  matter  maximum  may  mean  means  measure  measured  \
0       0.0     0.0     0.0      0.0  0.0   0.0    0.0      0.0       0.0   
1       0.0     0.0     0.0      0.0  0.0   0.0    0.0      0.0       0.0   
2       0.0     0.0     0.0      0.0  0.0   0.0    0.0      0.0       0.0   
3       0.0     0.0     0.0      0.0  0.0   0.0    0.0      0.0       0.0   
4       0.0     0.0     0.0      0.0  0.0   0.0    0.0      0.0       0.0   

   measurement  measurements  measures  mechanism  mechanisms  memory  \
0          0.0           0.0  0.000000        0.0         0.0     0.0   
1          0.0           0.0  0.000000        0.0         0.0     0.0   
2          0.0           0.0  0.000000        0.0         0.0     0.0   
3          0.0           0.0  0.093751        0.0         0.0     0.0   
4          0.0           0.0  0.000000        0.0         0.0     0.0   

     method  methodology   methods  metric  metrics  minimal  minimum  \
0  0.077557          0.0  0.000000     0.0      0.0      0.0      0.0   
1  0.000000          0.0  0.000000     0.0      0.0      0.0      0.0   
2  0.000000          0.0  0.000000     0.0      0.0      0.0      0.0   
3  0.052342          0.0  0.057612     0.0      0.0      0.0      0.0   
4  0.000000          0.0  0.000000     0.0      0.0      0.0      0.0   

   mixture  mobile      mode     model  modeling    models    modern  modes  \
0      0.0     0.0  0.000000  0.000000       0.0  0.000000  0.146261    0.0   
1      0.0     0.0  0.000000  0.000000       0.0  0.000000  0.000000    0.0   
2      0.0     0.0  0.000000  0.098556       0.0  0.039823  0.000000    0.0   
3      0.0     0.0  0.000000  0.000000       0.0  0.000000  0.000000    0.0   
4      0.0     0.0  0.204123  0.182655       0.0  0.000000  0.000000    0.0   

   molecular  monte  moreover  motion  motivated  much  multiple  must  \
0        0.0    0.0       0.0     0.0        0.0   0.0       0.0   0.0   
1        0.0    0.0       0.0     0.0        0.0   0.0       0.0   0.0   
2        0.0    0.0       0.0     0.0        0.0   0.0       0.0   0.0   
3        0.0    0.0       0.0     0.0        0.0   0.0       0.0   0.0   
4        0.0    0.0       0.0     0.0        0.0   0.0       0.0   0.0   

     namely  natural  nature  near  necessary  need  negative   network  \
0  0.000000      0.0     0.0   0.0        0.0   0.0       0.0  0.000000   
1  0.000000      0.0     0.0   0.0        0.0   0.0       0.0  0.000000   
2  0.067303      0.0     0.0   0.0        0.0   0.0       0.0  0.478352   
3  0.000000      0.0     0.0   0.0        0.0   0.0       0.0  0.000000   
4  0.000000      0.0     0.0   0.0        0.0   0.0       0.0  0.000000   

   networks  neural       new      node  nodes  noise  noisy  nonlinear  \
0       0.0     0.0  0.000000  0.000000    0.0    0.0    0.0   0.000000   
1       0.0     0.0  0.000000  0.000000    0.0    0.0    0.0   0.000000   
2       0.0     0.0  0.000000  0.145281    0.0    0.0    0.0   0.000000   
3       0.0     0.0  0.052193  0.000000    0.0    0.0    0.0   0.000000   
4       0.0     0.0  0.000000  0.000000    0.0    0.0    0.0   0.158101   

   normal  notion     novel    number  numbers  numerical  object  objective  \
0     0.0     0.0  0.000000  0.084335      0.0        0.0     0.0   0.000000   
1     0.0     0.0  0.000000  0.162346      0.0        0.0     0.0   0.000000   
2     0.0     0.0  0.047052  0.000000      0.0        0.0     0.0   0.063138   
3     0.0     0.0  0.065687  0.000000      0.0        0.0     0.0   0.000000   
4     0.0     0.0  0.000000  0.000000      0.0        0.0     0.0   0.000000   

   objects  observation  observations  observe  observed  obtain  obtained  \
0      0.0          0.0           0.0      0.0       0.0     0.0  0.104065   
1      0.0          0.0           0.0      0.0       0.0     0.0  0.000000   
2      0.0          0.0           0.0      0.0       0.0     0.0  0.000000   
3      0.0          0.0           0.0      0.0       0.0     0.0  0.000000   
4      0.0          0.0           0.0      0.0       0.0     0.0  0.000000   

   often       one  ones  online  open  operations  operator  operators  \
0    0.0  0.000000   0.0     0.0   0.0         0.0       0.0        0.0   
1    0.0  0.000000   0.0     0.0   0.0         0.0       0.0        0.0   
2    0.0  0.000000   0.0     0.0   0.0         0.0       0.0        0.0   
3    0.0  0.000000   0.0     0.0   0.0         0.0       0.0        0.0   
4    0.0  0.107779   0.0     0.0   0.0         0.0       0.0        0.0   

   optical  optimal  optimization  order  original  outperforms  output  \
0      0.0      0.0      0.330454    0.0       0.0          0.0     0.0   
1      0.0      0.0      0.000000    0.0       0.0          0.0     0.0   
2      0.0      0.0      0.000000    0.0       0.0          0.0     0.0   
3      0.0      0.0      0.000000    0.0       0.0          0.0     0.0   
4      0.0      0.0      0.000000    0.0       0.0          0.0     0.0   

   overall  pair     pairs     paper  parallel  parameter  parameters  part  \
0      0.0   0.0  0.000000  0.000000       0.0   0.000000         0.0   0.0   
1      0.0   0.0  0.000000  0.120983       0.0   0.000000         0.0   0.0   
2      0.0   0.0  0.000000  0.060765       0.0   0.000000         0.0   0.0   
3      0.0   0.0  0.000000  0.000000       0.0   0.000000         0.0   0.0   
4      0.0   0.0  0.197906  0.000000       0.0   0.153284         0.0   0.0   

    partial  particle  particles  particular  particularly  past  path  \
0  0.000000       0.0        0.0         0.0           0.0   0.0   0.0   
1  0.000000       0.0        0.0         0.0           0.0   0.0   0.0   
2  0.000000       0.0        0.0         0.0           0.0   0.0   0.0   
3  0.093803       0.0        0.0         0.0           0.0   0.0   0.0   
4  0.000000       0.0        0.0         0.0           0.0   0.0   0.0   

   pattern  patterns  per  perform  performance  performed  period  phase  \
0      0.0       0.0  0.0      0.0      0.00000        0.0     0.0    0.0   
1      0.0       0.0  0.0      0.0      0.00000        0.0     0.0    0.0   
2      0.0       0.0  0.0      0.0      0.04201        0.0     0.0    0.0   
3      0.0       0.0  0.0      0.0      0.00000        0.0     0.0    0.0   
4      0.0       0.0  0.0      0.0      0.00000        0.0     0.0    0.0   

   phases  physical  physics  plane  planets  planning  point  points  policy  \
0     0.0       0.0      0.0    0.0      0.0       0.0    0.0     0.0     0.0   
1     0.0       0.0      0.0    0.0      0.0       0.0    0.0     0.0     0.0   
2     0.0       0.0      0.0    0.0      0.0       0.0    0.0     0.0     0.0   
3     0.0       0.0      0.0    0.0      0.0       0.0    0.0     0.0     0.0   
4     0.0       0.0      0.0    0.0      0.0       0.0    0.0     0.0     0.0   

   polynomial  popular  population  positive  possible  posterior  potential  \
0         0.0      0.0         0.0       0.0       0.0        0.0        0.0   
1         0.0      0.0         0.0       0.0       0.0        0.0        0.0   
2         0.0      0.0         0.0       0.0       0.0        0.0        0.0   
3         0.0      0.0         0.0       0.0       0.0        0.0        0.0   
4         0.0      0.0         0.0       0.0       0.0        0.0        0.0   

   power  practical  practice  precision  predict  predicted  prediction  \
0    0.0        0.0       0.0        0.0      0.0        0.0         0.0   
1    0.0        0.0       0.0        0.0      0.0        0.0         0.0   
2    0.0        0.0       0.0        0.0      0.0        0.0         0.0   
3    0.0        0.0       0.0        0.0      0.0        0.0         0.0   
4    0.0        0.0       0.0        0.0      0.0        0.0         0.0   

   predictions  predictive  presence  present  presented  presents  pressure  \
0          0.0         0.0  0.000000      0.0        0.0       0.0       0.0   
1          0.0         0.0  0.000000      0.0        0.0       0.0       0.0   
2          0.0         0.0  0.000000      0.0        0.0       0.0       0.0   
3          0.0         0.0  0.168967      0.0        0.0       0.0       0.0   
4          0.0         0.0  0.000000      0.0        0.0       0.0       0.0   

   previous  previously  principle  prior  privacy  probabilistic  \
0       0.0         0.0        0.0    0.0      0.0            0.0   
1       0.0         0.0        0.0    0.0      0.0            0.0   
2       0.0         0.0        0.0    0.0      0.0            0.0   
3       0.0         0.0        0.0    0.0      0.0            0.0   
4       0.0         0.0        0.0    0.0      0.0            0.0   

   probability   problem  problems  procedure   process  processes  \
0          0.0  0.000000  0.197191        0.0  0.000000        0.0   
1          0.0  0.000000  0.000000        0.0  0.000000        0.0   
2          0.0  0.112882  0.000000        0.0  0.048615        0.0   
3          0.0  0.000000  0.000000        0.0  0.000000        0.0   
4          0.0  0.000000  0.000000        0.0  0.000000        0.0   

   processing  produce  product  program  programming  programs  promising  \
0         0.0      0.0      0.0      0.0          0.0       0.0        0.0   
1         0.0      0.0      0.0      0.0          0.0       0.0        0.0   
2         0.0      0.0      0.0      0.0          0.0       0.0        0.0   
3         0.0      0.0      0.0      0.0          0.0       0.0        0.0   
4         0.0      0.0      0.0      0.0          0.0       0.0        0.0   

   proof  propagation  properties  property   propose  proposed     prove  \
0    0.0          0.0         0.0       0.0  0.000000       0.0  0.000000   
1    0.0          0.0         0.0       0.0  0.000000       0.0  0.191926   
2    0.0          0.0         0.0       0.0  0.118226       0.0  0.000000   
3    0.0          0.0         0.0       0.0  0.000000       0.0  0.000000   
4    0.0          0.0         0.0       0.0  0.000000       0.0  0.000000   

   proved  provide  provided  provides  providing  quality  quantitative  \
0     0.0      0.0  0.000000  0.000000   0.000000      0.0           0.0   
1     0.0      0.0  0.000000  0.000000   0.000000      0.0           0.0   
2     0.0      0.0  0.000000  0.000000   0.000000      0.0           0.0   
3     0.0      0.0  0.085675  0.074017   0.092407      0.0           0.0   
4     0.0      0.0  0.000000  0.000000   0.000000      0.0           0.0   

    quantum  question  random  range  rank  rate  rates  rather  ratio  \
0  0.477679       0.0     0.0    0.0   0.0   0.0    0.0     0.0    0.0   
1  0.000000       0.0     0.0    0.0   0.0   0.0    0.0     0.0    0.0   
2  0.000000       0.0     0.0    0.0   0.0   0.0    0.0     0.0    0.0   
3  0.000000       0.0     0.0    0.0   0.0   0.0    0.0     0.0    0.0   
4  0.000000       0.0     0.0    0.0   0.0   0.0    0.0     0.0    0.0   

       real  realistic  realworld    recent  recently  recognition  \
0  0.107191        0.0   0.000000  0.000000       0.0          0.0   
1  0.000000        0.0   0.000000  0.000000       0.0          0.0   
2  0.000000        0.0   0.063277  0.049657       0.0          0.0   
3  0.000000        0.0   0.000000  0.000000       0.0          0.0   
4  0.000000        0.0   0.000000  0.000000       0.0          0.0   

   reconstruction  recurrent  reduce  reduced  reduction  regime  region  \
0             0.0        0.0     0.0      0.0        0.0     0.0     0.0   
1             0.0        0.0     0.0      0.0        0.0     0.0     0.0   
2             0.0        0.0     0.0      0.0        0.0     0.0     0.0   
3             0.0        0.0     0.0      0.0        0.0     0.0     0.0   
4             0.0        0.0     0.0      0.0        0.0     0.0     0.0   

   regions  regression  regular  regularization  reinforcement   related  \
0      0.0         0.0      0.0             0.0            0.0  0.116421   
1      0.0         0.0      0.0             0.0            0.0  0.224113   
2      0.0         0.0      0.0             0.0            0.0  0.000000   
3      0.0         0.0      0.0             0.0            0.0  0.000000   
4      0.0         0.0      0.0             0.0            0.0  0.000000   

   relation  relations  relationship  relative  relevant   remains  report  \
0       0.0        0.0           0.0       0.0       0.0  0.000000     0.0   
1       0.0        0.0           0.0       0.0       0.0  0.000000     0.0   
2       0.0        0.0           0.0       0.0       0.0  0.000000     0.0   
3       0.0        0.0           0.0       0.0       0.0  0.191744     0.0   
4       0.0        0.0           0.0       0.0       0.0  0.190911     0.0   

   represent  representation  representations  require  required  requires  \
0        0.0        0.000000              0.0      0.0       0.0       0.0   
1        0.0        0.000000              0.0      0.0       0.0       0.0   
2        0.0        0.115348              0.0      0.0       0.0       0.0   
3        0.0        0.000000              0.0      0.0       0.0       0.0   
4        0.0        0.000000              0.0      0.0       0.0       0.0   

   research  resolution  resources  respect  respectively  response  result  \
0  0.000000         0.0        0.0      0.0           0.0       0.0     0.0   
1  0.000000         0.0        0.0      0.0           0.0       0.0     0.0   
2  0.055456         0.0        0.0      0.0           0.0       0.0     0.0   
3  0.000000         0.0        0.0      0.0           0.0       0.0     0.0   
4  0.000000         0.0        0.0      0.0           0.0       0.0     0.0   

   resulting   results  reveal  review  risk  robot  robots  robust  \
0        0.0  0.065127     0.0     0.0   0.0    0.0     0.0     0.0   
1        0.0  0.000000     0.0     0.0   0.0    0.0     0.0     0.0   
2        0.0  0.062968     0.0     0.0   0.0    0.0     0.0     0.0   
3        0.0  0.000000     0.0     0.0   0.0    0.0     0.0     0.0   
4        0.0  0.000000     0.0     0.0   0.0    0.0     0.0     0.0   

   robustness  role  rules  sample   samples  sampling  scale  scales  \
0         0.0   0.0    0.0     0.0  0.127871       0.0    0.0     0.0   
1         0.0   0.0    0.0     0.0  0.000000       0.0    0.0     0.0   
2         0.0   0.0    0.0     0.0  0.000000       0.0    0.0     0.0   
3         0.0   0.0    0.0     0.0  0.000000       0.0    0.0     0.0   
4         0.0   0.0    0.0     0.0  0.000000       0.0    0.0     0.0   

   scaling  scattering  scenario  scenarios  scheme  schemes  science  \
0      0.0         0.0  0.000000        0.0     0.0      0.0      0.0   
1      0.0         0.0  0.000000        0.0     0.0      0.0      0.0   
2      0.0         0.0  0.070802        0.0     0.0      0.0      0.0   
3      0.0         0.0  0.000000        0.0     0.0      0.0      0.0   
4      0.0         0.0  0.000000        0.0     0.0      0.0      0.0   

     search    second  security  selection  semantic  sense  sensitivity  \
0  0.130778  0.000000       0.0        0.0       0.0    0.0          0.0   
1  0.000000  0.217362       0.0        0.0       0.0    0.0          0.0   
2  0.000000  0.000000       0.0        0.0       0.0    0.0          0.0   
3  0.000000  0.000000       0.0        0.0       0.0    0.0          0.0   
4  0.000000  0.000000       0.0        0.0       0.0    0.0          0.0   

   sensor  sequence  sequences  series     set  sets  setting  settings  \
0     0.0       0.0        0.0     0.0  0.0924   0.0      0.0       0.0   
1     0.0       0.0        0.0     0.0  0.0000   0.0      0.0       0.0   
2     0.0       0.0        0.0     0.0  0.0000   0.0      0.0       0.0   
3     0.0       0.0        0.0     0.0  0.0000   0.0      0.0       0.0   
4     0.0       0.0        0.0     0.0  0.0000   0.0      0.0       0.0   

    several  shape  short      show  showing  shown  shows  sigma  signal  \
0  0.096099    0.0    0.0  0.000000      0.0    0.0    0.0    0.0     0.0   
1  0.000000    0.0    0.0  0.121628      0.0    0.0    0.0    0.0     0.0   
2  0.000000    0.0    0.0  0.000000      0.0    0.0    0.0    0.0     0.0   
3  0.000000    0.0    0.0  0.000000      0.0    0.0    0.0    0.0     0.0   
4  0.000000    0.0    0.0  0.169824      0.0    0.0    0.0    0.0     0.0   

   signals  significant  significantly  sim  similar  similarity  simple  \
0      0.0          0.0       0.000000  0.0      0.0         0.0     0.0   
1      0.0          0.0       0.000000  0.0      0.0         0.0     0.0   
2      0.0          0.0       0.055123  0.0      0.0         0.0     0.0   
3      0.0          0.0       0.000000  0.0      0.0         0.0     0.0   
4      0.0          0.0       0.000000  0.0      0.0         0.0     0.0   

   simulated  simulation  simulations  simultaneously  since  single  size  \
0        0.0         0.0          0.0             0.0    0.0     0.0   0.0   
1        0.0         0.0          0.0             0.0    0.0     0.0   0.0   
2        0.0         0.0          0.0             0.0    0.0     0.0   0.0   
3        0.0         0.0          0.0             0.0    0.0     0.0   0.0   
4        0.0         0.0          0.0             0.0    0.0     0.0   0.0   

   sizes  small  smaller  smooth    social  software  solar  solution  \
0    0.0    0.0      0.0     0.0  0.000000       0.0    0.0  0.214690   
1    0.0    0.0      0.0     0.0  0.000000       0.0    0.0  0.413282   
2    0.0    0.0      0.0     0.0  0.128466       0.0    0.0  0.000000   
3    0.0    0.0      0.0     0.0  0.000000       0.0    0.0  0.000000   
4    0.0    0.0      0.0     0.0  0.000000       0.0    0.0  0.144262   

   solutions  solve  solving  source  sources     space  spaces  sparse  \
0   0.000000    0.0      0.0     0.0      0.0  0.000000     0.0     0.0   
1   0.441781    0.0      0.0     0.0      0.0  0.000000     0.0     0.0   
2   0.000000    0.0      0.0     0.0      0.0  0.046181     0.0     0.0   
3   0.000000    0.0      0.0     0.0      0.0  0.000000     0.0     0.0   
4   0.308420    0.0      0.0     0.0      0.0  0.000000     0.0     0.0   

   spatial  special  specific  specifically  spectra  spectral  spectrum  \
0      0.0      0.0  0.000000           0.0      0.0  0.000000       0.0   
1      0.0      0.0  0.000000           0.0      0.0  0.000000       0.0   
2      0.0      0.0  0.117332           0.0      0.0  0.000000       0.0   
3      0.0      0.0  0.000000           0.0      0.0  0.345476       0.0   
4      0.0      0.0  0.000000           0.0      0.0  0.000000       0.0   

   speech  speed  spin  stability  stable  standard  star  stars     state  \
0     0.0    0.0   0.0        0.0     0.0       0.0   0.0    0.0  0.000000   
1     0.0    0.0   0.0        0.0     0.0       0.0   0.0    0.0  0.000000   
2     0.0    0.0   0.0        0.0     0.0       0.0   0.0    0.0  0.000000   
3     0.0    0.0   0.0        0.0     0.0       0.0   0.0    0.0  0.000000   
4     0.0    0.0   0.0        0.0     0.0       0.0   0.0    0.0  0.276859   

   stateoftheart    states  statistical  statistics  stellar  step  still  \
0            0.0  0.000000          0.0    0.138686      0.0   0.0    0.0   
1            0.0  0.000000          0.0    0.000000      0.0   0.0    0.0   
2            0.0  0.000000          0.0    0.000000      0.0   0.0    0.0   
3            0.0  0.077712          0.0    0.000000      0.0   0.0    0.0   
4            0.0  0.000000          0.0    0.000000      0.0   0.0    0.0   

   stochastic  strategies  strategy  strength  strong  strongly  structural  \
0         0.0         0.0       0.0       0.0     0.0       0.0         0.0   
1         0.0         0.0       0.0       0.0     0.0       0.0         0.0   
2         0.0         0.0       0.0       0.0     0.0       0.0         0.0   
3         0.0         0.0       0.0       0.0     0.0       0.0         0.0   
4         0.0         0.0       0.0       0.0     0.0       0.0         0.0   

   structure  structures  studied  studies     study  subset  sufficient  \
0   0.000000    0.000000      0.0      0.0  0.000000     0.0         0.0   
1   0.000000    0.000000      0.0      0.0  0.000000     0.0         0.0   
2   0.091547    0.058466      0.0      0.0  0.037369     0.0         0.0   
3   0.000000    0.000000      0.0      0.0  0.000000     0.0         0.0   
4   0.000000    0.000000      0.0      0.0  0.000000     0.0         0.0   

   suggest  suitable  sum  supervised  support   surface  surfaces  survey  \
0      0.0       0.0  0.0         0.0      0.0  0.000000       0.0     0.0   
1      0.0       0.0  0.0         0.0      0.0  0.000000       0.0     0.0   
2      0.0       0.0  0.0         0.0      0.0  0.000000       0.0     0.0   
3      0.0       0.0  0.0         0.0      0.0  0.082385       0.0     0.0   
4      0.0       0.0  0.0         0.0      0.0  0.000000       0.0     0.0   

   symmetric  symmetry  synthetic    system   systems  take  taking  target  \
0        0.0       0.0        0.0  0.000000  0.000000   0.0     0.0     0.0   
1        0.0       0.0        0.0  0.493408  0.000000   0.0     0.0     0.0   
2        0.0       0.0        0.0  0.000000  0.000000   0.0     0.0     0.0   
3        0.0       0.0        0.0  0.172983  0.180939   0.0     0.0     0.0   
4        0.0       0.0        0.0  0.000000  0.000000   0.0     0.0     0.0   

   task     tasks  technique  techniques  temperature  temporal  tensor  term  \
0   0.0  0.000000   0.000000         0.0          0.0       0.0     0.0   0.0   
1   0.0  0.000000   0.000000         0.0          0.0       0.0     0.0   0.0   
2   0.0  0.224047   0.000000         0.0          0.0       0.0     0.0   0.0   
3   0.0  0.000000   0.078834         0.0          0.0       0.0     0.0   0.0   
4   0.0  0.000000   0.000000         0.0          0.0       0.0     0.0   0.0   

      terms  test  tested  testing  tests  text  theorem  theoretical  \
0  0.102435   0.0     0.0      0.0    0.0   0.0      0.0          0.0   
1  0.000000   0.0     0.0      0.0    0.0   0.0      0.0          0.0   
2  0.000000   0.0     0.0      0.0    0.0   0.0      0.0          0.0   
3  0.000000   0.0     0.0      0.0    0.0   0.0      0.0          0.0   
4  0.000000   0.0     0.0      0.0    0.0   0.0      0.0          0.0   

     theory  therefore  thermal  three  threshold  thus  time    times  \
0  0.097421        0.0      0.0    0.0        0.0   0.0   0.0  0.12203   
1  0.000000        0.0      0.0    0.0        0.0   0.0   0.0  0.00000   
2  0.000000        0.0      0.0    0.0        0.0   0.0   0.0  0.00000   
3  0.000000        0.0      0.0    0.0        0.0   0.0   0.0  0.00000   
4  0.000000        0.0      0.0    0.0        0.0   0.0   0.0  0.00000   

   together  tool  tools  topological  topology  total  towards  traditional  \
0       0.0   0.0    0.0          0.0       0.0    0.0      0.0          0.0   
1       0.0   0.0    0.0          0.0       0.0    0.0      0.0          0.0   
2       0.0   0.0    0.0          0.0       0.0    0.0      0.0          0.0   
3       0.0   0.0    0.0          0.0       0.0    0.0      0.0          0.0   
4       0.0   0.0    0.0          0.0       0.0    0.0      0.0          0.0   

   traffic  train  trained  training  transfer  transformation  transition  \
0      0.0    0.0      0.0       0.0       0.0        0.000000         0.0   
1      0.0    0.0      0.0       0.0       0.0        0.000000         0.0   
2      0.0    0.0      0.0       0.0       0.0        0.000000         0.0   
3      0.0    0.0      0.0       0.0       0.0        0.000000         0.0   
4      0.0    0.0      0.0       0.0       0.0        0.206951         0.0   

   transmission  transport  treatment  tree  true  two  type  types  typical  \
0           0.0        0.0        0.0   0.0   0.0  0.0   0.0    0.0      0.0   
1           0.0        0.0        0.0   0.0   0.0  0.0   0.0    0.0      0.0   
2           0.0        0.0        0.0   0.0   0.0  0.0   0.0    0.0      0.0   
3           0.0        0.0        0.0   0.0   0.0  0.0   0.0    0.0      0.0   
4           0.0        0.0        0.0   0.0   0.0  0.0   0.0    0.0      0.0   

   typically  uncertainty  underlying  understand  understanding  uniform  \
0        0.0          0.0         0.0         0.0            0.0      0.0   
1        0.0          0.0         0.0         0.0            0.0      0.0   
2        0.0          0.0         0.0         0.0            0.0      0.0   
3        0.0          0.0         0.0         0.0            0.0      0.0   
4        0.0          0.0         0.0         0.0            0.0      0.0   

   unique  unit  unknown  upon  upper   us       use  used  useful  user  \
0     0.0   0.0      0.0   0.0    0.0  0.0  0.085281   0.0     0.0   0.0   
1     0.0   0.0      0.0   0.0    0.0  0.0  0.000000   0.0     0.0   0.0   
2     0.0   0.0      0.0   0.0    0.0  0.0  0.000000   0.0     0.0   0.0   
3     0.0   0.0      0.0   0.0    0.0  0.0  0.000000   0.0     0.0   0.0   
4     0.0   0.0      0.0   0.0    0.0  0.0  0.000000   0.0     0.0   0.0   

   users  uses  using  usually  value  values  variable  variables  variance  \
0    0.0   0.0    0.0      0.0    0.0     0.0       0.0   0.126645       0.0   
1    0.0   0.0    0.0      0.0    0.0     0.0       0.0   0.000000       0.0   
2    0.0   0.0    0.0      0.0    0.0     0.0       0.0   0.000000       0.0   
3    0.0   0.0    0.0      0.0    0.0     0.0       0.0   0.000000       0.0   
4    0.0   0.0    0.0      0.0    0.0     0.0       0.0   0.000000       0.0   

   variation  variational  variety  various    vector  vectors  velocity  \
0        0.0          0.0      0.0      0.0  0.000000   0.0000       0.0   
1        0.0          0.0      0.0      0.0  0.000000   0.0000       0.0   
2        0.0          0.0      0.0      0.0  0.060913   0.1455       0.0   
3        0.0          0.0      0.0      0.0  0.000000   0.0000       0.0   
4        0.0          0.0      0.0      0.0  0.000000   0.0000       0.0   

   version  vertices  via  view  visual  volume  wave     waves  way  weak  \
0      0.0       0.0  0.0   0.0     0.0     0.0   0.0  0.000000  0.0   0.0   
1      0.0       0.0  0.0   0.0     0.0     0.0   0.0  0.000000  0.0   0.0   
2      0.0       0.0  0.0   0.0     0.0     0.0   0.0  0.000000  0.0   0.0   
3      0.0       0.0  0.0   0.0     0.0     0.0   0.0  0.000000  0.0   0.0   
4      0.0       0.0  0.0   0.0     0.0     0.0   0.0  0.209261  0.0   0.0   

   weight  weighted  weights  well  whether  whose  wide  widely  within  \
0     0.0       0.0      0.0   0.0      0.0    0.0   0.0     0.0     0.0   
1     0.0       0.0      0.0   0.0      0.0    0.0   0.0     0.0     0.0   
2     0.0       0.0      0.0   0.0      0.0    0.0   0.0     0.0     0.0   
3     0.0       0.0      0.0   0.0      0.0    0.0   0.0     0.0     0.0   
4     0.0       0.0      0.0   0.0      0.0    0.0   0.0     0.0     0.0   

   without  word      work     works  world  would  xray     years  yet  \
0      0.0   0.0  0.000000  0.000000    0.0    0.0   0.0  0.000000  0.0   
1      0.0   0.0  0.000000  0.000000    0.0    0.0   0.0  0.000000  0.0   
2      0.0   0.0  0.000000  0.133152    0.0    0.0   0.0  0.063503  0.0   
3      0.0   0.0  0.058032  0.000000    0.0    0.0   0.0  0.000000  0.0   
4      0.0   0.0  0.000000  0.000000    0.0    0.0   0.0  0.000000  0.0   

   yields      zero  
0     0.0  0.000000  
1     0.0  0.000000  
2     0.0  0.000000  
3     0.0  0.188231  
4     0.0  0.000000  
In [29]:
# Transform the training data
X_test_tfidf = vectorizer.transform(X_test)

# Convert the TF-IDF sparse matrix to a DataFrame
X_test_tfidf_df = pd.DataFrame(X_test_tfidf.toarray(), columns=vectorizer.get_feature_names_out())

print("\nTF-IDF Features DataFrame:")
print(X_test_tfidf_df.head())
TF-IDF Features DataFrame:
   ability  able  access  according  account  accuracy  accurate  achieve  \
0      0.0   0.0     0.0   0.000000      0.0  0.089155       0.0      0.0   
1      0.0   0.0     0.0   0.000000      0.0  0.000000       0.0      0.0   
2      0.0   0.0     0.0   0.115426      0.0  0.000000       0.0      0.0   
3      0.0   0.0     0.0   0.000000      0.0  0.000000       0.0      0.0   
4      0.0   0.0     0.0   0.000000      0.0  0.000000       0.0      0.0   

   achieved  achieves  across  action  actions  active  activity  adaptive  \
0  0.000000       0.0     0.0     0.0      0.0     0.0       0.0  0.232938   
1  0.000000       0.0     0.0     0.0      0.0     0.0       0.0  0.140969   
2  0.000000       0.0     0.0     0.0      0.0     0.0       0.0  0.000000   
3  0.000000       0.0     0.0     0.0      0.0     0.0       0.0  0.000000   
4  0.181268       0.0     0.0     0.0      0.0     0.0       0.0  0.000000   

   addition  additional  address  adversarial  agent  agents  agreement  aim  \
0       0.0    0.106707      0.0          0.0    0.0     0.0        0.0  0.0   
1       0.0    0.000000      0.0          0.0    0.0     0.0        0.0  0.0   
2       0.0    0.000000      0.0          0.0    0.0     0.0        0.0  0.0   
3       0.0    0.000000      0.0          0.0    0.0     0.0        0.0  0.0   
4       0.0    0.000000      0.0          0.0    0.0     0.0        0.0  0.0   

    al  algebra  algebraic  algebras  algorithm  algorithms  allow  allowing  \
0  0.0      0.0        0.0       0.0   0.000000    0.000000    0.0       0.0   
1  0.0      0.0        0.0       0.0   0.000000    0.000000    0.0       0.0   
2  0.0      0.0        0.0       0.0   0.069972    0.000000    0.0       0.0   
3  0.0      0.0        0.0       0.0   0.000000    0.000000    0.0       0.0   
4  0.0      0.0        0.0       0.0   0.123458    0.275387    0.0       0.0   

   allows  almost  along      also  alternative  although     among  amount  \
0     0.0     0.0    0.0  0.000000          0.0       0.0  0.000000     0.0   
1     0.0     0.0    0.0  0.000000          0.0       0.0  0.000000     0.0   
2     0.0     0.0    0.0  0.053373          0.0       0.0  0.000000     0.0   
3     0.0     0.0    0.0  0.000000          0.0       0.0  0.235047     0.0   
4     0.0     0.0    0.0  0.000000          0.0       0.0  0.000000     0.0   

   analysis  analytical  analyze  another  application  applications  applied  \
0       0.0         0.0      0.0      0.0          0.0      0.000000      0.0   
1       0.0         0.0      0.0      0.0          0.0      0.000000      0.0   
2       0.0         0.0      0.0      0.0          0.0      0.000000      0.0   
3       0.0         0.0      0.0      0.0          0.0      0.191907      0.0   
4       0.0         0.0      0.0      0.0          0.0      0.000000      0.0   

      apply  applying  approach  approaches  appropriate  approximate  \
0  0.098558       0.0  0.065124    0.000000          0.0     0.000000   
1  0.000000       0.0  0.000000    0.107616          0.0     0.131548   
2  0.000000       0.0  0.000000    0.000000          0.0     0.000000   
3  0.000000       0.0  0.000000    0.000000          0.0     0.000000   
4  0.000000       0.0  0.222969    0.000000          0.0     0.000000   

   approximation  arbitrary  architecture  architectures  area  around  \
0            0.0   0.000000           0.0            0.0   0.0     0.0   
1            0.0   0.000000           0.0            0.0   0.0     0.0   
2            0.0   0.104076           0.0            0.0   0.0     0.0   
3            0.0   0.000000           0.0            0.0   0.0     0.0   
4            0.0   0.000000           0.0            0.0   0.0     0.0   

   article  artificial  aspects  associated  assumption  assumptions  \
0      0.0         0.0      0.0         0.0         0.0          0.0   
1      0.0         0.0      0.0         0.0         0.0          0.0   
2      0.0         0.0      0.0         0.0         0.0          0.0   
3      0.0         0.0      0.0         0.0         0.0          0.0   
4      0.0         0.0      0.0         0.0         0.0          0.0   

   asymptotic  atomic  atoms  attacks  attention  automatically  available  \
0         0.0     0.0    0.0      0.0        0.0            0.0        0.0   
1         0.0     0.0    0.0      0.0        0.0            0.0        0.0   
2         0.0     0.0    0.0      0.0        0.0            0.0        0.0   
3         0.0     0.0    0.0      0.0        0.0            0.0        0.0   
4         0.0     0.0    0.0      0.0        0.0            0.0        0.0   

   average  background  band     based  basic  basis  bayesian  beam  become  \
0      0.0         0.0   0.0  0.000000    0.0    0.0       0.0   0.0     0.0   
1      0.0         0.0   0.0  0.073070    0.0    0.0       0.0   0.0     0.0   
2      0.0         0.0   0.0  0.058573    0.0    0.0       0.0   0.0     0.0   
3      0.0         0.0   0.0  0.000000    0.0    0.0       0.0   0.0     0.0   
4      0.0         0.0   0.0  0.000000    0.0    0.0       0.0   0.0     0.0   

   becomes  behavior  benchmark  best    better  beyond  bias  binary  bound  \
0      0.0       0.0   0.113955   0.0  0.000000     0.0   0.0     0.0    0.0   
1      0.0       0.0   0.000000   0.0  0.000000     0.0   0.0     0.0    0.0   
2      0.0       0.0   0.000000   0.0  0.000000     0.0   0.0     0.0    0.0   
3      0.0       0.0   0.000000   0.0  0.000000     0.0   0.0     0.0    0.0   
4      0.0       0.0   0.000000   0.0  0.159542     0.0   0.0     0.0    0.0   

   boundary  bounded    bounds  brain  build  building  calculations  \
0       0.0      0.0  0.000000    0.0    0.0       0.0           0.0   
1       0.0      0.0  0.000000    0.0    0.0       0.0           0.0   
2       0.0      0.0  0.101063    0.0    0.0       0.0           0.0   
3       0.0      0.0  0.000000    0.0    0.0       0.0           0.0   
4       0.0      0.0  0.000000    0.0    0.0       0.0           0.0   

     called  cannot  capture  carlo      case    cases  cell  cells  central  \
0  0.098038     0.0      0.0    0.0  0.000000  0.00000   0.0    0.0      0.0   
1  0.000000     0.0      0.0    0.0  0.000000  0.11748   0.0    0.0      0.0   
2  0.000000     0.0      0.0    0.0  0.000000  0.00000   0.0    0.0      0.0   
3  0.000000     0.0      0.0    0.0  0.186401  0.00000   0.0    0.0      0.0   
4  0.000000     0.0      0.0    0.0  0.000000  0.00000   0.0    0.0      0.0   

   certain  chain  challenge  challenges  challenging  change  changes  \
0      0.0    0.0        0.0         0.0          0.0     0.0      0.0   
1      0.0    0.0        0.0         0.0          0.0     0.0      0.0   
2      0.0    0.0        0.0         0.0          0.0     0.0      0.0   
3      0.0    0.0        0.0         0.0          0.0     0.0      0.0   
4      0.0    0.0        0.0         0.0          0.0     0.0      0.0   

    channel  characteristic  characteristics  characterization  characterize  \
0  0.123949             0.0              0.0               0.0           0.0   
1  0.000000             0.0              0.0               0.0           0.0   
2  0.000000             0.0              0.0               0.0           0.0   
3  0.000000             0.0              0.0               0.0           0.0   
4  0.000000             0.0              0.0               0.0           0.0   

   characterized  charge  choice  class  classes  classical  classification  \
0            0.0     0.0     0.0    0.0      0.0        0.0             0.0   
1            0.0     0.0     0.0    0.0      0.0        0.0             0.0   
2            0.0     0.0     0.0    0.0      0.0        0.0             0.0   
3            0.0     0.0     0.0    0.0      0.0        0.0             0.0   
4            0.0     0.0     0.0    0.0      0.0        0.0             0.0   

   classifier  close  closed  cloud  cluster  clustering  clusters  cnn  code  \
0         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   
1         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   
2         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   
3         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   
4         0.0    0.0     0.0    0.0      0.0         0.0       0.0  0.0   0.0   

   codes  coefficients  combination  combined  combining  common  \
0    0.0           0.0          0.0       0.0   0.000000     0.0   
1    0.0           0.0          0.0       0.0   0.144371     0.0   
2    0.0           0.0          0.0       0.0   0.000000     0.0   
3    0.0           0.0          0.0       0.0   0.000000     0.0   
4    0.0           0.0          0.0       0.0   0.000000     0.0   

   communication  community  compact  compare  compared  comparison  complete  \
0       0.000000   0.000000      0.0      0.0       0.0         0.0       0.0   
1       0.000000   0.000000      0.0      0.0       0.0         0.0       0.0   
2       0.000000   0.000000      0.0      0.0       0.0         0.0       0.0   
3       0.000000   0.000000      0.0      0.0       0.0         0.0       0.0   
4       0.194018   0.203924      0.0      0.0       0.0         0.0       0.0   

   complex  complexity  component  components  computation  computational  \
0      0.0    0.000000        0.0         0.0     0.000000       0.000000   
1      0.0    0.000000        0.0         0.0     0.130181       0.000000   
2      0.0    0.093639        0.0         0.0     0.000000       0.090963   
3      0.0    0.000000        0.0         0.0     0.000000       0.000000   
4      0.0    0.000000        0.0         0.0     0.000000       0.000000   

   computationally   compute  computed  computer  computing  concept  \
0              0.0  0.000000       0.0       0.0    0.00000   0.0000   
1              0.0  0.000000       0.0       0.0    0.00000   0.1377   
2              0.0  0.103441       0.0       0.0    0.10426   0.0000   
3              0.0  0.000000       0.0       0.0    0.00000   0.0000   
4              0.0  0.000000       0.0       0.0    0.00000   0.0000   

   condition  conditional  conditions  confidence  conjecture  connected  \
0        0.0          0.0         0.0         0.0         0.0        0.0   
1        0.0          0.0         0.0         0.0         0.0        0.0   
2        0.0          0.0         0.0         0.0         0.0        0.0   
3        0.0          0.0         0.0         0.0         0.0        0.0   
4        0.0          0.0         0.0         0.0         0.0        0.0   

   connection  consider  considered  considering  consistent  consists  \
0         0.0    0.0000         0.0          0.0         0.0       0.0   
1         0.0    0.0000         0.0          0.0         0.0       0.0   
2         0.0    0.1597         0.0          0.0         0.0       0.0   
3         0.0    0.0000         0.0          0.0         0.0       0.0   
4         0.0    0.0000         0.0          0.0         0.0       0.0   

   constant  constraint  constraints  construct  constructed  construction  \
0       0.0         0.0          0.0        0.0     0.000000           0.0   
1       0.0         0.0          0.0        0.0     0.143162           0.0   
2       0.0         0.0          0.0        0.0     0.000000           0.0   
3       0.0         0.0          0.0        0.0     0.000000           0.0   
4       0.0         0.0          0.0        0.0     0.000000           0.0   

   contains  content  context  continuous  contrast  contribution  control  \
0       0.0      0.0      0.0         0.0       0.0           0.0      0.0   
1       0.0      0.0      0.0         0.0       0.0           0.0      0.0   
2       0.0      0.0      0.0         0.0       0.0           0.0      0.0   
3       0.0      0.0      0.0         0.0       0.0           0.0      0.0   
4       0.0      0.0      0.0         0.0       0.0           0.0      0.0   

   conventional  convergence  convex  convolutional  core  correlation  \
0           0.0          0.0     0.0            0.0   0.0          0.0   
1           0.0          0.0     0.0            0.0   0.0          0.0   
2           0.0          0.0     0.0            0.0   0.0          0.0   
3           0.0          0.0     0.0            0.0   0.0          0.0   
4           0.0          0.0     0.0            0.0   0.0          0.0   

   corresponding  cost  could  coupled  coupling  covariance  critical  \
0            0.0   0.0    0.0      0.0       0.0         0.0       0.0   
1            0.0   0.0    0.0      0.0       0.0         0.0       0.0   
2            0.0   0.0    0.0      0.0       0.0         0.0       0.0   
3            0.0   0.0    0.0      0.0       0.0         0.0       0.0   
4            0.0   0.0    0.0      0.0       0.0         0.0       0.0   

   crucial  current  curvature  curves  dark      data  dataset  datasets  \
0      0.0      0.0        0.0     0.0   0.0  0.057461      0.0  0.092525   
1      0.0      0.0        0.0     0.0   0.0  0.000000      0.0  0.000000   
2      0.0      0.0        0.0     0.0   0.0  0.000000      0.0  0.000000   
3      0.0      0.0        0.0     0.0   0.0  0.000000      0.0  0.000000   
4      0.0      0.0        0.0     0.0   0.0  0.000000      0.0  0.000000   

   decision  decomposition      deep  define  defined  degree  demonstrate  \
0       0.0            0.0  0.171592     0.0      0.0     0.0          0.0   
1       0.0            0.0  0.000000     0.0      0.0     0.0          0.0   
2       0.0            0.0  0.000000     0.0      0.0     0.0          0.0   
3       0.0            0.0  0.000000     0.0      0.0     0.0          0.0   
4       0.0            0.0  0.000000     0.0      0.0     0.0          0.0   

   demonstrated  density  dependence  depends  depth  derive  derived  \
0           0.0      0.0         0.0      0.0    0.0     0.0      0.0   
1           0.0      0.0         0.0      0.0    0.0     0.0      0.0   
2           0.0      0.0         0.0      0.0    0.0     0.0      0.0   
3           0.0      0.0         0.0      0.0    0.0     0.0      0.0   
4           0.0      0.0         0.0      0.0    0.0     0.0      0.0   

   descent  describe  described  description  design  designed  despite  \
0      0.0       0.0        0.0          0.0     0.0       0.0      0.0   
1      0.0       0.0        0.0          0.0     0.0       0.0      0.0   
2      0.0       0.0        0.0          0.0     0.0       0.0      0.0   
3      0.0       0.0        0.0          0.0     0.0       0.0      0.0   
4      0.0       0.0        0.0          0.0     0.0       0.0      0.0   

   detailed  detect  detection  determine  determined  deterministic  develop  \
0       0.0     0.0   0.000000        0.0         0.0            0.0      0.0   
1       0.0     0.0   0.000000        0.0         0.0            0.0      0.0   
2       0.0     0.0   0.000000        0.0         0.0            0.0      0.0   
3       0.0     0.0   0.000000        0.0         0.0            0.0      0.0   
4       0.0     0.0   0.167174        0.0         0.0            0.0      0.0   

   developed  development  devices  difference  differences  different  \
0        0.0          0.0      0.0         0.0          0.0        0.0   
1        0.0          0.0      0.0         0.0          0.0        0.0   
2        0.0          0.0      0.0         0.0          0.0        0.0   
3        0.0          0.0      0.0         0.0          0.0        0.0   
4        0.0          0.0      0.0         0.0          0.0        0.0   

   differential  difficult  diffusion  dimension  dimensional  dimensions  \
0           0.0        0.0        0.0        0.0          0.0         0.0   
1           0.0        0.0        0.0        0.0          0.0         0.0   
2           0.0        0.0        0.0        0.0          0.0         0.0   
3           0.0        0.0        0.0        0.0          0.0         0.0   
4           0.0        0.0        0.0        0.0          0.0         0.0   

   direct  direction  directly  discrete  discuss  discussed  disk  distance  \
0     0.0        0.0       0.0  0.000000      0.0        0.0   0.0       0.0   
1     0.0        0.0       0.0  0.000000      0.0        0.0   0.0       0.0   
2     0.0        0.0       0.0  0.105352      0.0        0.0   0.0       0.0   
3     0.0        0.0       0.0  0.000000      0.0        0.0   0.0       0.0   
4     0.0        0.0       0.0  0.000000      0.0        0.0   0.0       0.0   

   distinct  distributed  distribution  distributions  domain  domains  \
0       0.0          0.0           0.0            0.0     0.0      0.0   
1       0.0          0.0           0.0            0.0     0.0      0.0   
2       0.0          0.0           0.0            0.0     0.0      0.0   
3       0.0          0.0           0.0            0.0     0.0      0.0   
4       0.0          0.0           0.0            0.0     0.0      0.0   

   driven  due   dynamic  dynamical  dynamics  edge     edges  effect  \
0     0.0  0.0  0.104753        0.0       0.0   0.0  0.000000     0.0   
1     0.0  0.0  0.000000        0.0       0.0   0.0  0.000000     0.0   
2     0.0  0.0  0.000000        0.0       0.0   0.0  0.118305     0.0   
3     0.0  0.0  0.000000        0.0       0.0   0.0  0.000000     0.0   
4     0.0  0.0  0.000000        0.0       0.0   0.0  0.000000     0.0   

   effective  effectively  effectiveness  effects  efficiency  efficient  \
0        0.0          0.0            0.0      0.0         0.0        0.0   
1        0.0          0.0            0.0      0.0         0.0        0.0   
2        0.0          0.0            0.0      0.0         0.0        0.0   
3        0.0          0.0            0.0      0.0         0.0        0.0   
4        0.0          0.0            0.0      0.0         0.0        0.0   

   efficiently        eg  either  electron  electronic  elements  embedding  \
0          0.0  0.000000     0.0       0.0         0.0       0.0        0.0   
1          0.0  0.000000     0.0       0.0         0.0       0.0        0.0   
2          0.0  0.000000     0.0       0.0         0.0       0.0        0.0   
3          0.0  0.239653     0.0       0.0         0.0       0.0        0.0   
4          0.0  0.000000     0.0       0.0         0.0       0.0        0.0   

   emission  empirical  enable  enables  end  energy  entropy  environment  \
0       0.0        0.0     0.0      0.0  0.0     0.0      0.0          0.0   
1       0.0        0.0     0.0      0.0  0.0     0.0      0.0          0.0   
2       0.0        0.0     0.0      0.0  0.0     0.0      0.0          0.0   
3       0.0        0.0     0.0      0.0  0.0     0.0      0.0          0.0   
4       0.0        0.0     0.0      0.0  0.0     0.0      0.0          0.0   

   environments  equation  equations  equilibrium  equivalent  error  errors  \
0      0.232245  0.000000        0.0          0.0         0.0    0.0     0.0   
1      0.000000  0.117592        0.0          0.0         0.0    0.0     0.0   
2      0.000000  0.000000        0.0          0.0         0.0    0.0     0.0   
3      0.000000  0.000000        0.0          0.0         0.0    0.0     0.0   
4      0.000000  0.000000        0.0          0.0         0.0    0.0     0.0   

   especially  establish  established  estimate  estimated  estimates  \
0         0.0   0.000000          0.0       0.0        0.0        0.0   
1         0.0   0.000000          0.0       0.0        0.0        0.0   
2         0.0   0.101884          0.0       0.0        0.0        0.0   
3         0.0   0.000000          0.0       0.0        0.0        0.0   
4         0.0   0.000000          0.0       0.0        0.0        0.0   

   estimating  estimation  estimator  estimators   et  evaluate  evaluated  \
0    0.000000         0.0        0.0         0.0  0.0  0.101791        0.0   
1    0.000000         0.0        0.0         0.0  0.0  0.000000        0.0   
2    0.000000         0.0        0.0         0.0  0.0  0.000000        0.0   
3    0.000000         0.0        0.0         0.0  0.0  0.000000        0.0   
4    0.206686         0.0        0.0         0.0  0.0  0.000000        0.0   

   evaluation      even  event  events  every  evidence  evolution  exact  \
0         0.0  0.000000    0.0     0.0    0.0       0.0        0.0    0.0   
1         0.0  0.000000    0.0     0.0    0.0       0.0        0.0    0.0   
2         0.0  0.000000    0.0     0.0    0.0       0.0        0.0    0.0   
3         0.0  0.000000    0.0     0.0    0.0       0.0        0.0    0.0   
4         0.0  0.148415    0.0     0.0    0.0       0.0        0.0    0.0   

   example  examples  exhibit  exist  existence  existing  exists  expansion  \
0      0.0       0.0      0.0    0.0        0.0  0.000000     0.0        0.0   
1      0.0       0.0      0.0    0.0        0.0  0.000000     0.0        0.0   
2      0.0       0.0      0.0    0.0        0.0  0.082617     0.0        0.0   
3      0.0       0.0      0.0    0.0        0.0  0.000000     0.0        0.0   
4      0.0       0.0      0.0    0.0        0.0  0.000000     0.0        0.0   

   expected  experiment  experimental  experimentally  experiments  explain  \
0  0.000000         0.0      0.089692             0.0     0.080084      0.0   
1  0.000000         0.0      0.000000             0.0     0.000000      0.0   
2  0.204869         0.0      0.000000             0.0     0.000000      0.0   
3  0.000000         0.0      0.000000             0.0     0.000000      0.0   
4  0.000000         0.0      0.000000             0.0     0.000000      0.0   

   explicit  explicitly  explore  exponential  extend  extended  extension  \
0       0.0         0.0      0.0          0.0     0.0       0.0        0.0   
1       0.0         0.0      0.0          0.0     0.0       0.0        0.0   
2       0.0         0.0      0.0          0.0     0.0       0.0        0.0   
3       0.0         0.0      0.0          0.0     0.0       0.0        0.0   
4       0.0         0.0      0.0          0.0     0.0       0.0        0.0   

   extensive  external  fact  factor   factors  family  far  fast  faster  \
0        0.0       0.0   0.0     0.0  0.111512     0.0  0.0   0.0     0.0   
1        0.0       0.0   0.0     0.0  0.000000     0.0  0.0   0.0     0.0   
2        0.0       0.0   0.0     0.0  0.000000     0.0  0.0   0.0     0.0   
3        0.0       0.0   0.0     0.0  0.000000     0.0  0.0   0.0     0.0   
4        0.0       0.0   0.0     0.0  0.000000     0.0  0.0   0.0     0.0   

   feature  features  feedback  field    fields  finally  find  finding  \
0      0.0       0.0       0.0    0.0  0.000000      0.0   0.0      0.0   
1      0.0       0.0       0.0    0.0  0.122662      0.0   0.0      0.0   
2      0.0       0.0       0.0    0.0  0.000000      0.0   0.0      0.0   
3      0.0       0.0       0.0    0.0  0.000000      0.0   0.0      0.0   
4      0.0       0.0       0.0    0.0  0.000000      0.0   0.0      0.0   

   findings    finite     first   fixed  flow  flows  flux  focus  following  \
0       0.0  0.000000  0.000000  0.1068   0.0    0.0   0.0    0.0        0.0   
1       0.0  0.000000  0.000000  0.0000   0.0    0.0   0.0    0.0        0.0   
2       0.0  0.086978  0.000000  0.0000   0.0    0.0   0.0    0.0        0.0   
3       0.0  0.000000  0.168444  0.0000   0.0    0.0   0.0    0.0        0.0   
4       0.0  0.000000  0.000000  0.0000   0.0    0.0   0.0    0.0        0.0   

   form  formation  forms  formula  formulation  found  four  framework  free  \
0   0.0        0.0    0.0      0.0          0.0    0.0   0.0        0.0   0.0   
1   0.0        0.0    0.0      0.0          0.0    0.0   0.0        0.0   0.0   
2   0.0        0.0    0.0      0.0          0.0    0.0   0.0        0.0   0.0   
3   0.0        0.0    0.0      0.0          0.0    0.0   0.0        0.0   0.0   
4   0.0        0.0    0.0      0.0          0.0    0.0   0.0        0.0   0.0   

   frequency  full  fully  function  functional  functions  fundamental  \
0        0.0   0.0    0.0       0.0         0.0   0.000000          0.0   
1        0.0   0.0    0.0       0.0         0.0   0.000000          0.0   
2        0.0   0.0    0.0       0.0         0.0   0.000000          0.0   
3        0.0   0.0    0.0       0.0         0.0   0.206093          0.0   
4        0.0   0.0    0.0       0.0         0.0   0.000000          0.0   

   furthermore  future  galaxies  galaxy  game  gap  gas  gaussian   general  \
0          0.0     0.0       0.0     0.0   0.0  0.0  0.0       0.0  0.000000   
1          0.0     0.0       0.0     0.0   0.0  0.0  0.0       0.0  0.000000   
2          0.0     0.0       0.0     0.0   0.0  0.0  0.0       0.0  0.077876   
3          0.0     0.0       0.0     0.0   0.0  0.0  0.0       0.0  0.000000   
4          0.0     0.0       0.0     0.0   0.0  0.0  0.0       0.0  0.000000   

   generalization  generalized  generally  generate  generated  generating  \
0             0.0          0.0        0.0       0.0   0.000000    0.117759   
1             0.0          0.0        0.0       0.0   0.000000    0.000000   
2             0.0          0.0        0.0       0.0   0.193736    0.114253   
3             0.0          0.0        0.0       0.0   0.000000    0.000000   
4             0.0          0.0        0.0       0.0   0.000000    0.000000   

   generation  generative  generic  geometric  geometry  give     given  \
0         0.0         0.0      0.0        0.0       0.0   0.0  0.000000   
1         0.0         0.0      0.0        0.0       0.0   0.0  0.000000   
2         0.0         0.0      0.0        0.0       0.0   0.0  0.074209   
3         0.0         0.0      0.0        0.0       0.0   0.0  0.000000   
4         0.0         0.0      0.0        0.0       0.0   0.0  0.000000   

   gives  global      goal  good  gradient     graph    graphs  ground  group  \
0    0.0     0.0  0.000000   0.0       0.0  0.000000  0.000000     0.0    0.0   
1    0.0     0.0  0.000000   0.0       0.0  0.000000  0.000000     0.0    0.0   
2    0.0     0.0  0.107014   0.0       0.0  0.189866  0.105744     0.0    0.0   
3    0.0     0.0  0.000000   0.0       0.0  0.000000  0.000000     0.0    0.0   
4    0.0     0.0  0.000000   0.0       0.0  0.000000  0.186575     0.0    0.0   

   groups  growth  guarantees  hand  help  hence  hidden  hierarchical  high  \
0     0.0     0.0         0.0   0.0   0.0    0.0     0.0           0.0   0.0   
1     0.0     0.0         0.0   0.0   0.0    0.0     0.0           0.0   0.0   
2     0.0     0.0         0.0   0.0   0.0    0.0     0.0           0.0   0.0   
3     0.0     0.0         0.0   0.0   0.0    0.0     0.0           0.0   0.0   
4     0.0     0.0         0.0   0.0   0.0    0.0     0.0           0.0   0.0   

   highdimensional  higher  highly  however  human  hybrid  hypothesis  \
0              0.0     0.0     0.0      0.0    0.0     0.0         0.0   
1              0.0     0.0     0.0      0.0    0.0     0.0         0.0   
2              0.0     0.0     0.0      0.0    0.0     0.0         0.0   
3              0.0     0.0     0.0      0.0    0.0     0.0         0.0   
4              0.0     0.0     0.0      0.0    0.0     0.0         0.0   

   identified  identify   ie   ii  illustrate  image  images  imaging  impact  \
0         0.0       0.0  0.0  0.0         0.0    0.0     0.0      0.0     0.0   
1         0.0       0.0  0.0  0.0         0.0    0.0     0.0      0.0     0.0   
2         0.0       0.0  0.0  0.0         0.0    0.0     0.0      0.0     0.0   
3         0.0       0.0  0.0  0.0         0.0    0.0     0.0      0.0     0.0   
4         0.0       0.0  0.0  0.0         0.0    0.0     0.0      0.0     0.0   

   implementation  implemented  importance  important   improve  improved  \
0        0.000000          0.0         0.0        0.0  0.097372  0.000000   
1        0.000000          0.0         0.0        0.0  0.000000  0.132101   
2        0.000000          0.0         0.0        0.0  0.000000  0.000000   
3        0.000000          0.0         0.0        0.0  0.000000  0.000000   
4        0.184784          0.0         0.0        0.0  0.000000  0.000000   

   improvement  improves  include  including  increase  increases  increasing  \
0          0.0  0.117105      0.0        0.0       0.0        0.0         0.0   
1          0.0  0.000000      0.0        0.0       0.0        0.0         0.0   
2          0.0  0.000000      0.0        0.0       0.0        0.0         0.0   
3          0.0  0.000000      0.0        0.0       0.0        0.0         0.0   
4          0.0  0.000000      0.0        0.0       0.0        0.0         0.0   

   independent  index  indicate  individual  induced  inference  infinite  \
0          0.0    0.0       0.0         0.0      0.0        0.0  0.000000   
1          0.0    0.0       0.0         0.0      0.0        0.0  0.000000   
2          0.0    0.0       0.0         0.0      0.0        0.0  0.232849   
3          0.0    0.0       0.0         0.0      0.0        0.0  0.000000   
4          0.0    0.0       0.0         0.0      0.0        0.0  0.000000   

   influence  information  initial  input  instead  integral  interaction  \
0        0.0     0.076919      0.0    0.0      0.0       0.0          0.0   
1        0.0     0.000000      0.0    0.0      0.0       0.0          0.0   
2        0.0     0.000000      0.0    0.0      0.0       0.0          0.0   
3        0.0     0.000000      0.0    0.0      0.0       0.0          0.0   
4        0.0     0.000000      0.0    0.0      0.0       0.0          0.0   

   interactions  interest  interesting  interface  introduce  introduced  \
0           0.0       0.0          0.0        0.0    0.08638    0.101866   
1           0.0       0.0          0.0        0.0    0.00000    0.000000   
2           0.0       0.0          0.0        0.0    0.00000    0.000000   
3           0.0       0.0          0.0        0.0    0.00000    0.000000   
4           0.0       0.0          0.0        0.0    0.00000    0.000000   

   invariant   inverse  investigate  investigated  involving     issue  joint  \
0        0.0  0.000000          0.0           0.0        0.0  0.000000    0.0   
1        0.0  0.145338          0.0           0.0        0.0  0.000000    0.0   
2        0.0  0.000000          0.0           0.0        0.0  0.000000    0.0   
3        0.0  0.000000          0.0           0.0        0.0  0.000000    0.0   
4        0.0  0.000000          0.0           0.0        0.0  0.203262    0.0   

   kernel  key  knowledge  known  labels  language     large  larger  \
0     0.0  0.0        0.0    0.0     0.0       0.0  0.071573     0.0   
1     0.0  0.0        0.0    0.0     0.0       0.0  0.000000     0.0   
2     0.0  0.0        0.0    0.0     0.0       0.0  0.000000     0.0   
3     0.0  0.0        0.0    0.0     0.0       0.0  0.000000     0.0   
4     0.0  0.0        0.0    0.0     0.0       0.0  0.000000     0.0   

   largescale  latent  latter  lattice  law     layer  layers  lead  leading  \
0         0.0     0.0     0.0      0.0  0.0  0.449039     0.0   0.0      0.0   
1         0.0     0.0     0.0      0.0  0.0  0.000000     0.0   0.0      0.0   
2         0.0     0.0     0.0      0.0  0.0  0.000000     0.0   0.0      0.0   
3         0.0     0.0     0.0      0.0  0.0  0.000000     0.0   0.0      0.0   
4         0.0     0.0     0.0      0.0  0.0  0.000000     0.0   0.0      0.0   

   leads  learn  learned  learning  least  length  less  let     level  \
0    0.0    0.0      0.0       0.0    0.0     0.0   0.0  0.0  0.000000   
1    0.0    0.0      0.0       0.0    0.0     0.0   0.0  0.0  0.000000   
2    0.0    0.0      0.0       0.0    0.0     0.0   0.0  0.0  0.000000   
3    0.0    0.0      0.0       0.0    0.0     0.0   0.0  0.0  0.000000   
4    0.0    0.0      0.0       0.0    0.0     0.0   0.0  0.0  0.163106   

   levels  lie  light  like  likelihood     limit  limited      line  \
0     0.0  0.0    0.0   0.0         0.0  0.000000      0.0  0.000000   
1     0.0  0.0    0.0   0.0         0.0  0.000000      0.0  0.000000   
2     0.0  0.0    0.0   0.0         0.0  0.000000      0.0  0.000000   
3     0.0  0.0    0.0   0.0         0.0  0.000000      0.0  0.270165   
4     0.0  0.0    0.0   0.0         0.0  0.173173      0.0  0.000000   

     linear  link  literature     local  localization  logic      long  loss  \
0  0.000000   0.0         0.0  0.000000           0.0    0.0  0.000000   0.0   
1  0.099174   0.0         0.0  0.000000           0.0    0.0  0.000000   0.0   
2  0.000000   0.0         0.0  0.000000           0.0    0.0  0.000000   0.0   
3  0.000000   0.0         0.0  0.000000           0.0    0.0  0.252795   0.0   
4  0.000000   0.0         0.0  0.153697           0.0    0.0  0.000000   0.0   

   low  lower  machine  made  magnetic  magnitude  main  major  make  makes  \
0  0.0    0.0      0.0   0.0       0.0        0.0   0.0    0.0   0.0    0.0   
1  0.0    0.0      0.0   0.0       0.0        0.0   0.0    0.0   0.0    0.0   
2  0.0    0.0      0.0   0.0       0.0        0.0   0.0    0.0   0.0    0.0   
3  0.0    0.0      0.0   0.0       0.0        0.0   0.0    0.0   0.0    0.0   
4  0.0    0.0      0.0   0.0       0.0        0.0   0.0    0.0   0.0    0.0   

   making  manifold  manifolds  many  map  mapping  maps  market    markov  \
0     0.0       0.0        0.0   0.0  0.0      0.0   0.0     0.0  0.000000   
1     0.0       0.0        0.0   0.0  0.0      0.0   0.0     0.0  0.142265   
2     0.0       0.0        0.0   0.0  0.0      0.0   0.0     0.0  0.000000   
3     0.0       0.0        0.0   0.0  0.0      0.0   0.0     0.0  0.000000   
4     0.0       0.0        0.0   0.0  0.0      0.0   0.0     0.0  0.000000   

   mass  massive  matching  material  materials  mathematical  matrices  \
0   0.0      0.0     0.000       0.0        0.0           0.0       0.0   
1   0.0      0.0     0.149       0.0        0.0           0.0       0.0   
2   0.0      0.0     0.000       0.0        0.0           0.0       0.0   
3   0.0      0.0     0.000       0.0        0.0           0.0       0.0   
4   0.0      0.0     0.000       0.0        0.0           0.0       0.0   

   matrix  matter  maximum       may  mean  means  measure  measured  \
0     0.0     0.0      0.0  0.000000   0.0    0.0      0.0       0.0   
1     0.0     0.0      0.0  0.000000   0.0    0.0      0.0       0.0   
2     0.0     0.0      0.0  0.078506   0.0    0.0      0.0       0.0   
3     0.0     0.0      0.0  0.000000   0.0    0.0      0.0       0.0   
4     0.0     0.0      0.0  0.000000   0.0    0.0      0.0       0.0   

   measurement  measurements  measures  mechanism  mechanisms    memory  \
0          0.0           0.0       0.0   0.000000         0.0  0.000000   
1          0.0           0.0       0.0   0.000000         0.0  0.000000   
2          0.0           0.0       0.0   0.000000         0.0  0.106651   
3          0.0           0.0       0.0   0.000000         0.0  0.000000   
4          0.0           0.0       0.0   0.183958         0.0  0.000000   

     method  methodology  methods  metric  metrics  minimal  minimum  mixture  \
0  0.000000          0.0      0.0     0.0      0.0      0.0      0.0      0.0   
1  0.153927          0.0      0.0     0.0      0.0      0.0      0.0      0.0   
2  0.000000          0.0      0.0     0.0      0.0      0.0      0.0      0.0   
3  0.000000          0.0      0.0     0.0      0.0      0.0      0.0      0.0   
4  0.000000          0.0      0.0     0.0      0.0      0.0      0.0      0.0   

   mobile  mode     model  modeling    models  modern  modes  molecular  \
0     0.0   0.0  0.055716  0.102018  0.270157     0.0    0.0        0.0   
1     0.0   0.0  0.000000  0.000000  0.000000     0.0    0.0        0.0   
2     0.0   0.0  0.108115  0.000000  0.000000     0.0    0.0        0.0   
3     0.0   0.0  0.000000  0.000000  0.000000     0.0    0.0        0.0   
4     0.0   0.0  0.000000  0.000000  0.000000     0.0    0.0        0.0   

   monte  moreover  motion  motivated  much  multiple  must  namely  natural  \
0    0.0  0.094881     0.0        0.0   0.0  0.000000   0.0     0.0      0.0   
1    0.0  0.000000     0.0        0.0   0.0  0.000000   0.0     0.0      0.0   
2    0.0  0.000000     0.0        0.0   0.0  0.000000   0.0     0.0      0.0   
3    0.0  0.000000     0.0        0.0   0.0  0.217285   0.0     0.0      0.0   
4    0.0  0.000000     0.0        0.0   0.0  0.000000   0.0     0.0      0.0   

   nature  near  necessary  need  negative   network  networks   neural  \
0     0.0   0.0        0.0   0.0       0.0  0.000000   0.07601  0.32749   
1     0.0   0.0        0.0   0.0       0.0  0.089267   0.00000  0.00000   
2     0.0   0.0        0.0   0.0       0.0  0.000000   0.00000  0.00000   
3     0.0   0.0        0.0   0.0       0.0  0.000000   0.00000  0.00000   
4     0.0   0.0        0.0   0.0       0.0  0.000000   0.00000  0.00000   

        new      node     nodes  noise  noisy  nonlinear  normal  notion  \
0  0.063407  0.000000  0.000000    0.0    0.0        0.0     0.0     0.0   
1  0.076745  0.000000  0.000000    0.0    0.0        0.0     0.0     0.0   
2  0.061519  0.239058  0.217609    0.0    0.0        0.0     0.0     0.0   
3  0.000000  0.000000  0.000000    0.0    0.0        0.0     0.0     0.0   
4  0.000000  0.000000  0.000000    0.0    0.0        0.0     0.0     0.0   

   novel    number  numbers  numerical  object  objective  objects  \
0    0.0  0.000000      0.0   0.000000     0.0        0.0      0.0   
1    0.0  0.000000      0.0   0.000000     0.0        0.0      0.0   
2    0.0  0.000000      0.0   0.000000     0.0        0.0      0.0   
3    0.0  0.000000      0.0   0.206927     0.0        0.0      0.0   
4    0.0  0.118367      0.0   0.000000     0.0        0.0      0.0   

   observation  observations  observe  observed  obtain  obtained  often  one  \
0          0.0           0.0      0.0       0.0     0.0       0.0    0.0  0.0   
1          0.0           0.0      0.0       0.0     0.0       0.0    0.0  0.0   
2          0.0           0.0      0.0       0.0     0.0       0.0    0.0  0.0   
3          0.0           0.0      0.0       0.0     0.0       0.0    0.0  0.0   
4          0.0           0.0      0.0       0.0     0.0       0.0    0.0  0.0   

   ones  online  open  operations  operator  operators  optical   optimal  \
0   0.0     0.0   0.0         0.0       0.0        0.0      0.0  0.000000   
1   0.0     0.0   0.0         0.0       0.0        0.0      0.0  0.000000   
2   0.0     0.0   0.0         0.0       0.0        0.0      0.0  0.173606   
3   0.0     0.0   0.0         0.0       0.0        0.0      0.0  0.000000   
4   0.0     0.0   0.0         0.0       0.0        0.0      0.0  0.000000   

   optimization  order  original  outperforms  output  overall  pair  pairs  \
0      0.000000    0.0       0.0          0.0     0.0      0.0   0.0    0.0   
1      0.000000    0.0       0.0          0.0     0.0      0.0   0.0    0.0   
2      0.087622    0.0       0.0          0.0     0.0      0.0   0.0    0.0   
3      0.000000    0.0       0.0          0.0     0.0      0.0   0.0    0.0   
4      0.000000    0.0       0.0          0.0     0.0      0.0   0.0    0.0   

      paper  parallel  parameter  parameters  part  partial  particle  \
0  0.051528       0.0        0.0    0.167648   0.0      0.0       0.0   
1  0.000000       0.0        0.0    0.000000   0.0      0.0       0.0   
2  0.000000       0.0        0.0    0.000000   0.0      0.0       0.0   
3  0.000000       0.0        0.0    0.000000   0.0      0.0       0.0   
4  0.000000       0.0        0.0    0.000000   0.0      0.0       0.0   

   particles  particular  particularly  past     path  pattern  patterns  per  \
0        0.0         0.0           0.0   0.0  0.00000      0.0       0.0  0.0   
1        0.0         0.0           0.0   0.0  0.00000      0.0       0.0  0.0   
2        0.0         0.0           0.0   0.0  0.11935      0.0       0.0  0.0   
3        0.0         0.0           0.0   0.0  0.00000      0.0       0.0  0.0   
4        0.0         0.0           0.0   0.0  0.00000      0.0       0.0  0.0   

   perform  performance  performed  period  phase  phases  physical  physics  \
0      0.0     0.000000        0.0     0.0    0.0     0.0       0.0      0.0   
1      0.0     0.000000        0.0     0.0    0.0     0.0       0.0      0.0   
2      0.0     0.000000        0.0     0.0    0.0     0.0       0.0      0.0   
3      0.0     0.000000        0.0     0.0    0.0     0.0       0.0      0.0   
4      0.0     0.121968        0.0     0.0    0.0     0.0       0.0      0.0   

   plane  planets  planning  point  points  policy  polynomial   popular  \
0    0.0      0.0       0.0    0.0     0.0     0.0         0.0  0.000000   
1    0.0      0.0       0.0    0.0     0.0     0.0         0.0  0.000000   
2    0.0      0.0       0.0    0.0     0.0     0.0         0.0  0.000000   
3    0.0      0.0       0.0    0.0     0.0     0.0         0.0  0.000000   
4    0.0      0.0       0.0    0.0     0.0     0.0         0.0  0.370914   

   population  positive  possible  posterior  potential  power  practical  \
0         0.0  0.000000       0.0        0.0   0.000000    0.0        0.0   
1         0.0  0.000000       0.0        0.0   0.000000    0.0        0.0   
2         0.0  0.000000       0.0        0.0   0.088659    0.0        0.0   
3         0.0  0.248295       0.0        0.0   0.000000    0.0        0.0   
4         0.0  0.000000       0.0        0.0   0.000000    0.0        0.0   

   practice  precision  predict  predicted  prediction  predictions  \
0       0.0        0.0      0.0        0.0    0.000000          0.0   
1       0.0        0.0      0.0        0.0    0.000000          0.0   
2       0.0        0.0      0.0        0.0    0.000000          0.0   
3       0.0        0.0      0.0        0.0    0.243236          0.0   
4       0.0        0.0      0.0        0.0    0.000000          0.0   

   predictive  presence  present  presented  presents  pressure  previous  \
0         0.0       0.0      0.0        0.0       0.0       0.0       0.0   
1         0.0       0.0      0.0        0.0       0.0       0.0       0.0   
2         0.0       0.0      0.0        0.0       0.0       0.0       0.0   
3         0.0       0.0      0.0        0.0       0.0       0.0       0.0   
4         0.0       0.0      0.0        0.0       0.0       0.0       0.0   

   previously  principle  prior  privacy  probabilistic  probability  \
0         0.0        0.0    0.0      0.0            0.0     0.000000   
1         0.0        0.0    0.0      0.0            0.0     0.000000   
2         0.0        0.0    0.0      0.0            0.0     0.094202   
3         0.0        0.0    0.0      0.0            0.0     0.000000   
4         0.0        0.0    0.0      0.0            0.0     0.000000   

    problem  problems  procedure   process  processes  processing  produce  \
0  0.000000  0.000000        0.0  0.000000    0.00000         0.0      0.0   
1  0.000000  0.097841        0.0  0.000000    0.00000         0.0      0.0   
2  0.061915  0.235289        0.0  0.079995    0.09601         0.0      0.0   
3  0.000000  0.000000        0.0  0.000000    0.00000         0.0      0.0   
4  0.000000  0.000000        0.0  0.000000    0.00000         0.0      0.0   

   product  program  programming  programs  promising  proof  propagation  \
0      0.0      0.0          0.0       0.0        0.0    0.0     0.000000   
1      0.0      0.0          0.0       0.0        0.0    0.0     0.751275   
2      0.0      0.0          0.0       0.0        0.0    0.0     0.000000   
3      0.0      0.0          0.0       0.0        0.0    0.0     0.000000   
4      0.0      0.0          0.0       0.0        0.0    0.0     0.000000   

   properties  property   propose  proposed  prove  proved   provide  \
0         0.0       0.0  0.000000  0.135509    0.0     0.0  0.000000   
1         0.0       0.0  0.000000  0.082007    0.0     0.0  0.000000   
2         0.0       0.0  0.064846  0.000000    0.0     0.0  0.071523   
3         0.0       0.0  0.000000  0.000000    0.0     0.0  0.000000   
4         0.0       0.0  0.000000  0.115987    0.0     0.0  0.000000   

   provided  provides  providing  quality  quantitative  quantum  question  \
0       0.0  0.000000        0.0      0.0      0.000000      0.0  0.000000   
1       0.0  0.000000        0.0      0.0      0.000000      0.0  0.000000   
2       0.0  0.000000        0.0      0.0      0.000000      0.0  0.105110   
3       0.0  0.000000        0.0      0.0      0.000000      0.0  0.260584   
4       0.0  0.153931        0.0      0.0      0.207699      0.0  0.000000   

     random  range  rank  rate  rates  rather  ratio  real  realistic  \
0  0.000000    0.0   0.0   0.0    0.0     0.0    0.0   0.0        0.0   
1  0.109791    0.0   0.0   0.0    0.0     0.0    0.0   0.0        0.0   
2  0.000000    0.0   0.0   0.0    0.0     0.0    0.0   0.0        0.0   
3  0.000000    0.0   0.0   0.0    0.0     0.0    0.0   0.0        0.0   
4  0.000000    0.0   0.0   0.0    0.0     0.0    0.0   0.0        0.0   

   realworld  recent  recently  recognition  reconstruction  recurrent  \
0        0.0     0.0  0.090851     0.116679             0.0        0.0   
1        0.0     0.0  0.000000     0.000000             0.0        0.0   
2        0.0     0.0  0.000000     0.000000             0.0        0.0   
3        0.0     0.0  0.000000     0.000000             0.0        0.0   
4        0.0     0.0  0.000000     0.000000             0.0        0.0   

   reduce   reduced  reduction  regime  region  regions  regression  regular  \
0     0.0  0.000000        0.0     0.0     0.0      0.0         0.0      0.0   
1     0.0  0.139488        0.0     0.0     0.0      0.0         0.0      0.0   
2     0.0  0.000000        0.0     0.0     0.0      0.0         0.0      0.0   
3     0.0  0.000000        0.0     0.0     0.0      0.0         0.0      0.0   
4     0.0  0.000000        0.0     0.0     0.0      0.0         0.0      0.0   

   regularization  reinforcement   related  relation  relations  relationship  \
0             0.0            0.0  0.000000       0.0        0.0           0.0   
1             0.0            0.0  0.000000       0.0        0.0           0.0   
2             0.0            0.0  0.000000       0.0        0.0           0.0   
3             0.0            0.0  0.229594       0.0        0.0           0.0   
4             0.0            0.0  0.000000       0.0        0.0           0.0   

   relative  relevant  remains  report  represent  representation  \
0       0.0       0.0      0.0     0.0        0.0             0.0   
1       0.0       0.0      0.0     0.0        0.0             0.0   
2       0.0       0.0      0.0     0.0        0.0             0.0   
3       0.0       0.0      0.0     0.0        0.0             0.0   
4       0.0       0.0      0.0     0.0        0.0             0.0   

   representations   require  required  requires  research  resolution  \
0              0.0  0.105755       0.0       0.0       0.0         0.0   
1              0.0  0.000000       0.0       0.0       0.0         0.0   
2              0.0  0.102606       0.0       0.0       0.0         0.0   
3              0.0  0.000000       0.0       0.0       0.0         0.0   
4              0.0  0.000000       0.0       0.0       0.0         0.0   

   resources  respect  respectively  response  result  resulting   results  \
0        0.0      0.0           0.0  0.000000     0.0        0.0  0.053396   
1        0.0      0.0           0.0  0.133761     0.0        0.0  0.000000   
2        0.0      0.0           0.0  0.000000     0.0        0.0  0.000000   
3        0.0      0.0           0.0  0.000000     0.0        0.0  0.128437   
4        0.0      0.0           0.0  0.000000     0.0        0.0  0.091408   

   reveal  review      risk     robot  robots    robust  robustness  role  \
0     0.0     0.0  0.000000  0.000000     0.0  0.000000         0.0   0.0   
1     0.0     0.0  0.000000  0.000000     0.0  0.121054         0.0   0.0   
2     0.0     0.0  0.000000  0.363904     0.0  0.000000         0.0   0.0   
3     0.0     0.0  0.000000  0.000000     0.0  0.000000         0.0   0.0   
4     0.0     0.0  0.203658  0.000000     0.0  0.000000         0.0   0.0   

   rules  sample  samples  sampling  scale  scales   scaling  scattering  \
0    0.0     0.0      0.0       0.0    0.0     0.0  0.118355         0.0   
1    0.0     0.0      0.0       0.0    0.0     0.0  0.000000         0.0   
2    0.0     0.0      0.0       0.0    0.0     0.0  0.000000         0.0   
3    0.0     0.0      0.0       0.0    0.0     0.0  0.000000         0.0   
4    0.0     0.0      0.0       0.0    0.0     0.0  0.000000         0.0   

   scenario  scenarios  scheme  schemes  science  search  second  security  \
0       0.0        0.0     0.0      0.0      0.0     0.0     0.0       0.0   
1       0.0        0.0     0.0      0.0      0.0     0.0     0.0       0.0   
2       0.0        0.0     0.0      0.0      0.0     0.0     0.0       0.0   
3       0.0        0.0     0.0      0.0      0.0     0.0     0.0       0.0   
4       0.0        0.0     0.0      0.0      0.0     0.0     0.0       0.0   

   selection  semantic  sense  sensitivity  sensor  sequence  sequences  \
0        0.0       0.0    0.0          0.0     0.0       0.0        0.0   
1        0.0       0.0    0.0          0.0     0.0       0.0        0.0   
2        0.0       0.0    0.0          0.0     0.0       0.0        0.0   
3        0.0       0.0    0.0          0.0     0.0       0.0        0.0   
4        0.0       0.0    0.0          0.0     0.0       0.0        0.0   

   series  set  sets  setting  settings  several  shape  short      show  \
0     0.0  0.0   0.0      0.0       0.0      0.0    0.0    0.0  0.051802   
1     0.0  0.0   0.0      0.0       0.0      0.0    0.0    0.0  0.000000   
2     0.0  0.0   0.0      0.0       0.0      0.0    0.0    0.0  0.050260   
3     0.0  0.0   0.0      0.0       0.0      0.0    0.0    0.0  0.000000   
4     0.0  0.0   0.0      0.0       0.0      0.0    0.0    0.0  0.000000   

   showing  shown  shows  sigma  signal  signals  significant  significantly  \
0      0.0    0.0    0.0    0.0     0.0      0.0          0.0            0.0   
1      0.0    0.0    0.0    0.0     0.0      0.0          0.0            0.0   
2      0.0    0.0    0.0    0.0     0.0      0.0          0.0            0.0   
3      0.0    0.0    0.0    0.0     0.0      0.0          0.0            0.0   
4      0.0    0.0    0.0    0.0     0.0      0.0          0.0            0.0   

   sim  similar  similarity  simple  simulated  simulation  simulations  \
0  0.0      0.0         0.0     0.0        0.0         0.0          0.0   
1  0.0      0.0         0.0     0.0        0.0         0.0          0.0   
2  0.0      0.0         0.0     0.0        0.0         0.0          0.0   
3  0.0      0.0         0.0     0.0        0.0         0.0          0.0   
4  0.0      0.0         0.0     0.0        0.0         0.0          0.0   

   simultaneously  since  single      size  sizes  small  smaller  smooth  \
0             0.0    0.0     0.0  0.091162    0.0    0.0      0.0     0.0   
1             0.0    0.0     0.0  0.000000    0.0    0.0      0.0     0.0   
2             0.0    0.0     0.0  0.000000    0.0    0.0      0.0     0.0   
3             0.0    0.0     0.0  0.000000    0.0    0.0      0.0     0.0   
4             0.0    0.0     0.0  0.000000    0.0    0.0      0.0     0.0   

   social  software  solar  solution  solutions  solve  solving  source  \
0     0.0       0.0    0.0       0.0        0.0    0.0      0.0     0.0   
1     0.0       0.0    0.0       0.0        0.0    0.0      0.0     0.0   
2     0.0       0.0    0.0       0.0        0.0    0.0      0.0     0.0   
3     0.0       0.0    0.0       0.0        0.0    0.0      0.0     0.0   
4     0.0       0.0    0.0       0.0        0.0    0.0      0.0     0.0   

   sources  space  spaces  sparse  spatial   special  specific  specifically  \
0      0.0    0.0     0.0     0.0      0.0  0.000000       0.0           0.0   
1      0.0    0.0     0.0     0.0      0.0  0.129154       0.0           0.0   
2      0.0    0.0     0.0     0.0      0.0  0.000000       0.0           0.0   
3      0.0    0.0     0.0     0.0      0.0  0.000000       0.0           0.0   
4      0.0    0.0     0.0     0.0      0.0  0.000000       0.0           0.0   

   spectra  spectral  spectrum    speech     speed  spin  stability  stable  \
0      0.0       0.0       0.0  0.131405  0.119279   0.0   0.109765     0.0   
1      0.0       0.0       0.0  0.000000  0.000000   0.0   0.000000     0.0   
2      0.0       0.0       0.0  0.000000  0.000000   0.0   0.000000     0.0   
3      0.0       0.0       0.0  0.000000  0.000000   0.0   0.000000     0.0   
4      0.0       0.0       0.0  0.000000  0.000000   0.0   0.000000     0.0   

   standard  star  stars  state  stateoftheart    states  statistical  \
0       0.0   0.0    0.0    0.0            0.0  0.000000          0.0   
1       0.0   0.0    0.0    0.0            0.0  0.000000          0.0   
2       0.0   0.0    0.0    0.0            0.0  0.000000          0.0   
3       0.0   0.0    0.0    0.0            0.0  0.000000          0.0   
4       0.0   0.0    0.0    0.0            0.0  0.161615          0.0   

   statistics  stellar      step  still  stochastic  strategies  strategy  \
0         0.0      0.0  0.000000    0.0     0.00000    0.000000  0.000000   
1         0.0      0.0  0.000000    0.0     0.00000    0.000000  0.000000   
2         0.0      0.0  0.102998    0.0     0.27996    0.112934  0.104076   
3         0.0      0.0  0.000000    0.0     0.00000    0.000000  0.000000   
4         0.0      0.0  0.000000    0.0     0.00000    0.000000  0.000000   

   strength  strong  strongly  structural  structure  structures  studied  \
0       0.0     0.0       0.0         0.0        0.0    0.000000      0.0   
1       0.0     0.0       0.0         0.0        0.0    0.120016      0.0   
2       0.0     0.0       0.0         0.0        0.0    0.000000      0.0   
3       0.0     0.0       0.0         0.0        0.0    0.000000      0.0   
4       0.0     0.0       0.0         0.0        0.0    0.000000      0.0   

   studies     study  subset  sufficient  suggest  suitable  sum  supervised  \
0      0.0  0.000000     0.0         0.0      0.0       0.0  0.0         0.0   
1      0.0  0.000000     0.0         0.0      0.0       0.0  0.0         0.0   
2      0.0  0.061490     0.0         0.0      0.0       0.0  0.0         0.0   
3      0.0  0.152443     0.0         0.0      0.0       0.0  0.0         0.0   
4      0.0  0.000000     0.0         0.0      0.0       0.0  0.0         0.0   

   support  surface  surfaces    survey  symmetric  symmetry  synthetic  \
0      0.0      0.0       0.0  0.000000        0.0       0.0        0.0   
1      0.0      0.0       0.0  0.000000        0.0       0.0        0.0   
2      0.0      0.0       0.0  0.000000        0.0       0.0        0.0   
3      0.0      0.0       0.0  0.281679        0.0       0.0        0.0   
4      0.0      0.0       0.0  0.000000        0.0       0.0        0.0   

   system  systems  take  taking  target  task  tasks  technique  techniques  \
0     0.0      0.0   0.0     0.0     0.0   0.0    0.0   0.191541         0.0   
1     0.0      0.0   0.0     0.0     0.0   0.0    0.0   0.000000         0.0   
2     0.0      0.0   0.0     0.0     0.0   0.0    0.0   0.000000         0.0   
3     0.0      0.0   0.0     0.0     0.0   0.0    0.0   0.000000         0.0   
4     0.0      0.0   0.0     0.0     0.0   0.0    0.0   0.000000         0.0   

   temperature  temporal  tensor  term     terms  test  tested  testing  \
0          0.0       0.0     0.0   0.0  0.083984   0.0     0.0      0.0   
1          0.0       0.0     0.0   0.0  0.000000   0.0     0.0      0.0   
2          0.0       0.0     0.0   0.0  0.000000   0.0     0.0      0.0   
3          0.0       0.0     0.0   0.0  0.000000   0.0     0.0      0.0   
4          0.0       0.0     0.0   0.0  0.000000   0.0     0.0      0.0   

   tests  text  theorem  theoretical  theory  therefore  thermal  three  \
0    0.0   0.0      0.0          0.0     0.0        0.0      0.0    0.0   
1    0.0   0.0      0.0          0.0     0.0        0.0      0.0    0.0   
2    0.0   0.0      0.0          0.0     0.0        0.0      0.0    0.0   
3    0.0   0.0      0.0          0.0     0.0        0.0      0.0    0.0   
4    0.0   0.0      0.0          0.0     0.0        0.0      0.0    0.0   

   threshold  thus      time  times  together  tool  tools  topological  \
0        0.0   0.0  0.000000    0.0       0.0   0.0    0.0          0.0   
1        0.0   0.0  0.000000    0.0       0.0   0.0    0.0          0.0   
2        0.0   0.0  0.197632    0.0       0.0   0.0    0.0          0.0   
3        0.0   0.0  0.326640    0.0       0.0   0.0    0.0          0.0   
4        0.0   0.0  0.000000    0.0       0.0   0.0    0.0          0.0   

   topology     total  towards  traditional  traffic  train  trained  \
0       0.0  0.000000      0.0          0.0      0.0    0.0      0.0   
1       0.0  0.000000      0.0          0.0      0.0    0.0      0.0   
2       0.0  0.105498      0.0          0.0      0.0    0.0      0.0   
3       0.0  0.000000      0.0          0.0      0.0    0.0      0.0   
4       0.0  0.000000      0.0          0.0      0.0    0.0      0.0   

   training  transfer  transformation  transition  transmission  transport  \
0  0.089265       0.0             0.0         0.0           0.0        0.0   
1  0.000000       0.0             0.0         0.0           0.0        0.0   
2  0.000000       0.0             0.0         0.0           0.0        0.0   
3  0.000000       0.0             0.0         0.0           0.0        0.0   
4  0.000000       0.0             0.0         0.0           0.0        0.0   

   treatment  tree  true       two      type  types  typical  typically  \
0        0.0   0.0   0.0  0.060522  0.000000    0.0      0.0   0.000000   
1        0.0   0.0   0.0  0.000000  0.000000    0.0      0.0   0.000000   
2        0.0   0.0   0.0  0.000000  0.000000    0.0      0.0   0.000000   
3        0.0   0.0   0.0  0.000000  0.225319    0.0      0.0   0.000000   
4        0.0   0.0   0.0  0.000000  0.000000    0.0      0.0   0.189279   

   uncertainty  underlying  understand  understanding  uniform  unique  unit  \
0          0.0         0.0         0.0            0.0      0.0     0.0   0.0   
1          0.0         0.0         0.0            0.0      0.0     0.0   0.0   
2          0.0         0.0         0.0            0.0      0.0     0.0   0.0   
3          0.0         0.0         0.0            0.0      0.0     0.0   0.0   
4          0.0         0.0         0.0            0.0      0.0     0.0   0.0   

   unknown  upon  upper   us  use      used  useful  user  users  uses  \
0      0.0   0.0    0.0  0.0  0.0  0.000000     0.0   0.0    0.0   0.0   
1      0.0   0.0    0.0  0.0  0.0  0.078707     0.0   0.0    0.0   0.0   
2      0.0   0.0    0.0  0.0  0.0  0.000000     0.0   0.0    0.0   0.0   
3      0.0   0.0    0.0  0.0  0.0  0.000000     0.0   0.0    0.0   0.0   
4      0.0   0.0    0.0  0.0  0.0  0.000000     0.0   0.0    0.0   0.0   

      using  usually  value  values  variable  variables  variance  variation  \
0  0.000000      0.0    0.0     0.0       0.0        0.0       0.0        0.0   
1  0.065908      0.0    0.0     0.0       0.0        0.0       0.0        0.0   
2  0.000000      0.0    0.0     0.0       0.0        0.0       0.0        0.0   
3  0.000000      0.0    0.0     0.0       0.0        0.0       0.0        0.0   
4  0.093217      0.0    0.0     0.0       0.0        0.0       0.0        0.0   

   variational  variety   various  vector  vectors  velocity  version  \
0          0.0      0.0  0.174771     0.0      0.0       0.0      0.0   
1          0.0      0.0  0.105768     0.0      0.0       0.0      0.0   
2          0.0      0.0  0.000000     0.0      0.0       0.0      0.0   
3          0.0      0.0  0.000000     0.0      0.0       0.0      0.0   
4          0.0      0.0  0.149593     0.0      0.0       0.0      0.0   

   vertices  via  view  visual  volume  wave  waves  way  weak  weight  \
0       0.0  0.0   0.0     0.0     0.0   0.0    0.0  0.0   0.0     0.0   
1       0.0  0.0   0.0     0.0     0.0   0.0    0.0  0.0   0.0     0.0   
2       0.0  0.0   0.0     0.0     0.0   0.0    0.0  0.0   0.0     0.0   
3       0.0  0.0   0.0     0.0     0.0   0.0    0.0  0.0   0.0     0.0   
4       0.0  0.0   0.0     0.0     0.0   0.0    0.0  0.0   0.0     0.0   

   weighted  weights     well  whether     whose  wide  widely  within  \
0       0.0      0.0  0.00000      0.0  0.000000   0.0     0.0     0.0   
1       0.0      0.0  0.00000      0.0  0.000000   0.0     0.0     0.0   
2       0.0      0.0  0.00000      0.0  0.099654   0.0     0.0     0.0   
3       0.0      0.0  0.00000      0.0  0.000000   0.0     0.0     0.0   
4       0.0      0.0  0.12267      0.0  0.000000   0.0     0.0     0.0   

   without  word  work  works  world  would  xray  years  yet  yields  zero  
0      0.0   0.0   0.0    0.0    0.0    0.0   0.0    0.0  0.0     0.0   0.0  
1      0.0   0.0   0.0    0.0    0.0    0.0   0.0    0.0  0.0     0.0   0.0  
2      0.0   0.0   0.0    0.0    0.0    0.0   0.0    0.0  0.0     0.0   0.0  
3      0.0   0.0   0.0    0.0    0.0    0.0   0.0    0.0  0.0     0.0   0.0  
4      0.0   0.0   0.0    0.0    0.0    0.0   0.0    0.0  0.0     0.0   0.0  

Training Phase

In [30]:
# Training the model
model = MultiOutputClassifier(LogisticRegression())
model.fit(X_train_tfidf, y_train)
Out[30]:
MultiOutputClassifier(estimator=LogisticRegression())
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
MultiOutputClassifier(estimator=LogisticRegression())
LogisticRegression()
LogisticRegression()
In [31]:
# Save the model to disk
joblib.dump(model, 'multi_label_abstract_model.pkl')

# Save the vectorizer to disk
joblib.dump(vectorizer, 'tfidf_vectorizer.pkl')
Out[31]:
['tfidf_vectorizer.pkl']

Testing Phase

In [32]:
import joblib

# Load the model from disk
loaded_model = joblib.load('multi_label_abstract_model.pkl')

# Load the vectorizer from disk
loaded_vectorizer = joblib.load('tfidf_vectorizer.pkl')

print(f"Model loaded from 'multi_label_model.pkl'")
Model loaded from 'multi_label_model.pkl'
In [33]:
# Transform the test data using the loaded vectorizer
X_test_tfidf_loaded = loaded_vectorizer.transform(X_test)

# Evaluate the loaded model
y_pred_loaded = loaded_model.predict(X_test_tfidf_loaded)
accuracy_loaded = accuracy_score(y_test, y_pred_loaded)
report_loaded = classification_report(y_test, y_pred_loaded)

print(f"Accuracy: {accuracy_loaded}")
print("Classification Report:")
print(report_loaded)
Accuracy: 0.6109654350417163
Classification Report:
              precision    recall  f1-score   support

           0       0.80      0.80      0.80      1692
           1       0.90      0.79      0.84      1226
           2       0.85      0.74      0.79      1150
           3       0.79      0.64      0.70      1069
           4       0.64      0.06      0.11       122
           5       1.00      0.07      0.12        45

   micro avg       0.83      0.73      0.78      5304
   macro avg       0.83      0.51      0.56      5304
weighted avg       0.83      0.73      0.77      5304
 samples avg       0.79      0.76      0.76      5304

C:\Users\ABC\anaconda3\lib\site-packages\sklearn\metrics\_classification.py:1471: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in samples with no predicted labels. Use `zero_division` parameter to control this behavior.
  _warn_prf(average, modifier, msg_start, len(result))

Application Phase

In [34]:
# Take user input
user_input = input("Please enter your text: ").strip()

# Preprocess the user input
def preprocess_user_input(text):
    stop_words = set(stopwords.words('english'))
    text = re.sub(r'[^a-zA-Z\s]', '', text)
    text = text.lower()
    text = ' '.join(word for word in text.split() if word not in stop_words)
    return text

cleaned_input = preprocess_user_input(user_input)
Please enter your text: it was a very bad experience with them
In [35]:
# Transform the cleaned input using the vectorizer
user_input_tfidf = loaded_vectorizer.transform([cleaned_input])

# Predict the emotion of the user input
user_prediction = loaded_model.predict(user_input_tfidf)

# Output the prediction
print(f"The emotion of '{user_input}' is: {user_prediction[0]}")
The emotion of 'it was a very bad experience with them' is: [0 0 0 0 0 0]
In [ ]: